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:
authorCampbell Barton <ideasman42@gmail.com>2007-09-18 17:10:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-09-18 17:10:17 +0400
commit621a1746de181d72e5c1cc5250b84d0c044e165d (patch)
treec4adc9038eb81df9a685cfb339bd3ad4a268028c /source/blender/src/header_image.c
parent0a8c558c1726714d2235d84fa5bc00c608ba306b (diff)
added pin for images, this is useful because you might want to edit a model's verts without the image changing.
Diffstat (limited to 'source/blender/src/header_image.c')
-rw-r--r--source/blender/src/header_image.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index dc40b17f3fc..cb5bc6579a7 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -105,6 +105,9 @@ void do_image_buttons(unsigned short event)
}
switch(event) {
+ case B_SIMAPIN:
+ allqueue (REDRAWIMAGE, 0);
+ break;
case B_SIMAGEHOME:
image_home();
break;
@@ -1112,8 +1115,15 @@ void image_buttons(void)
uiBlock *block;
short xco, xmax;
char naam[256], *menuname;
+ char is_render; /* true if the image is a render or composite */
+
+ int allow_pin= B_SIMAPIN;
+
/* This should not be a static var */
static int headerbuttons_packdummy;
+
+
+ is_render = ((G.sima->image!=NULL) && ((G.sima->image->type == IMA_TYPE_R_RESULT) || (G.sima->image->type == IMA_TYPE_COMPOSITE)));
headerbuttons_packdummy = 0;
@@ -1178,13 +1188,13 @@ void image_buttons(void)
/* other buttons: */
uiBlockSetEmboss(block, UI_EMBOSS);
- xco= std_libbuttons(block, xco, 0, 0, NULL, B_SIMABROWSE, ID_IM, 0, (ID *)ima, 0, &(G.sima->imanr), 0, 0, B_IMAGEDELETE, 0, 0);
+ if (is_render)
+ allow_pin = 0;
+
+ xco= std_libbuttons(block, xco, 0, allow_pin, &G.sima->pin, B_SIMABROWSE, ID_IM, 0, (ID *)ima, 0, &(G.sima->imanr), 0, 0, B_IMAGEDELETE, 0, 0);
/* UV EditMode buttons, not painting or rencering or compositing */
- if ( EM_texFaceCheck() &&
- (G.sima->flag & SI_DRAWTOOL)==0 &&
- ((G.sima->image==NULL) || ((G.sima->image->type != IMA_TYPE_R_RESULT) && (G.sima->image->type != IMA_TYPE_COMPOSITE)))
- ) {
+ if ( EM_texFaceCheck() && (G.sima->flag & SI_DRAWTOOL)==0 && !is_render) {
xco+=10;
uiDefIconTextButS(block, ICONTEXTROW,B_AROUND, ICON_ROTATE, around_pup(), xco,0,XIC+10,YIC, &(G.v2d->around), 0, 3.0, 0, 0, "Rotation/Scaling Pivot (Hotkeys: Comma, Shift Comma, Period) ");
xco+= XIC + 12;
@@ -1247,7 +1257,7 @@ void image_buttons(void)
uiBlockEndAlign(block);
xco+= 8;
}
-
+
/* draw LOCK */
uiDefIconButS(block, ICONTOG, 0, ICON_UNLOCKED, xco,0,XIC,YIC, &(G.sima->lock), 0, 0, 0, 0, "Updates other affected window spaces automatically to reflect changes in real time");