4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * The Original Code is Copyright (C) 2008 Blender Foundation.
21 * All rights reserved.
24 * Contributor(s): Blender Foundation
26 * ***** END GPL LICENSE BLOCK *****
32 #include "DNA_color_types.h"
33 #include "DNA_object_types.h"
34 #include "DNA_oops_types.h"
35 #include "DNA_space_types.h"
36 #include "DNA_scene_types.h"
37 #include "DNA_screen_types.h"
38 #include "DNA_space_types.h"
39 #include "DNA_texture_types.h"
40 #include "DNA_vec_types.h"
41 #include "DNA_windowmanager_types.h"
43 #include "MEM_guardedalloc.h"
45 #include "BLI_blenlib.h"
46 #include "BLI_arithb.h"
49 #include "BKE_colortools.h"
50 #include "BKE_context.h"
51 #include "BKE_screen.h"
52 #include "BKE_texture.h"
53 #include "BKE_utildefines.h"
55 #include "ED_space_api.h"
56 #include "ED_screen.h"
62 #include "BIF_glutil.h"
64 #include "UI_interface.h"
66 #include "UI_resources.h"
67 #include "UI_view2d.h"
69 #include "RNA_access.h"
70 #include "RNA_types.h"
72 #include "outliner_intern.h"
74 static void outliner_main_area_init(wmWindowManager *wm, ARegion *ar)
78 UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_LIST, ar->winx, ar->winy);
81 keymap= WM_keymap_listbase(wm, "Outliner", SPACE_OOPS, 0); /* XXX weak? */
82 WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
85 static void outliner_main_area_draw(const bContext *C, ARegion *ar)
87 View2D *v2d= &ar->v2d;
88 View2DScrollers *scrollers;
92 UI_GetThemeColor3fv(TH_BACK, col);
93 glClearColor(col[0], col[1], col[2], 0.0);
94 glClear(GL_COLOR_BUFFER_BIT);
98 /* reset view matrix */
99 UI_view2d_view_restore(C);
102 scrollers= UI_view2d_scrollers_calc(C, v2d, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY);
103 UI_view2d_scrollers_draw(C, v2d, scrollers);
104 UI_view2d_scrollers_free(scrollers);
108 static void outliner_main_area_free(ARegion *ar)
113 static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn)
115 /* context changes */
116 switch(wmn->category) {
122 ED_region_tag_redraw(ar);
131 ED_region_tag_redraw(ar);
135 /* all actions now, todo: check outliner view mode? */
136 ED_region_tag_redraw(ar);
143 /* ************************ header outliner area region *********************** */
145 /* add handlers, stuff you only do once or on area/region changes */
146 static void outliner_header_area_init(wmWindowManager *wm, ARegion *ar)
148 UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy);
151 static void outliner_header_area_draw(const bContext *C, ARegion *ar)
155 if(ED_screen_area_active(C))
156 UI_GetThemeColor3fv(TH_HEADER, col);
158 UI_GetThemeColor3fv(TH_HEADERDESEL, col);
160 glClearColor(col[0], col[1], col[2], 0.0);
161 glClear(GL_COLOR_BUFFER_BIT);
163 /* set view2d view matrix for scrolling (without scrollers) */
164 UI_view2d_view_ortho(C, &ar->v2d);
166 outliner_header_buttons(C, ar);
169 static void outliner_header_area_free(ARegion *ar)
173 /* ******************** default callbacks for outliner space ***************** */
175 static SpaceLink *outliner_new(const bContext *C)
178 SpaceOops *soutliner;
180 soutliner= MEM_callocN(sizeof(SpaceOops), "initoutliner");
181 soutliner->spacetype= SPACE_OOPS;
184 ar= MEM_callocN(sizeof(ARegion), "header for outliner");
186 BLI_addtail(&soutliner->regionbase, ar);
187 ar->regiontype= RGN_TYPE_HEADER;
188 ar->alignment= RGN_ALIGN_BOTTOM;
191 ar= MEM_callocN(sizeof(ARegion), "main area for outliner");
193 BLI_addtail(&soutliner->regionbase, ar);
194 ar->regiontype= RGN_TYPE_WINDOW;
196 ar->v2d.scroll = (V2D_SCROLL_RIGHT|V2D_SCROLL_BOTTOM_O);
197 ar->v2d.align = (V2D_ALIGN_NO_NEG_X|V2D_ALIGN_NO_POS_Y);
198 ar->v2d.keepzoom = (V2D_LOCKZOOM_X|V2D_LOCKZOOM_Y|V2D_KEEPZOOM|V2D_KEEPASPECT);
199 ar->v2d.keeptot= V2D_KEEPTOT_STRICT;
200 ar->v2d.minzoom= ar->v2d.maxzoom= 1.0f;
202 return (SpaceLink*)soutliner;
205 static void free_oops(Oops *oops) /* also oops itself */
207 BLI_freelistN(&oops->link);
211 /* not spacelink itself */
212 static void outliner_free(SpaceLink *sl)
214 SpaceOops *soutliner= (SpaceOops*)sl;
217 if(soutliner->rnapath) {
218 MEM_freeN(soutliner->rnapath);
219 soutliner->rnapath= NULL;
222 while( (oops= soutliner->oops.first) ) {
223 BLI_remlink(&soutliner->oops, oops);
227 outliner_free_tree(&soutliner->tree);
228 if(soutliner->treestore) {
229 if(soutliner->treestore->data) MEM_freeN(soutliner->treestore->data);
230 MEM_freeN(soutliner->treestore);
235 /* spacetype; init callback */
236 static void outliner_init(wmWindowManager *wm, ScrArea *sa)
241 static SpaceLink *outliner_duplicate(SpaceLink *sl)
243 SpaceOops *soutliner= (SpaceOops *)sl;
244 SpaceOops *soutlinern= MEM_dupallocN(soutliner);
246 if(soutlinern->rnapath)
247 soutlinern->rnapath= MEM_dupallocN(soutlinern->rnapath);
249 soutlinern->oops.first= soutlinern->oops.last= NULL;
250 soutlinern->tree.first= soutlinern->tree.last= NULL;
251 soutlinern->treestore= NULL;
253 return (SpaceLink *)soutlinern;
256 /* only called once, from space_api/spacetypes.c */
257 void ED_spacetype_outliner(void)
259 SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype time");
262 st->spaceid= SPACE_OOPS;
263 strncpy(st->name, "Outliner", BKE_ST_MAXNAME);
265 st->new= outliner_new;
266 st->free= outliner_free;
267 st->init= outliner_init;
268 st->duplicate= outliner_duplicate;
269 st->operatortypes= outliner_operatortypes;
270 st->keymap= outliner_keymap;
272 /* regions: main window */
273 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
274 art->regionid = RGN_TYPE_WINDOW;
275 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
277 art->init= outliner_main_area_init;
278 art->draw= outliner_main_area_draw;
279 art->free= outliner_main_area_free;
280 art->listener= outliner_main_area_listener;
281 BLI_addhead(&st->regiontypes, art);
283 /* regions: header */
284 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
285 art->regionid = RGN_TYPE_HEADER;
286 art->minsizey= HEADERY;
287 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
289 art->init= outliner_header_area_init;
290 art->draw= outliner_header_area_draw;
291 art->free= outliner_header_area_free;
292 BLI_addhead(&st->regiontypes, art);
294 BKE_spacetype_register(st);