Revision: 23886
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23886
Author:   dingto
Date:     2009-10-16 12:25:39 +0200 (Fri, 16 Oct 2009)

Log Message:
-----------
2.5 Outliner:

Finally, the Outliner Header is drawn via Python too. 
* Also added some Operators to the View Menu. 

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_outliner.py
    trunk/blender/source/blender/editors/space_outliner/space_outliner.c

Removed Paths:
-------------
    trunk/blender/source/blender/editors/space_outliner/outliner_header.c

Modified: trunk/blender/release/scripts/ui/space_outliner.py
===================================================================
--- trunk/blender/release/scripts/ui/space_outliner.py  2009-10-16 10:22:11 UTC 
(rev 23885)
+++ trunk/blender/release/scripts/ui/space_outliner.py  2009-10-16 10:25:39 UTC 
(rev 23886)
@@ -5,9 +5,11 @@
        __space_type__ = 'OUTLINER'
 
        def draw(self, context):
-               so = context.space_data
-               sce = context.scene
                layout = self.layout
+               
+               space = context.space_data
+               scene = context.scene
+               ks = context.scene.active_keying_set
 
                row = layout.row(align=True)
                row.template_header()
@@ -15,37 +17,40 @@
                if context.area.show_menus:
                        sub = row.row(align=True)
                        sub.itemM("OUTLINER_MT_view")
-                       
-               row = layout.row()
-               row.itemR(so, "display_mode", text="")
+
+               layout.itemR(space, "display_mode", text="")
                
-               if so.display_mode == 'DATABLOCKS':
+               layout.itemS()
+               
+               if space.display_mode == 'DATABLOCKS':
                        row = layout.row(align=True)
-                       row.itemO("anim.keyingset_add_new", text="", icon=31)
-                       # row.itemR(sce, "active_keyingset", text="KS: ")
-                       # ks = sce.keyingsets[sce.active_keyingset - 1]
-                       # row.itemR(ks, "name", text="")
-                       ## row.itemR(sce, "keyingsets")
-                       
-                       row = layout.row()
-                       row.itemO("outliner.keyingset_add_selected", text="", 
icon=31)
-                       row.itemO("outliner.keyingset_remove_selected", 
text="", icon=32)
-                       
-                       row.itemO("anim.insert_keyframe", text="", icon=514)
-                       row.itemO("anim.delete_keyframe", text="", icon=513)
-               
+                       row.itemO("anim.keying_set_add", icon='ICON_ZOOMIN', 
text="")
+                       row.itemO("anim.keying_set_remove", 
icon='ICON_ZOOMOUT', text="")
+                       if ks:
+                               row.item_pointerR(scene, "active_keying_set", 
scene, "keying_sets", text="")
+                               
+                               row = layout.row(align=True)
+                               row.itemO("anim.insert_keyframe", text="", 
icon='ICON_KEY_HLT')
+                               row.itemO("anim.delete_keyframe", text="", 
icon='ICON_KEY_DEHLT')
+                       else:
+                               row.itemL(text="No Keying Set active")
 
 class OUTLINER_MT_view(bpy.types.Menu):
        __label__ = "View"
 
        def draw(self, context):
                layout = self.layout
-               so = context.space_data
+               
+               space = context.space_data
 
                col = layout.column()
-               col.itemR(so, "show_restriction_columns")
-               #layout.itemO("text.new")
+               if space.display_mode not in ('DATABLOCKS', 'USER_PREFERENCES', 
'KEYMAPS'):
+                       col.itemR(space, "show_restriction_columns")
+                       col.itemS()
+                       col.itemO("outliner.show_active")
 
+               col.itemO("outliner.show_one_level")
+               col.itemO("outliner.show_hierarchy")
+
 bpy.types.register(OUTLINER_HT_header)
 bpy.types.register(OUTLINER_MT_view)
-

Deleted: trunk/blender/source/blender/editors/space_outliner/outliner_header.c
===================================================================
--- trunk/blender/source/blender/editors/space_outliner/outliner_header.c       
2009-10-16 10:22:11 UTC (rev 23885)
+++ trunk/blender/source/blender/editors/space_outliner/outliner_header.c       
2009-10-16 10:25:39 UTC (rev 23886)
@@ -1,309 +0,0 @@
-/**
- * $Id$
- *
- * ***** BEGIN GPL LICENSE BLOCK *****
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version. 
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- *
- * The Original Code is Copyright (C) 2008 Blender Foundation.
- * All rights reserved.
- *
- * 
- * Contributor(s): Blender Foundation
- *
- * ***** END GPL LICENSE BLOCK *****
- */
-
-#include <string.h>
-#include <stdio.h>
-
-#include "DNA_ID.h"
-#include "DNA_anim_types.h"
-#include "DNA_space_types.h"
-#include "DNA_scene_types.h"
-#include "DNA_screen_types.h"
-#include "DNA_windowmanager_types.h"
-
-#include "MEM_guardedalloc.h"
-
-#include "BLI_blenlib.h"
-
-#include "BKE_animsys.h"
-#include "BKE_context.h"
-#include "BKE_global.h"
-#include "BKE_main.h"
-#include "BKE_screen.h"
-
-#include "ED_keyframing.h"
-#include "ED_screen.h"
-#include "ED_util.h"
-#include "ED_types.h"
-
-#include "WM_api.h"
-#include "WM_types.h"
-
-#include "BIF_gl.h"
-#include "BIF_glutil.h"
-
-#include "UI_interface.h"
-#include "UI_resources.h"
-#include "UI_view2d.h"
-
-#include "outliner_intern.h"
-
-
-/* ************************ header area region *********************** */
-
-static void do_viewmenu(bContext *C, void *arg, int event)
-{
-       ScrArea *curarea= CTX_wm_area(C);
-       SpaceOops *soops= curarea->spacedata.first;
-       
-       switch(event) {
-               case 0: /* Shuffle Selected Blocks */
-                       //shuffle_oops();
-                       break;
-               case 1: /* Shrink Selected Blocks */
-                       //shrink_oops();
-                       break;
-               case 2: /* View All */
-                       //do_oops_buttons(B_OOPSHOME);
-                       break;
-               case 3: /* View All */
-                       //do_oops_buttons(B_OOPSVIEWSEL);
-                       break;
-               case 4: /* Maximize Window */
-                       /* using event B_FULL */
-                       break;
-                       break;
-               case 6:
-                       //outliner_toggle_visible(curarea);
-                       break;
-               case 7:
-                       //outliner_show_hierarchy(curarea);
-                       break;
-               case 8:
-                       //outliner_show_active(curarea);
-                       break;
-               case 9:
-                       //outliner_one_level(curarea, 1);
-                       break;
-               case 10:
-                       //outliner_one_level(curarea, -1);
-                       break;
-               case 12:
-                       if (soops->flag & SO_HIDE_RESTRICTCOLS) soops->flag &= 
~SO_HIDE_RESTRICTCOLS;
-                       else soops->flag |= SO_HIDE_RESTRICTCOLS;
-                       break;
-       }
-       ED_area_tag_redraw(curarea);
-}
-
-static uiBlock *outliner_viewmenu(bContext *C, ARegion *ar, void *arg_unused)
-{
-       ScrArea *curarea= CTX_wm_area(C);
-       SpaceOops *soops= curarea->spacedata.first;
-       uiBlock *block;
-       short yco= 0, menuwidth=120;
-       
-       block= uiBeginBlock(C, ar, "outliner_viewmenu", UI_EMBOSSP);
-       uiBlockSetButmFunc(block, do_viewmenu, NULL);
-       
-       if (soops->flag & SO_HIDE_RESTRICTCOLS)
-               uiDefIconTextBut(block, BUTM, 1, ICON_CHECKBOX_DEHLT, "Show 
Restriction Columns", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 12, "");
-       else
-               uiDefIconTextBut(block, BUTM, 1, ICON_CHECKBOX_HLT, "Show 
Restriction Columns", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 12, "");
-       
-       uiDefBut(block, SEPR, 0, "",        0, yco-=6, menuwidth, 6, NULL, 0.0, 
0.0, 0, 0, "");
-       
-       uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Expand One Level|NumPad 
+", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 9, "");
-       uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Collapse One 
Level|NumPad -", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 10, "");
-       
-       uiDefBut(block, SEPR, 0, "",        0, yco-=6, menuwidth, 6, NULL, 0.0, 
0.0, 0, 0, "");  
-       
-       uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show/Hide All", 0, 
yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 6, "");
-       uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Hierarchy|Home", 0, 
yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 7, "");
-       uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Active|NumPad .", 
0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 8, "");
-       
-//     uiDefBut(block, SEPR, 0, "",        0, yco-=6, menuwidth, 6, NULL, 0.0, 
0.0, 0, 0, "");  
-//     if(!curarea->full) uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, 
"Maximize Window|Ctrl UpArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 
4, "");
-//     else uiDefIconTextBut(block, BUTM, B_FULL, ICON_BLANK1, "Tile 
Window|Ctrl DownArrow", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 4, "");
-       
-       
-       if(curarea->headertype==HEADERTOP) {
-               uiBlockSetDirection(block, UI_DOWN);
-       }
-       else {
-               uiBlockSetDirection(block, UI_TOP);
-               uiBlockFlipOrder(block);
-       }
-       
-       uiTextBoundsBlock(block, 50);
-       uiEndBlock(C, block);
-       
-       return block;
-}
-
-enum {
-       B_REDR  = 1,
-       
-       B_KEYINGSET_CHANGE,
-       B_KEYINGSET_REMOVE,
-} eOutlinerHeader_Events;
-
-static void do_outliner_buttons(bContext *C, void *arg, int event)
-{
-       ScrArea *sa= CTX_wm_area(C);
-       Scene *scene= CTX_data_scene(C);
-       
-       switch(event) {
-               case B_REDR:
-                       ED_area_tag_redraw(sa);
-                       break;
-                       
-               case B_KEYINGSET_CHANGE:
-                       /* add a new KeyingSet if active is -1 */
-                       if (scene->active_keyingset == -1) {
-                               // XXX the default settings have yet to 
evolve... need to keep this in sync with the 
-                               BKE_keyingset_add(&scene->keyingsets, NULL, 
KEYINGSET_ABSOLUTE, 0);
-                               scene->active_keyingset= 
BLI_countlist(&scene->keyingsets);
-                       }
-                       
-                       /* redraw regions with KeyingSet info */
-                       WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, scene);
-                       break;
-                       
-               case B_KEYINGSET_REMOVE:
-                       /* remove the active KeyingSet */
-                       if (scene->active_keyingset) {
-                               KeyingSet *ks= BLI_findlink(&scene->keyingsets, 
scene->active_keyingset-1);
-                               
-                               /* firstly free KeyingSet's data, then free the 
KeyingSet itself */
-                               if (ks) {
-                                       BKE_keyingset_free(ks);
-                                       BLI_freelinkN(&scene->keyingsets, ks);
-                                       scene->active_keyingset= 0;
-                               }
-                               else
-                                       scene->active_keyingset= 0;
-                       }
-                       
-                       /* redraw regions with KeyingSet info */
-                       WM_event_add_notifier(C, NC_SCENE|ND_KEYINGSET, scene);
-                       break;
-       }
-}
-
-
-void outliner_header_buttons(const bContext *C, ARegion *ar)
-{
-       ScrArea *sa= CTX_wm_area(C);
-       Scene *scene= CTX_data_scene(C);
-       SpaceOops *soutliner= CTX_wm_space_outliner(C);
-       uiBlock *block;
-       int xco, yco= 3, xmax;
-       
-       block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS);
-       uiBlockSetHandleFunc(block, do_outliner_buttons, NULL);
-       
-       xco= ED_area_header_standardbuttons(C, block, yco);
-       
-       if((sa->flag & HEADER_NO_PULLDOWN)==0) {
-               
-               xmax= GetButStringLength("View");
-               uiDefPulldownBut(block, outliner_viewmenu, CTX_wm_area(C), 
-                                                "View", xco, yco-2, xmax-3, 
24, ""); 
-               xco += xmax;
-               
-               /* header text */
-               xco += XIC;
-               
-               uiBlockSetEmboss(block, UI_EMBOSS);
-       }
-       
-       /* data selector*/
-       if(G.main->library.first) 
-               uiDefButS(block, MENU, B_REDR, "Outliner Display%t|Libraries 
%x7|All Scenes %x0|Current Scene %x1|Visible Layers %x2|Groups %x6|Same Types 
%x5|Selected %x3|Active %x4|Sequence %x10|Datablocks %x11|User Preferences 
%x12||Key Maps %x13",      xco, yco, 120, 20,  &soutliner->outlinevis, 0, 0, 0, 
0, "");
-       else

@@ Diff output truncated at 10240 characters. @@

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to