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:
authorMatt Ebb <matt@mke3.net>2004-06-03 18:29:14 +0400
committerMatt Ebb <matt@mke3.net>2004-06-03 18:29:14 +0400
commit5926231d1287feab952fed91e858ee871c2b79e6 (patch)
tree10feb3f68d2f3c51722e89fcd1e57e1478c0573a /source/blender/src/header_nla.c
parent94042b0fef154aeac5571134099163776054c4e4 (diff)
* Added 'Transform' menus to Ipo, OOPS, Action, NLA, and
Sequence spaces * And a few small tweaks
Diffstat (limited to 'source/blender/src/header_nla.c')
-rw-r--r--source/blender/src/header_nla.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/source/blender/src/header_nla.c b/source/blender/src/header_nla.c
index 77abc897542..8260607e5de 100644
--- a/source/blender/src/header_nla.c
+++ b/source/blender/src/header_nla.c
@@ -237,6 +237,37 @@ static void do_nla_stripmenu(void *arg, int event)
}
}
+static void do_nla_strip_transformmenu(void *arg, int event)
+{
+ switch(event) {
+ case 0: /* grab/move */
+ transform_nlachannel_keys ('g');
+ update_for_newframe_muted();
+ break;
+ case 1: /* scale */
+ transform_nlachannel_keys ('s');
+ update_for_newframe_muted();
+ break;
+ }
+ allqueue(REDRAWVIEW3D, 0);
+}
+
+static uiBlock *nla_strip_transformmenu(void *arg_unused)
+{
+ uiBlock *block;
+ short yco = 20, menuwidth = 120;
+
+ block= uiNewBlock(&curarea->uiblocks, "nla_strip_transformmenu", UI_EMBOSSP, UI_HELV, G.curscreen->mainwin);
+ uiBlockSetButmFunc(block, do_nla_strip_transformmenu, NULL);
+
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Grab/Move|G", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 0, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Scale|S", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 1, "");
+
+ uiBlockSetDirection(block, UI_RIGHT);
+ uiTextBoundsBlock(block, 60);
+ return block;
+}
+
static uiBlock *nla_stripmenu(void *arg_unused)
{
uiBlock *block;
@@ -246,6 +277,7 @@ static uiBlock *nla_stripmenu(void *arg_unused)
uiBlockSetButmFunc(block, do_nla_stripmenu, NULL);
// uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Strip Properties...|N", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 0, "");
+ uiDefIconTextBlockBut(block, nla_strip_transformmenu, NULL, ICON_RIGHTARROW_THIN, "Transform", 0, yco-=20, 120, 20, "");
// uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");