Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElia Sarti <vekoon@gmail.com>2009-12-07 14:50:05 +0300
committerElia Sarti <vekoon@gmail.com>2009-12-07 14:50:05 +0300
commitc1c5acae14517fa2e365816caf9041dbeb956ac0 (patch)
treec427655c924c2f675e69a41c6e27cb3bd3e04269 /source/blender/editors/space_graph
parentcc166a8b50dad33522463e663df53a99db867ba4 (diff)
Porting of Graph Editor's UI to python, just header done for now.
Brecht, I added a Layout template function, template_dopesheet_filter -> uiTemplateDopeSheetFilter, this creates the group of buttons for filtering ID type (and some other options) for animation editors (Graph, NLA and Dopesheet). I hope this is all right, if not, we can move this maybe to a .py file as a function for reuse.
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_header.c238
-rw-r--r--source/blender/editors/space_graph/space_graph.c21
2 files changed, 2 insertions, 257 deletions
diff --git a/source/blender/editors/space_graph/graph_header.c b/source/blender/editors/space_graph/graph_header.c
index bf8777164c5..8aeb76cae0f 100644
--- a/source/blender/editors/space_graph/graph_header.c
+++ b/source/blender/editors/space_graph/graph_header.c
@@ -63,144 +63,6 @@
#include "graph_intern.h"
/* ********************************************************* */
-/* Menu Defines... */
-
-static void graph_viewmenu(bContext *C, uiLayout *layout, void *arg_unused)
-{
- bScreen *sc= CTX_wm_screen(C);
- ScrArea *sa= CTX_wm_area(C);
- SpaceIpo *sipo= CTX_wm_space_graph(C);
- PointerRNA spaceptr;
-
- /* retrieve state */
- RNA_pointer_create(&sc->id, &RNA_SpaceGraphEditor, sipo, &spaceptr);
-
- /* create menu */
- uiItemO(layout, NULL, ICON_MENU_PANEL, "GRAPH_OT_properties");
-
- uiItemS(layout);
-
- uiItemR(layout, NULL, 0, &spaceptr, "show_cframe_indicator", 0);
- uiItemR(layout, NULL, 0, &spaceptr, "show_cursor", 0);
- uiItemR(layout, NULL, 0, &spaceptr, "show_sliders", 0);
- uiItemR(layout, NULL, 0, &spaceptr, "automerge_keyframes", 0);
-
- if (sipo->flag & SIPO_NOHANDLES)
- uiItemO(layout, "Show Handles", ICON_CHECKBOX_DEHLT, "GRAPH_OT_handles_view_toggle");
- else
- uiItemO(layout, "Show Handles", ICON_CHECKBOX_HLT, "GRAPH_OT_handles_view_toggle");
-
- uiItemR(layout, NULL, 0, &spaceptr, "only_selected_curves_handles", 0);
- uiItemR(layout, NULL, 0, &spaceptr, "only_selected_keyframe_handles", 0);
-
-
- if (sipo->flag & SIPO_DRAWTIME)
- uiItemO(layout, "Show Frames", 0, "ANIM_OT_time_toggle");
- else
- uiItemO(layout, "Show Seconds", 0, "ANIM_OT_time_toggle");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "ANIM_OT_previewrange_set");
- uiItemO(layout, NULL, 0, "ANIM_OT_previewrange_clear");
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_previewrange_set");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_frame_jump");
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_view_all");
-
- if (sa->full)
- uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Tile Window", Ctrl UpArrow
- else
- uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Maximize Window", Ctrl DownArrow
-}
-
-static void graph_selectmenu(bContext *C, uiLayout *layout, void *arg_unused)
-{
- uiItemO(layout, NULL, 0, "GRAPH_OT_select_all_toggle");
- uiItemBooleanO(layout, "Invert All", 0, "GRAPH_OT_select_all_toggle", "invert", 1);
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_select_border");
- uiItemBooleanO(layout, "Border Axis Range", 0, "GRAPH_OT_select_border", "axis_range", 1);
-
- uiItemS(layout);
-
- uiItemEnumO(layout, "Columns on Selected Keys", 0, "GRAPH_OT_select_column", "mode", GRAPHKEYS_COLUMNSEL_KEYS);
- uiItemEnumO(layout, "Column on Current Frame", 0, "GRAPH_OT_select_column", "mode", GRAPHKEYS_COLUMNSEL_CFRA);
-
- uiItemEnumO(layout, "Columns on Selected Markers", 0, "GRAPH_OT_select_column", "mode", GRAPHKEYS_COLUMNSEL_MARKERS_COLUMN);
- uiItemEnumO(layout, "Between Selected Markers", 0, "GRAPH_OT_select_column", "mode", GRAPHKEYS_COLUMNSEL_MARKERS_BETWEEN);
-}
-
-static void graph_channelmenu(bContext *C, uiLayout *layout, void *arg_unused)
-{
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_setting_toggle");
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_setting_enable");
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_setting_disable");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_editable_toggle");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_expand");
- uiItemO(layout, NULL, 0, "ANIM_OT_channels_collapse");
-}
-
-static void graph_edit_transformmenu(bContext *C, uiLayout *layout, void *arg_unused)
-{
- uiItemO(layout, "Grab/Move", 0, "TFM_OT_translate");
- uiItemEnumO(layout, "Extend", 0, "TFM_OT_transform", "mode", TFM_TIME_EXTEND);
- uiItemO(layout, "Rotate", 0, "TFM_OT_rotate");
- uiItemO(layout, "Scale", 0, "TFM_OT_resize");
-}
-
-static void graph_editmenu(bContext *C, uiLayout *layout, void *arg_unused)
-{
- uiItemMenuF(layout, "Transform", 0, graph_edit_transformmenu, NULL);
- uiItemMenuEnumO(layout, "Snap", 0, "GRAPH_OT_snap", "type");
- uiItemMenuEnumO(layout, "Mirror", 0, "GRAPH_OT_mirror", "type");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_keyframe_insert");
- uiItemO(layout, NULL, 0, "GRAPH_OT_fmodifier_add");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_duplicate");
- uiItemO(layout, NULL, 0, "GRAPH_OT_delete");
-
- uiItemS(layout);
-
- uiItemMenuEnumO(layout, "Handle Type", 0, "GRAPH_OT_handle_type", "type");
- uiItemMenuEnumO(layout, "Interpolation Mode", 0, "GRAPH_OT_interpolation_type", "type");
- uiItemMenuEnumO(layout, "Extrapolation Mode", 0, "GRAPH_OT_extrapolation_type", "type");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_clean");
- uiItemO(layout, NULL, 0, "GRAPH_OT_sample");
- uiItemO(layout, NULL, 0, "GRAPH_OT_bake");
-
- uiItemS(layout);
-
- uiItemO(layout, NULL, 0, "GRAPH_OT_copy");
- uiItemO(layout, NULL, 0, "GRAPH_OT_paste");
-}
-
-/* ********************************************************* */
-
-enum {
- B_REDR = 0,
- B_MODECHANGE,
-} eGraphEdit_Events;
static void do_graph_buttons(bContext *C, void *arg, int event)
{
@@ -208,104 +70,4 @@ static void do_graph_buttons(bContext *C, void *arg, int event)
ED_area_tag_redraw(CTX_wm_area(C));
}
-static char *garound_pup(const bContext *C)
-{
- static char string[512];
- char *str = string;
-
- str += sprintf(str, "%s", "Pivot: %t");
- str += sprintf(str, "%s", "|Bounding Box Center %x0");
- //str += sprintf(str, "%s", "|Median Point %x3");
- str += sprintf(str, "%s", "|2D Cursor %x1");
- str += sprintf(str, "%s", "|Individual Centers %x2");
- return string;
-}
-
-void graph_header_buttons(const bContext *C, ARegion *ar)
-{
- SpaceIpo *sipo= CTX_wm_space_graph(C);
- ScrArea *sa= CTX_wm_area(C);
- uiBlock *block;
- int xco, yco= 3;
-
- block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS);
- uiBlockSetHandleFunc(block, do_graph_buttons, NULL);
-
- /* standard buttosn in header - viewtype selector and menus */
- xco= ED_area_header_standardbuttons(C, block, yco);
-
- if ((sa->flag & HEADER_NO_PULLDOWN)==0) {
- int xmax;
-
- xmax= GetButStringLength("View");
- uiDefMenuBut(block, graph_viewmenu, NULL, "View", xco, yco, xmax-3, 20, "");
- xco+= xmax;
-
- xmax= GetButStringLength("Select");
- uiDefMenuBut(block, graph_selectmenu, NULL, "Select", xco, yco, xmax-3, 20, "");
- xco+= xmax;
-
- xmax= GetButStringLength("Channel");
- uiDefMenuBut(block, graph_channelmenu, NULL, "Channel", xco, yco, xmax-3, 20, "");
- xco+= xmax;
-
- xmax= GetButStringLength("Key");
- uiDefMenuBut(block, graph_editmenu, NULL, "Key", xco, yco, xmax-3, 20, "");
- xco+= xmax;
- }
-
- uiBlockSetEmboss(block, UI_EMBOSS);
-
- /* mode selector */
- uiDefButS(block, MENU, B_MODECHANGE,
- "Editor Mode %t|F-Curve Editor %x0|Drivers %x1",
- xco,yco,110,YIC, &sipo->mode, 0, 1, 0, 0,
- "Editing modes for this editor");
- xco+= 120;
-
- /* filtering buttons */
- xco= ANIM_headerUI_standard_buttons(C, sipo->ads, block, xco, yco);
-
- /* auto-snap selector */
- if (sipo->flag & SIPO_DRAWTIME) {
- uiDefButS(block, MENU, B_REDR,
- "Auto-Snap Keyframes %t|No Time-Snap %x0|Nearest Second %x2|Nearest Marker %x3",
- xco,yco,90,YIC, &sipo->autosnap, 0, 1, 0, 0,
- "Auto-snapping mode for keyframe times when transforming");
- }
- else {
- uiDefButS(block, MENU, B_REDR,
- "Auto-Snap Keyframes %t|No Time-Snap %x0|Nearest Frame %x2|Nearest Marker %x3",
- xco,yco,90,YIC, &sipo->autosnap, 0, 1, 0, 0,
- "Auto-snapping mode for keyframe times when transforming");
- }
- xco += 98;
-
- /* pivot mode setting */
- uiDefIconTextButI(block, ICONTEXTROW,B_REDR, ICON_ROTATE, garound_pup(C), xco,yco,XIC+10,YIC, &(sipo->around), 0, 3.0, 0, 0, "Rotation/Scaling Pivot");
- xco+= XIC+10;
-
- /* copy + paste */
- uiBlockBeginAlign(block);
- uiDefIconButO(block, BUT, "GRAPH_OT_copy", WM_OP_INVOKE_REGION_WIN, ICON_COPYDOWN, xco+=XIC,yco,XIC,YIC, "Copies the selected keyframes from the selected channel(s) to the buffer");
- uiDefIconButO(block, BUT, "GRAPH_OT_paste", WM_OP_INVOKE_REGION_WIN, ICON_PASTEDOWN, xco+=XIC,yco,XIC,YIC, "Pastes the keyframes from the buffer");
- uiBlockEndAlign(block);
- xco += (XIC + 8);
-
- /* ghost curves */
- // XXX these icons need to be changed
- if (sipo->ghostCurves.first)
- uiDefIconButO(block, BUT, "GRAPH_OT_ghost_curves_clear", WM_OP_INVOKE_REGION_WIN, ICON_GHOST_DISABLED, xco,yco,XIC,YIC, "Clear F-Curve snapshots (Ghosts) for this Graph Editor instance");
- else
- uiDefIconButO(block, BUT, "GRAPH_OT_ghost_curves_create", WM_OP_INVOKE_REGION_WIN, ICON_GHOST_ENABLED, xco,yco,XIC,YIC, "Create snapshot (Ghosts) of selected F-Curves as background aid for this Graph Editor instance");
- xco+= XIC;
-
-
- /* always as last */
- UI_view2d_totRect_set(&ar->v2d, xco+XIC+80, (int)(ar->v2d.tot.ymax - ar->v2d.tot.ymin));
-
- uiEndBlock(C, block);
- uiDrawBlock(C, block);
-}
-
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 24f87906391..f6d25bd7285 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -350,29 +350,12 @@ static void graph_channel_area_draw(const bContext *C, ARegion *ar)
/* add handlers, stuff you only do once or on area/region changes */
static void graph_header_area_init(wmWindowManager *wm, ARegion *ar)
{
- UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy);
+ ED_region_header_init(ar);
}
static void graph_header_area_draw(const bContext *C, ARegion *ar)
{
- float col[3];
-
- /* clear */
- if(ED_screen_area_active(C))
- UI_GetThemeColor3fv(TH_HEADER, col);
- else
- UI_GetThemeColor3fv(TH_HEADERDESEL, col);
-
- glClearColor(col[0], col[1], col[2], 0.0);
- glClear(GL_COLOR_BUFFER_BIT);
-
- /* set view2d view matrix for scrolling (without scrollers) */
- UI_view2d_view_ortho(C, &ar->v2d);
-
- graph_header_buttons(C, ar);
-
- /* restore view matrix? */
- UI_view2d_view_restore(C);
+ ED_region_header(C, ar);
}
/* add handlers, stuff you only do once or on area/region changes */