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_outliner_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"
65 #include "UI_resources.h"
66 #include "UI_view2d.h"
68 #include "RNA_access.h"
69 #include "RNA_types.h"
71 #include "outliner_intern.h"
73 static void outliner_main_area_init(wmWindowManager *wm, ARegion *ar)
77 UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_LIST, ar->winx, ar->winy);
80 keymap= WM_keymap_listbase(wm, "Outliner", SPACE_OUTLINER, 0); /* XXX weak? */
81 WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
84 static void outliner_main_area_draw(const bContext *C, ARegion *ar)
86 View2D *v2d= &ar->v2d;
87 View2DScrollers *scrollers;
91 UI_GetThemeColor3fv(TH_BACK, col);
92 glClearColor(col[0], col[1], col[2], 0.0);
93 glClear(GL_COLOR_BUFFER_BIT);
97 /* reset view matrix */
98 UI_view2d_view_restore(C);
101 scrollers= UI_view2d_scrollers_calc(C, v2d, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY);
102 UI_view2d_scrollers_draw(C, v2d, scrollers);
103 UI_view2d_scrollers_free(scrollers);
107 static void outliner_main_area_free(ARegion *ar)
112 static void outliner_main_area_listener(ARegion *ar, wmNotifier *wmn)
114 /* context changes */
115 switch(wmn->category) {
123 case ND_RENDER_OPTIONS:
124 ED_region_tag_redraw(ar);
133 ED_region_tag_redraw(ar);
137 /* all actions now, todo: check outliner view mode? */
138 ED_region_tag_redraw(ar);
145 /* ************************ header outliner area region *********************** */
149 /* add handlers, stuff you only do once or on area/region changes */
150 static void outliner_header_area_init(wmWindowManager *wm, ARegion *ar)
153 ED_region_header_init(ar);
155 UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy);
159 static void outliner_header_area_draw(const bContext *C, ARegion *ar)
162 ED_region_header(C, ar);
166 if(ED_screen_area_active(C))
167 UI_GetThemeColor3fv(TH_HEADER, col);
169 UI_GetThemeColor3fv(TH_HEADERDESEL, col);
171 glClearColor(col[0], col[1], col[2], 0.0);
172 glClear(GL_COLOR_BUFFER_BIT);
174 /* set view2d view matrix for scrolling (without scrollers) */
175 UI_view2d_view_ortho(C, &ar->v2d);
177 outliner_header_buttons(C, ar);
181 static void outliner_header_area_free(ARegion *ar)
185 static void outliner_header_area_listener(ARegion *ar, wmNotifier *wmn)
187 /* context changes */
188 switch(wmn->category) {
190 if(wmn->data == ND_KEYINGSET)
191 ED_region_tag_redraw(ar);
196 /* ******************** default callbacks for outliner space ***************** */
198 static SpaceLink *outliner_new(const bContext *C)
201 SpaceOops *soutliner;
203 soutliner= MEM_callocN(sizeof(SpaceOops), "initoutliner");
204 soutliner->spacetype= SPACE_OUTLINER;
207 ar= MEM_callocN(sizeof(ARegion), "header for outliner");
209 BLI_addtail(&soutliner->regionbase, ar);
210 ar->regiontype= RGN_TYPE_HEADER;
211 ar->alignment= RGN_ALIGN_BOTTOM;
214 ar= MEM_callocN(sizeof(ARegion), "main area for outliner");
216 BLI_addtail(&soutliner->regionbase, ar);
217 ar->regiontype= RGN_TYPE_WINDOW;
219 ar->v2d.scroll = (V2D_SCROLL_RIGHT|V2D_SCROLL_BOTTOM_O);
220 ar->v2d.align = (V2D_ALIGN_NO_NEG_X|V2D_ALIGN_NO_POS_Y);
221 ar->v2d.keepzoom = (V2D_LOCKZOOM_X|V2D_LOCKZOOM_Y|V2D_KEEPZOOM|V2D_KEEPASPECT);
222 ar->v2d.keeptot= V2D_KEEPTOT_STRICT;
223 ar->v2d.minzoom= ar->v2d.maxzoom= 1.0f;
225 return (SpaceLink*)soutliner;
228 /* not spacelink itself */
229 static void outliner_free(SpaceLink *sl)
231 SpaceOops *soutliner= (SpaceOops*)sl;
233 outliner_free_tree(&soutliner->tree);
234 if(soutliner->treestore) {
235 if(soutliner->treestore->data) MEM_freeN(soutliner->treestore->data);
236 MEM_freeN(soutliner->treestore);
241 /* spacetype; init callback */
242 static void outliner_init(wmWindowManager *wm, ScrArea *sa)
247 static SpaceLink *outliner_duplicate(SpaceLink *sl)
249 SpaceOops *soutliner= (SpaceOops *)sl;
250 SpaceOops *soutlinern= MEM_dupallocN(soutliner);
252 soutlinern->tree.first= soutlinern->tree.last= NULL;
253 soutlinern->treestore= NULL;
255 return (SpaceLink *)soutlinern;
258 /* only called once, from space_api/spacetypes.c */
259 void ED_spacetype_outliner(void)
261 SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype time");
264 st->spaceid= SPACE_OUTLINER;
265 strncpy(st->name, "Outliner", BKE_ST_MAXNAME);
267 st->new= outliner_new;
268 st->free= outliner_free;
269 st->init= outliner_init;
270 st->duplicate= outliner_duplicate;
271 st->operatortypes= outliner_operatortypes;
272 st->keymap= outliner_keymap;
274 /* regions: main window */
275 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
276 art->regionid = RGN_TYPE_WINDOW;
277 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
279 art->init= outliner_main_area_init;
280 art->draw= outliner_main_area_draw;
281 art->free= outliner_main_area_free;
282 art->listener= outliner_main_area_listener;
283 BLI_addhead(&st->regiontypes, art);
285 /* regions: header */
286 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
287 art->regionid = RGN_TYPE_HEADER;
288 art->minsizey= HEADERY;
289 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
291 art->init= outliner_header_area_init;
292 art->draw= outliner_header_area_draw;
293 art->free= outliner_header_area_free;
294 art->listener= outliner_header_area_listener;
295 BLI_addhead(&st->regiontypes, art);
297 BKE_spacetype_register(st);