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) {
123 ED_region_tag_redraw(ar);
132 ED_region_tag_redraw(ar);
136 /* all actions now, todo: check outliner view mode? */
137 ED_region_tag_redraw(ar);
144 /* ************************ header outliner area region *********************** */
146 /* add handlers, stuff you only do once or on area/region changes */
147 static void outliner_header_area_init(wmWindowManager *wm, ARegion *ar)
149 UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy);
152 static void outliner_header_area_draw(const bContext *C, ARegion *ar)
156 if(ED_screen_area_active(C))
157 UI_GetThemeColor3fv(TH_HEADER, col);
159 UI_GetThemeColor3fv(TH_HEADERDESEL, col);
161 glClearColor(col[0], col[1], col[2], 0.0);
162 glClear(GL_COLOR_BUFFER_BIT);
164 /* set view2d view matrix for scrolling (without scrollers) */
165 UI_view2d_view_ortho(C, &ar->v2d);
167 outliner_header_buttons(C, ar);
170 static void outliner_header_area_free(ARegion *ar)
174 static void outliner_header_area_listener(ARegion *ar, wmNotifier *wmn)
176 /* context changes */
177 switch(wmn->category) {
179 if(wmn->data == ND_KEYINGSET)
180 ED_region_tag_redraw(ar);
185 /* ******************** default callbacks for outliner space ***************** */
187 static SpaceLink *outliner_new(const bContext *C)
190 SpaceOops *soutliner;
192 soutliner= MEM_callocN(sizeof(SpaceOops), "initoutliner");
193 soutliner->spacetype= SPACE_OOPS;
196 ar= MEM_callocN(sizeof(ARegion), "header for outliner");
198 BLI_addtail(&soutliner->regionbase, ar);
199 ar->regiontype= RGN_TYPE_HEADER;
200 ar->alignment= RGN_ALIGN_BOTTOM;
203 ar= MEM_callocN(sizeof(ARegion), "main area for outliner");
205 BLI_addtail(&soutliner->regionbase, ar);
206 ar->regiontype= RGN_TYPE_WINDOW;
208 ar->v2d.scroll = (V2D_SCROLL_RIGHT|V2D_SCROLL_BOTTOM_O);
209 ar->v2d.align = (V2D_ALIGN_NO_NEG_X|V2D_ALIGN_NO_POS_Y);
210 ar->v2d.keepzoom = (V2D_LOCKZOOM_X|V2D_LOCKZOOM_Y|V2D_KEEPZOOM|V2D_KEEPASPECT);
211 ar->v2d.keeptot= V2D_KEEPTOT_STRICT;
212 ar->v2d.minzoom= ar->v2d.maxzoom= 1.0f;
214 return (SpaceLink*)soutliner;
217 static void free_oops(Oops *oops) /* also oops itself */
219 BLI_freelistN(&oops->link);
223 /* not spacelink itself */
224 static void outliner_free(SpaceLink *sl)
226 SpaceOops *soutliner= (SpaceOops*)sl;
229 if(soutliner->rnapath) {
230 MEM_freeN(soutliner->rnapath);
231 soutliner->rnapath= NULL;
234 while( (oops= soutliner->oops.first) ) {
235 BLI_remlink(&soutliner->oops, oops);
239 outliner_free_tree(&soutliner->tree);
240 if(soutliner->treestore) {
241 if(soutliner->treestore->data) MEM_freeN(soutliner->treestore->data);
242 MEM_freeN(soutliner->treestore);
247 /* spacetype; init callback */
248 static void outliner_init(wmWindowManager *wm, ScrArea *sa)
253 static SpaceLink *outliner_duplicate(SpaceLink *sl)
255 SpaceOops *soutliner= (SpaceOops *)sl;
256 SpaceOops *soutlinern= MEM_dupallocN(soutliner);
258 if(soutlinern->rnapath)
259 soutlinern->rnapath= MEM_dupallocN(soutlinern->rnapath);
261 soutlinern->oops.first= soutlinern->oops.last= NULL;
262 soutlinern->tree.first= soutlinern->tree.last= NULL;
263 soutlinern->treestore= NULL;
265 return (SpaceLink *)soutlinern;
268 /* only called once, from space_api/spacetypes.c */
269 void ED_spacetype_outliner(void)
271 SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype time");
274 st->spaceid= SPACE_OOPS;
275 strncpy(st->name, "Outliner", BKE_ST_MAXNAME);
277 st->new= outliner_new;
278 st->free= outliner_free;
279 st->init= outliner_init;
280 st->duplicate= outliner_duplicate;
281 st->operatortypes= outliner_operatortypes;
282 st->keymap= outliner_keymap;
284 /* regions: main window */
285 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
286 art->regionid = RGN_TYPE_WINDOW;
287 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
289 art->init= outliner_main_area_init;
290 art->draw= outliner_main_area_draw;
291 art->free= outliner_main_area_free;
292 art->listener= outliner_main_area_listener;
293 BLI_addhead(&st->regiontypes, art);
295 /* regions: header */
296 art= MEM_callocN(sizeof(ARegionType), "spacetype time region");
297 art->regionid = RGN_TYPE_HEADER;
298 art->minsizey= HEADERY;
299 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
301 art->init= outliner_header_area_init;
302 art->draw= outliner_header_area_draw;
303 art->free= outliner_header_area_free;
304 art->listener= outliner_header_area_listener;
305 BLI_addhead(&st->regiontypes, art);
307 BKE_spacetype_register(st);