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:
authorTon Roosendaal <ton@blender.org>2003-10-11 04:21:05 +0400
committerTon Roosendaal <ton@blender.org>2003-10-11 04:21:05 +0400
commit7913a4a0090361fc47169168fe9feef61730194d (patch)
tree62ad816f3845a53845d7c27f1fb2d252299e548f /source/blender/include/BIF_interface.h
parente799e39e7f146352e075b993b6f62ffe48530175 (diff)
- added method to have a preview render in panel
- increased size of preview from 100 to 125 pix :) - put back header buttons for databrowse, but they need to move to buttonswindow itself
Diffstat (limited to 'source/blender/include/BIF_interface.h')
-rw-r--r--source/blender/include/BIF_interface.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/include/BIF_interface.h b/source/blender/include/BIF_interface.h
index 578ee41020e..ca1dd0ce39a 100644
--- a/source/blender/include/BIF_interface.h
+++ b/source/blender/include/BIF_interface.h
@@ -46,6 +46,10 @@ void uiRoundBox(float minx, float miny, float maxx, float maxy, float rad);
void uiSetRoundBox(int type);
void uiRoundRect(float minx, float miny, float maxx, float maxy, float rad);
+void uiPanelPush(uiBlock *block);
+void uiPanelPop(uiBlock *block);
+uiBlock *uiFindOpenPanelBlockName(ListBase *lb, char *name);
+
void uiDrawMenuBox(float minx, float miny, float maxx, float maxy);
void uiTextBoundsBlock(uiBlock *block, int addval);
void uiBoundsBlock(struct uiBlock *block, int addval);
@@ -136,6 +140,7 @@ void uiBlockSetButmFunc (uiBlock *block, void (*butmfunc)(void *arg, int but_a2)
void uiBlockSetFunc (uiBlock *block, void (*func)(void *arg1, void *arg2), void *arg1, void *arg2);
void uiButSetFunc (uiBut *but, void (*func)(void *arg1, void *arg2), void *arg1, void *arg2);
+void uiBlockSetDrawExtraFunc(uiBlock *block, void (*func)());
short pupmenu(char *instr);
short pupmenu_col(char *instr, int maxrow);