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:
authorJoshua Leung <aligorith@gmail.com>2009-05-27 04:07:03 +0400
committerJoshua Leung <aligorith@gmail.com>2009-05-27 04:07:03 +0400
commit95af39cc333c343511eec03c5c43e4c2368b1a1d (patch)
tree5e3b30830327abd7fed9cfc7701e59c3fc846237 /source/blender/editors/space_graph/space_graph.c
parent801eeb6423f4fcd3f2b2fac73cc5e65c96654c5b (diff)
parentb89fb7d8fdea03549f0108554c5631b19f4be770 (diff)
NLA SoC: Merge from 2.5 20215:20439 (HEAD)
Diffstat (limited to 'source/blender/editors/space_graph/space_graph.c')
-rw-r--r--source/blender/editors/space_graph/space_graph.c23
1 files changed, 4 insertions, 19 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 66ebc145621..74002f64187 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -346,34 +346,17 @@ static void graph_buttons_area_init(wmWindowManager *wm, ARegion *ar)
{
ListBase *keymap;
- UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_LIST_UI, ar->winx, ar->winy);
+ ED_region_panels_init(wm, ar);
- keymap= WM_keymap_listbase(wm, "View2D Buttons List", 0, 0);
- WM_event_add_keymap_handler(&ar->handlers, keymap);
keymap= WM_keymap_listbase(wm, "GraphEdit Generic", SPACE_IPO, 0);
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
}
static void graph_buttons_area_draw(const bContext *C, ARegion *ar)
{
- float col[3];
-
- /* clear */
- UI_GetThemeColor3fv(TH_BACK, 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_region_buttons(C, ar);
-
- /* restore view matrix? */
- UI_view2d_view_restore(C);
+ ED_region_panels(C, ar, 1, NULL);
}
-
static void graph_region_listener(ARegion *ar, wmNotifier *wmn)
{
/* context changes */
@@ -586,6 +569,8 @@ void ED_spacetype_ipo(void)
art->draw= graph_buttons_area_draw;
BLI_addhead(&st->regiontypes, art);
+
+ graph_buttons_register(art);
BKE_spacetype_register(st);
}