glui.h
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:94k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /****************************************************************************
  2.   GLUI User Interface Toolkit (LGPL)
  3.   ----------------------------------
  4.      glui.h - Main (and only) external header for 
  5.         GLUI User Interface Toolkit
  6.           --------------------------------------------------
  7.   Copyright (c) 1998 Paul Rademacher
  8.   WWW:    http://sourceforge.net/projects/glui/
  9.   Forums: http://sourceforge.net/forum/?group_id=92496
  10.   This library is free software; you can redistribute it and/or
  11.   modify it under the terms of the GNU Lesser General Public
  12.   License as published by the Free Software Foundation; either
  13.   version 2.1 of the License, or (at your option) any later version.
  14.   This library is distributed in the hope that it will be useful,
  15.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.   Lesser General Public License for more details.
  18.   You should have received a copy of the GNU Lesser General Public
  19.   License along with this library; if not, write to the Free Software
  20.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21. *****************************************************************************/
  22. #ifndef GLUI_GLUI_H
  23. #define GLUI_GLUI_H
  24. #if defined(GLUI_FREEGLUT)
  25.   // FreeGLUT does not yet work perfectly with GLUI
  26.   //  - use at your own risk.
  27.   #include <GL/freeglut.h>
  28. #elif defined(GLUI_OPENGLUT)
  29.   // OpenGLUT does not yet work properly with GLUI
  30.   //  - use at your own risk.
  31.   
  32.   #include <GL/openglut.h>
  33. #else 
  34.   #ifdef __APPLE__
  35.   #include <GLUT/glut.h>
  36.   #else
  37. #include "../../freeglut/GL/glut.h"
  38.   //#include <GL/glut.h>
  39.   #endif
  40. #endif
  41. #include <cstdlib>
  42. #include <cstdio>
  43. #include <cstring>
  44. #include <string>
  45. #include <vector>
  46. #define GLUI_VERSION 2.3f    /********** Current version **********/
  47. #if defined(_WIN32)
  48. #if !defined(GLUI_NO_LIB_PRAGMA)
  49. //#pragma comment(lib, "glui32.lib")  // Link automatically with GLUI library
  50. #endif
  51. #endif
  52. /********** Do some basic defines *******/
  53. #ifndef Byte
  54. #define Byte unsigned char
  55. #endif
  56. #ifndef _RGBC_
  57. class RGBc {
  58. public:
  59.   Byte r, g, b;
  60.     
  61.   void set(Byte r,Byte g,Byte b) {this->r=r;this->g=g;this->b=b;}
  62.     
  63.   RGBc( void ) {}
  64.   RGBc( Byte r, Byte g, Byte b ) { set( r, g, b ); }
  65. };
  66. #define _RGBC_
  67. #endif
  68. /********** List of GLUT callbacks ********/
  69. enum GLUI_Glut_CB_Types 
  70.     GLUI_GLUT_RESHAPE,
  71.     GLUI_GLUT_KEYBOARD,
  72.     GLUI_GLUT_DISPLAY,
  73.     GLUI_GLUT_MOUSE,
  74.     GLUI_GLUT_MOTION,
  75.     GLUI_GLUT_SPECIAL,
  76.     GLUI_GLUT_PASSIVE_MOTION,  
  77.     GLUI_GLUT_ENTRY,
  78.     GLUI_GLUT_VISIBILITY  
  79. };
  80. /********* Constants for window placement **********/
  81. #define GLUI_XOFF                       6
  82. #define GLUI_YOFF                       6
  83. #define GLUI_ITEMSPACING                3
  84. #define GLUI_CHECKBOX_SIZE             13
  85. #define GLUI_RADIOBUTTON_SIZE          13
  86. #define GLUI_BUTTON_SIZE               20
  87. #define GLUI_STATICTEXT_SIZE           13
  88. #define GLUI_SEPARATOR_HEIGHT           8
  89. #define GLUI_DEFAULT_CONTROL_WIDTH    100
  90. #define GLUI_DEFAULT_CONTROL_HEIGHT    13 
  91. #define GLUI_EDITTEXT_BOXINNERMARGINX   3
  92. #define GLUI_EDITTEXT_HEIGHT           20
  93. #define GLUI_EDITTEXT_WIDTH           130
  94. #define GLUI_EDITTEXT_MIN_INT_WIDTH    35
  95. #define GLUI_EDITTEXT_MIN_TEXT_WIDTH   50
  96. #define GLUI_PANEL_NAME_DROP            8
  97. #define GLUI_PANEL_EMBOSS_TOP           4
  98. /* #define GLUI_ROTATION_WIDTH         60 */
  99. /* #define GLUI_ROTATION_HEIGHT        78 */
  100. #define GLUI_ROTATION_WIDTH            50
  101. #define GLUI_ROTATION_HEIGHT           (GLUI_ROTATION_WIDTH+18)
  102. #define GLUI_MOUSE_INTERACTION_WIDTH   50
  103. #define GLUI_MOUSE_INTERACTION_HEIGHT  (GLUI_MOUSE_INTERACTION_WIDTH)+18
  104. /** Different panel control types **/
  105. #define GLUI_PANEL_NONE      0
  106. #define GLUI_PANEL_EMBOSSED  1
  107. #define GLUI_PANEL_RAISED    2
  108. /**  Max # of els in control's float_array  **/
  109. #define GLUI_DEF_MAX_ARRAY  30
  110. /********* The control's 'active' behavior *********/
  111. #define GLUI_CONTROL_ACTIVE_MOUSEDOWN       1
  112. #define GLUI_CONTROL_ACTIVE_PERMANENT       2
  113. /********* Control alignment types **********/
  114. #define GLUI_ALIGN_CENTER   1
  115. #define GLUI_ALIGN_RIGHT    2
  116. #define GLUI_ALIGN_LEFT     3
  117. /********** Limit types - how to limit spinner values *********/
  118. #define GLUI_LIMIT_NONE    0
  119. #define GLUI_LIMIT_CLAMP   1
  120. #define GLUI_LIMIT_WRAP    2
  121. /********** Translation control types ********************/
  122. #define GLUI_TRANSLATION_XY 0
  123. #define GLUI_TRANSLATION_Z  1
  124. #define GLUI_TRANSLATION_X  2
  125. #define GLUI_TRANSLATION_Y  3
  126. #define GLUI_TRANSLATION_LOCK_NONE 0
  127. #define GLUI_TRANSLATION_LOCK_X    1
  128. #define GLUI_TRANSLATION_LOCK_Y    2
  129. /********** How was a control activated? *****************/
  130. #define GLUI_ACTIVATE_MOUSE 1
  131. #define GLUI_ACTIVATE_TAB   2
  132. /********** What type of live variable does a control have? **********/
  133. #define GLUI_LIVE_NONE          0
  134. #define GLUI_LIVE_INT           1
  135. #define GLUI_LIVE_FLOAT         2
  136. #define GLUI_LIVE_TEXT          3
  137. #define GLUI_LIVE_STRING        6
  138. #define GLUI_LIVE_DOUBLE        4
  139. #define GLUI_LIVE_FLOAT_ARRAY   5
  140. /************* Textbox and List Defaults - JVK ******************/
  141. #define GLUI_TEXTBOX_HEIGHT          130
  142. #define GLUI_TEXTBOX_WIDTH           130
  143. #define GLUI_LIST_HEIGHT             130
  144. #define GLUI_LIST_WIDTH              130
  145. #define GLUI_DOUBLE_CLICK              1
  146. #define GLUI_SINGLE_CLICK              0
  147. #define GLUI_TAB_WIDTH                50 /* In pixels */
  148. #define GLUI_TEXTBOX_BOXINNERMARGINX   3
  149. #define GLUI_TEXTBOX_MIN_TEXT_WIDTH   50
  150. #define GLUI_LIST_BOXINNERMARGINX      3
  151. #define GLUI_LIST_MIN_TEXT_WIDTH      50
  152. /*********************** TreePanel Defaults - JVK *****************************/
  153. #define GLUI_TREEPANEL_DEFAULTS               0 // bar, standard bar color
  154. #define GLUI_TREEPANEL_ALTERNATE_COLOR        1 // Alternate between 8 different bar colors
  155. #define GLUI_TREEPANEL_ENABLE_BAR             2 // enable the bar
  156. #define GLUI_TREEPANEL_DISABLE_BAR            4 // disable the bar
  157. #define GLUI_TREEPANEL_DISABLE_DEEPEST_BAR    8 // disable only the deepest bar
  158. #define GLUI_TREEPANEL_CONNECT_CHILDREN_ONLY 16 // disable only the bar of the last child of each root
  159. #define GLUI_TREEPANEL_DISPLAY_HIERARCHY     32 // display some sort of hierachy in the tree node title
  160. #define GLUI_TREEPANEL_HIERARCHY_NUMERICDOT  64 // display hierarchy in 1.3.2 (etc... ) format
  161. #define GLUI_TREEPANEL_HIERARCHY_LEVEL_ONLY 128 // display hierarchy as only the level depth
  162.  
  163. /******************* GLUI Scrollbar Defaults - JVK ***************************/
  164. #define  GLUI_SCROLL_ARROW_WIDTH     16
  165. #define  GLUI_SCROLL_ARROW_HEIGHT    16
  166. #define  GLUI_SCROLL_BOX_MIN_HEIGHT   5
  167. #define  GLUI_SCROLL_BOX_STD_HEIGHT  16
  168. #define  GLUI_SCROLL_STATE_NONE       0
  169. #define  GLUI_SCROLL_STATE_UP         1
  170. #define  GLUI_SCROLL_STATE_DOWN       2
  171. #define  GLUI_SCROLL_STATE_BOTH       3
  172. #define  GLUI_SCROLL_STATE_SCROLL     4
  173. #define  GLUI_SCROLL_DEFAULT_GROWTH_EXP   1.05f
  174. #define  GLUI_SCROLL_VERTICAL         0
  175. #define  GLUI_SCROLL_HORIZONTAL       1
  176. /** Size of the character width hash table for faster lookups. 
  177.   Make sure to keep this a power of two to avoid the slow divide.
  178.   This is also a speed/memory tradeoff; 128 is enough for low ASCII.
  179. */
  180. #define CHAR_WIDTH_HASH_SIZE 128
  181. /**********  Translation codes  **********/
  182. enum TranslationCodes  
  183. {
  184.     GLUI_TRANSLATION_MOUSE_NONE = 0,
  185.     GLUI_TRANSLATION_MOUSE_UP,
  186.     GLUI_TRANSLATION_MOUSE_DOWN,
  187.     GLUI_TRANSLATION_MOUSE_LEFT,
  188.     GLUI_TRANSLATION_MOUSE_RIGHT,
  189.     GLUI_TRANSLATION_MOUSE_UP_LEFT,
  190.     GLUI_TRANSLATION_MOUSE_UP_RIGHT,
  191.     GLUI_TRANSLATION_MOUSE_DOWN_LEFT,
  192.     GLUI_TRANSLATION_MOUSE_DOWN_RIGHT
  193. };
  194. /************ A string type for us to use **********/
  195. typedef std::string GLUI_String;
  196. GLUI_String& glui_format_str(GLUI_String &str, const char* fmt, ...);
  197. /********* Pre-declare classes as needed *********/
  198. class GLUI;
  199. class GLUI_Control;
  200. class GLUI_Listbox;
  201. class GLUI_StaticText;
  202. class GLUI_EditText;
  203. class GLUI_Panel;
  204. class GLUI_Spinner;
  205. class GLUI_RadioButton;
  206. class GLUI_RadioGroup;
  207. class GLUI_Glut_Window;
  208. class GLUI_TreePanel;
  209. class GLUI_Scrollbar;
  210. class GLUI_List;
  211. class Arcball;
  212. /*** Flags for GLUI class constructor ***/
  213. #define  GLUI_SUBWINDOW          ((long)(1<<1))
  214. #define  GLUI_SUBWINDOW_TOP      ((long)(1<<2))
  215. #define  GLUI_SUBWINDOW_BOTTOM   ((long)(1<<3))
  216. #define  GLUI_SUBWINDOW_LEFT     ((long)(1<<4))
  217. #define  GLUI_SUBWINDOW_RIGHT    ((long)(1<<5))
  218. /*** Codes for different type of edittext boxes and spinners ***/
  219. #define GLUI_EDITTEXT_TEXT             1
  220. #define GLUI_EDITTEXT_INT              2
  221. #define GLUI_EDITTEXT_FLOAT            3
  222. #define GLUI_SPINNER_INT               GLUI_EDITTEXT_INT
  223. #define GLUI_SPINNER_FLOAT             GLUI_EDITTEXT_FLOAT
  224. #define GLUI_SCROLL_INT                GLUI_EDITTEXT_INT
  225. #define GLUI_SCROLL_FLOAT              GLUI_EDITTEXT_FLOAT
  226. // This is only for deprecated interface
  227. #define GLUI_EDITTEXT_STRING           4
  228. /*** Definition of callbacks ***/
  229. typedef void (*GLUI_Update_CB) (int id);
  230. typedef void (*GLUI_Control_CB)(GLUI_Control *);
  231. typedef void (*Int1_CB)        (int);
  232. typedef void (*Int2_CB)        (int, int);
  233. typedef void (*Int3_CB)        (int, int, int);
  234. typedef void (*Int4_CB)        (int, int, int, int);
  235. /************************************************************/
  236. /**
  237.  Callback Adapter Class                            
  238.     Allows us to support different types of callbacks;
  239.     like a GLUI_Update_CB function pointer--which takes an int;
  240.     and a GLUI_Control_CB function pointer--which takes a GUI_Control object.
  241. */
  242. class GLUI_CB
  243. {
  244. public:
  245.   GLUI_CB() : idCB(0),objCB(0) {}
  246.   GLUI_CB(GLUI_Update_CB cb) : idCB(cb),objCB(0) {}
  247.   GLUI_CB(GLUI_Control_CB cb) : idCB(0),objCB(cb) {}
  248.   // (Compiler generated copy constructor)
  249.   /** This control just activated.  Fire our callback.*/
  250.   void operator()(GLUI_Control *ctrl) const;
  251.   bool operator!() const { return !idCB && !objCB; }
  252.   operator bool() const { return !(!(*this)); }
  253. private:
  254.   GLUI_Update_CB idCB;
  255.   GLUI_Control_CB objCB;
  256. };
  257. /************************************************************/
  258. /*                                                          */
  259. /*          Base class, for hierarchical relationships      */
  260. /*                                                          */
  261. /************************************************************/
  262. class GLUI_Control;
  263. /**
  264.  GLUI_Node is a node in a sort of tree of GLUI controls.
  265.  Each GLUI_Node has a list of siblings (in a circular list)
  266.  and a linked list of children.
  267.  
  268.  Everything onscreen is a GLUI_Node--windows, buttons, etc.
  269.  The nodes are traversed for event processing, sizing, redraws, etc.
  270. */
  271. class GLUI_Node 
  272. {
  273.     friend class GLUI_Tree;     /* JVK */
  274.     friend class GLUI_Rollout;
  275.     friend class GLUI_Main;
  276. public:
  277.     GLUI_Node();
  278.     virtual ~GLUI_Node() {}
  279.     GLUI_Node *first_sibling();
  280.     GLUI_Node *last_sibling();
  281.     GLUI_Node *prev();
  282.     GLUI_Node *next();
  283.     GLUI_Node *first_child()   { return child_head; }
  284.     GLUI_Node *last_child()    { return child_tail; }
  285.     GLUI_Node *parent()        { return parent_node; }
  286.     /** Link in a new child control */
  287.     virtual int  add_control( GLUI_Control *control );
  288.     void link_this_to_parent_last (GLUI_Node *parent  );
  289.     void link_this_to_parent_first(GLUI_Node *parent  );
  290.     void link_this_to_sibling_next(GLUI_Node *sibling );
  291.     void link_this_to_sibling_prev(GLUI_Node *sibling );
  292.     void unlink();
  293.     void dump( FILE *out, const char *name );
  294. protected:
  295.     static void add_child_to_control(GLUI_Node *parent,GLUI_Control *child);
  296.     GLUI_Node *parent_node;
  297.     GLUI_Node *child_head;
  298.     GLUI_Node *child_tail;
  299.     GLUI_Node *next_sibling;
  300.     GLUI_Node *prev_sibling;
  301. };
  302. /************************************************************/
  303. /*                                                          */
  304. /*                  Standard Bitmap stuff                   */
  305. /*                                                          */
  306. /************************************************************/
  307. enum GLUI_StdBitmaps_Codes 
  308. {
  309.     GLUI_STDBITMAP_CHECKBOX_OFF = 0,
  310.     GLUI_STDBITMAP_CHECKBOX_ON,
  311.     GLUI_STDBITMAP_RADIOBUTTON_OFF,
  312.     GLUI_STDBITMAP_RADIOBUTTON_ON,
  313.     GLUI_STDBITMAP_UP_ARROW,
  314.     GLUI_STDBITMAP_DOWN_ARROW,
  315.     GLUI_STDBITMAP_LEFT_ARROW,
  316.     GLUI_STDBITMAP_RIGHT_ARROW,
  317.     GLUI_STDBITMAP_SPINNER_UP_OFF,
  318.     GLUI_STDBITMAP_SPINNER_UP_ON,
  319.     GLUI_STDBITMAP_SPINNER_DOWN_OFF,
  320.     GLUI_STDBITMAP_SPINNER_DOWN_ON,
  321.     GLUI_STDBITMAP_CHECKBOX_OFF_DIS,    /*** Disactivated control bitmaps ***/
  322.     GLUI_STDBITMAP_CHECKBOX_ON_DIS,
  323.     GLUI_STDBITMAP_RADIOBUTTON_OFF_DIS,
  324.     GLUI_STDBITMAP_RADIOBUTTON_ON_DIS,
  325.     GLUI_STDBITMAP_SPINNER_UP_DIS,
  326.     GLUI_STDBITMAP_SPINNER_DOWN_DIS,
  327.     GLUI_STDBITMAP_LISTBOX_UP,
  328.     GLUI_STDBITMAP_LISTBOX_DOWN,
  329.     GLUI_STDBITMAP_LISTBOX_UP_DIS,
  330.     GLUI_STDBITMAP_NUM_ITEMS
  331. };
  332. /************************************************************/
  333. /*                                                          */
  334. /*                  Class GLUI_Bitmap                       */
  335. /*                                                          */
  336. /************************************************************/
  337. /**
  338.  GLUI_Bitmap is a simple 2D texture map.  It's used
  339.  to represent small textures like checkboxes, arrows, etc.
  340.  via the GLUI_StdBitmaps class.
  341. */
  342. class GLUI_Bitmap 
  343. {
  344.     friend class GLUI_StdBitmaps;
  345. public:
  346.     GLUI_Bitmap();
  347.     ~GLUI_Bitmap();
  348.     /** Create bitmap from greyscale byte image */
  349.     void init_grey(unsigned char *array);
  350.     
  351.     /** Create bitmap from color int image */
  352.     void init(int *array);
  353. private:
  354.     /** RGB pixel data */
  355.     unsigned char *pixels;
  356.     int            w, h;
  357. };
  358. /************************************************************/
  359. /*                                                          */
  360. /*                  Class GLUI_StdBitmap                    */
  361. /*                                                          */
  362. /************************************************************/
  363. /**
  364.  Keeps an array of GLUI_Bitmap objects to represent all the 
  365.  images used in the UI: checkboxes, arrows, etc.
  366. */
  367. class GLUI_StdBitmaps
  368. {
  369. public:
  370.     GLUI_StdBitmaps(); 
  371.     ~GLUI_StdBitmaps();
  372.     /** Return the width (in pixels) of the n'th standard bitmap. */
  373.     int  width (int n) const;
  374.     /** Return the height (in pixels) of the n'th standard bitmap. */
  375.     int  height(int n) const;
  376.     /** Draw the n'th standard bitmap (one of the enums
  377.        listed in GLUI_StdBitmaps_Codes) at pixel corner (x,y). 
  378.     */
  379.     void draw(int n, int x, int y) const;
  380. private:
  381.     GLUI_Bitmap bitmaps[GLUI_STDBITMAP_NUM_ITEMS];
  382. };
  383. /************************************************************/
  384. /*                                                          */
  385. /*                     Master GLUI Class                    */
  386. /*                                                          */
  387. /************************************************************/
  388. /**
  389.  The master manages our interaction with GLUT.
  390.  There's only one GLUI_Master_Object.
  391. */
  392. class GLUI_Master_Object 
  393. {
  394.     friend void glui_idle_func();
  395.   
  396. public:
  397.     GLUI_Master_Object();
  398.     ~GLUI_Master_Object();
  399.     GLUI_Node     gluis;
  400.     GLUI_Control *active_control, *curr_left_button_glut_menu;
  401.     GLUI         *active_control_glui;
  402.     int           glui_id_counter;
  403.     GLUI_Glut_Window   *find_glut_window( int window_id );
  404.     void           set_glutIdleFunc(void (*f)(void));
  405.     /**************
  406.     void (*glut_keyboard_CB)(unsigned char, int, int);
  407.     void (*glut_reshape_CB)(int, int);
  408.     void (*glut_special_CB)(int, int, int);
  409.     void (*glut_mouse_CB)(int,int,int,int);
  410.     void (*glut_passive_motion_CB)(int,int);
  411.     void (*glut_visibility_CB)(int);
  412.     void (*glut_motion_CB)(int,int);
  413.     void (*glut_display_CB)(void);
  414.     void (*glut_entry_CB)(int);
  415.     **********/
  416.     void  set_left_button_glut_menu_control( GLUI_Control *control );
  417.     /********** GLUT callthroughs **********/
  418.     /* These are the glut callbacks that we do not handle */
  419.     void set_glutReshapeFunc (void (*f)(int width, int height));
  420.     void set_glutKeyboardFunc(void (*f)(unsigned char key, int x, int y));
  421.     void set_glutSpecialFunc (void (*f)(int key, int x, int y));
  422.     void set_glutMouseFunc   (void (*f)(int, int, int, int ));
  423.     void set_glutDisplayFunc(void (*f)(void)) {glutDisplayFunc(f);}
  424.     void set_glutTimerFunc(unsigned int millis, void (*f)(int value), int value)
  425.     { ::glutTimerFunc(millis,f,value);}
  426.     void set_glutOverlayDisplayFunc(void(*f)(void)){glutOverlayDisplayFunc(f);}
  427.     void set_glutSpaceballMotionFunc(Int3_CB f)  {glutSpaceballMotionFunc(f);}
  428.     void set_glutSpaceballRotateFunc(Int3_CB f)  {glutSpaceballRotateFunc(f);}
  429.     void set_glutSpaceballButtonFunc(Int2_CB f)  {glutSpaceballButtonFunc(f);}
  430.     void set_glutTabletMotionFunc(Int2_CB f)        {glutTabletMotionFunc(f);}
  431.     void set_glutTabletButtonFunc(Int4_CB f)        {glutTabletButtonFunc(f);}
  432.     /*    void set_glutWindowStatusFunc(Int1_CB f)        {glutWindowStatusFunc(f);} */
  433.     void set_glutMenuStatusFunc(Int3_CB f)            {glutMenuStatusFunc(f);}
  434.     void set_glutMenuStateFunc(Int1_CB f)              {glutMenuStateFunc(f);}
  435.     void set_glutButtonBoxFunc(Int2_CB f)              {glutButtonBoxFunc(f);}
  436.     void set_glutDialsFunc(Int2_CB f)                      {glutDialsFunc(f);}  
  437.   
  438.     GLUI          *create_glui( const char *name, long flags=0, int x=-1, int y=-1 ); 
  439.     GLUI          *create_glui_subwindow( int parent_window, long flags=0 );
  440.     GLUI          *find_glui_by_window_id( int window_id );
  441.     void           get_viewport_area( int *x, int *y, int *w, int *h );
  442.     void           auto_set_viewport();
  443.     void           close_all();
  444.     void           sync_live_all();
  445.     void           reshape();
  446.     float          get_version() { return GLUI_VERSION; }
  447.     void glui_setIdleFuncIfNecessary(void);
  448. private:
  449.     GLUI_Node     glut_windows;
  450.     void (*glut_idle_CB)(void);
  451.     void          add_cb_to_glut_window(int window,int cb_type,void *cb);
  452. };
  453. /**
  454.  This is the only GLUI_Master_Object in existence.
  455. */
  456. extern GLUI_Master_Object GLUI_Master;
  457. /************************************************************/
  458. /*                                                          */
  459. /*              Class for managing a GLUT window            */
  460. /*                                                          */
  461. /************************************************************/
  462. /**
  463.  A top-level window.  The GLUI_Master GLUT callback can route events
  464.  to the callbacks in this class, for arbitrary use by external users.
  465.  (see GLUI_Master_Object::set_glutKeyboardFunc).
  466.  
  467.  This entire approach seems to be superceded by the "subwindow" flavor
  468.  of GLUI.
  469. */
  470. class GLUI_Glut_Window : public GLUI_Node 
  471. {
  472. public:
  473.     GLUI_Glut_Window();
  474.     int    glut_window_id;
  475.     /*********** Pointers to GLUT callthrough functions *****/
  476.     void (*glut_keyboard_CB)(unsigned char, int, int);
  477.     void (*glut_special_CB)(int, int, int);
  478.     void (*glut_reshape_CB)(int, int);
  479.     void (*glut_passive_motion_CB)(int,int);
  480.     void (*glut_mouse_CB)(int,int,int,int);
  481.     void (*glut_visibility_CB)(int);
  482.     void (*glut_motion_CB)(int,int);
  483.     void (*glut_display_CB)(void);
  484.     void (*glut_entry_CB)(int);
  485. };
  486. /************************************************************/
  487. /*                                                          */
  488. /*       Main Window GLUI class (not user-level)            */
  489. /*                                                          */
  490. /************************************************************/
  491. /**
  492.   A GLUI_Main handles GLUT events for one window, routing them to the 
  493.   appropriate controls.  The central user-visible "GLUI" class 
  494.   inherits from this class; users should not allocate GLUT_Main objects.
  495.   
  496.   There's a separate GLUI_Main object for:
  497.    - Each top-level window with GUI stuff in it.
  498. - Each "subwindow" of another top-level window.
  499.   All the GLUI_Main objects are listed in GLUI_Master.gluis.
  500.   A better name for this class might be "GLUI_Environment";
  501.   this class provides the window-level context for every control.
  502. */
  503. class GLUI_Main : public GLUI_Node 
  504. {
  505.     /********** Friend classes *************/
  506.     friend class GLUI_Control;
  507.     friend class GLUI_Rotation;
  508.     friend class GLUI_Translation;
  509.     friend class GLUI;
  510.     friend class GLUI_Master_Object;
  511.     /*********** Friend functions **********/
  512.     friend void glui_mouse_func(int button, int state, int x, int y);
  513.     friend void glui_keyboard_func(unsigned char key, int x, int y);
  514.     friend void glui_special_func(int key, int x, int y);
  515.     friend void glui_passive_motion_func(int x, int y);
  516.     friend void glui_reshape_func( int w, int h );
  517.     friend void glui_visibility_func(int state);
  518.     friend void glui_motion_func(int x, int y);
  519.     friend void glui_entry_func(int state);
  520.     friend void glui_display_func( void );
  521.     friend void glui_idle_func(void);
  522.     friend void glui_parent_window_reshape_func( int w, int h );
  523.     friend void glui_parent_window_keyboard_func( unsigned char, int, int );
  524.     friend void glui_parent_window_special_func( int, int, int );
  525.     friend void glui_parent_window_mouse_func( int, int, int, int );
  526. protected:
  527.     /*** Variables ***/
  528.     int           main_gfx_window_id;
  529.     int           mouse_button_down;
  530.     int           glut_window_id;
  531.     int           top_level_glut_window_id;
  532.     GLUI_Control *active_control;
  533.     GLUI_Control *mouse_over_control;
  534.     GLUI_Panel   *main_panel;
  535.     enum buffer_mode_t {
  536.       buffer_front=1, ///< Draw updated controls directly to screen.
  537.       buffer_back=2   ///< Double buffering: postpone updates until next redraw.
  538.     };
  539.     buffer_mode_t buffer_mode; ///< Current drawing mode
  540.     int           curr_cursor;
  541.     int           w, h;
  542.     long          flags; 
  543.     bool          closing;
  544.     int           parent_window;
  545.     int           glui_id;
  546.     /********** Misc functions *************/
  547.     GLUI_Control  *find_control( int x, int y );
  548.     GLUI_Control  *find_next_control( GLUI_Control *control );
  549.     GLUI_Control  *find_next_control_rec( GLUI_Control *control );
  550.     GLUI_Control  *find_next_control_( GLUI_Control *control );
  551.     GLUI_Control  *find_prev_control( GLUI_Control *control );
  552.     void           create_standalone_window( const char *name, int x=-1, int y=-1 );
  553.     void           create_subwindow( int parent,int window_alignment );
  554.     void           setup_default_glut_callbacks( void );
  555.     void           mouse(int button, int state, int x, int y);
  556.     void           keyboard(unsigned char key, int x, int y);
  557.     void           special(int key, int x, int y);
  558.     void           passive_motion(int x, int y);
  559.     void           reshape( int w, int h );
  560.     void           visibility(int state);
  561.     void           motion(int x, int y);
  562.     void           entry(int state);
  563.     void           display( void );
  564.     void           idle(void);
  565.     int            needs_idle(void);
  566.     void (*glut_mouse_CB)(int, int, int, int);
  567.     void (*glut_keyboard_CB)(unsigned char, int, int);
  568.     void (*glut_special_CB)(int, int, int);
  569.     void (*glut_reshape_CB)(int, int);
  570.     /*********** Controls ************/
  571.     virtual int    add_control( GLUI_Node *parent, GLUI_Control *control );
  572.     /********** Constructors and Destructors ***********/
  573.     GLUI_Main( void );
  574. public:
  575.     GLUI_StdBitmaps  std_bitmaps;
  576.     GLUI_String      window_name;
  577.     RGBc             bkgd_color;
  578.     float            bkgd_color_f[3];
  579.     void            *font;
  580.     int              curr_modifiers;
  581.     void         adjust_glut_xy( int &x, int &y ) { x; y = h-y; }
  582.     void         activate_control( GLUI_Control *control, int how );
  583.     void         align_controls( GLUI_Control *control );
  584.     void         deactivate_current_control( void );
  585.     
  586.     /** Draw a 3D-look pushed-out box around this rectangle */
  587.     void         draw_raised_box( int x, int y, int w, int h );
  588.     /** Draw a 3D-look pushed-in box around this rectangle */
  589.     void         draw_lowered_box( int x, int y, int w, int h );
  590.     
  591.     /** Return true if this control should redraw itself immediately (front buffer);
  592.        Or queue up a redraw and return false if it shouldn't (back buffer).
  593.     */
  594.     bool         should_redraw_now(GLUI_Control *ctl);
  595.     
  596.     /** Switch to the appropriate draw buffer now.  Returns the old draw buffer. 
  597.        This routine should probably only be called from inside the GLUI_DrawingSentinal,
  598.        in glui_internal_control.h
  599.     */
  600.     int          set_current_draw_buffer();
  601.     /** Go back to using this draw buffer.  Undoes set_current_draw_buffer. */
  602.     void         restore_draw_buffer( int buffer_state );
  603.     
  604.     /** Pack, resize the window, and redraw all the controls. */
  605.     void         refresh();
  606.     
  607.     /** Redraw the main graphics window */
  608.     void         post_update_main_gfx();
  609.   
  610.     /** Recompute the sizes and positions of all controls */
  611.     void         pack_controls();
  612.     
  613.     void         close_internal();
  614.     void         check_subwindow_position();
  615.     void         set_ortho_projection();
  616.     void         set_viewport();
  617.     int          get_glut_window_id( void ) { return glut_window_id; } /* JVK */
  618. };
  619. /************************************************************/
  620. /*                                                          */
  621. /*       GLUI_Control: base class for all controls          */
  622. /*                                                          */
  623. /************************************************************/
  624. /**
  625.  All the GUI objects inherit from GLUI_Control: buttons,
  626.  checkboxes, labels, edit boxes, scrollbars, etc.
  627.  Most of the work of this class is in routing events,
  628.  like keystrokes, mouseclicks, redraws, and sizing events.
  629.  
  630.  Yes, this is a huge and hideous class.  It needs to be 
  631.  split up into simpler subobjects.  None of the data members
  632.  should be directly accessed by users (they should be protected,
  633.  not public); only subclasses.
  634. */
  635. class GLUI_Control : public GLUI_Node 
  636. {
  637. public:
  638. /** Onscreen coordinates */
  639.     int             w, h;                        /* dimensions of control */
  640.     int             x_abs, y_abs;
  641.     int             x_off, y_off_top, y_off_bot; /* INNER margins, by which child
  642.                                                     controls are indented */
  643.     int             contain_x, contain_y; 
  644.     int             contain_w, contain_h;
  645.     /* if this is a container control (e.g., 
  646.        radiogroup or panel) this indicated dimensions
  647.        of inner area in which controls reside */
  648. /** "activation" for tabbing between controls. */
  649.     int             active_type; ///< "GLUI_CONTROL_ACTIVE_..."
  650.     bool            active;       ///< If true, we've got the focus
  651.     bool            can_activate; ///< If false, remove from tab order.
  652.     bool            spacebar_mouse_click; ///< Spacebar simulates click.
  653.     
  654. /** Callbacks */
  655.     long            user_id;  ///< Integer to pass to callback function.
  656.     GLUI_CB         callback; ///< User callback function, or NULL.
  657. /** Variable value storage */
  658.     float           float_val;        /**< Our float value */
  659.     int             int_val;          /**< Our integer value */
  660.     float           float_array_val[GLUI_DEF_MAX_ARRAY];
  661.     int             float_array_size;
  662.     GLUI_String     text;       /**< The text inside this control */
  663.     
  664. /** "Live variable" updating */
  665.     void           *ptr_val;          /**< A pointer to the user's live variable value */
  666.     int             live_type;
  667.     bool            live_inited;
  668.     /* These variables store the last value that live variable was known to have. */
  669.     int             last_live_int;  
  670.     float           last_live_float;
  671.     GLUI_String     last_live_text;
  672.     float           last_live_float_array[GLUI_DEF_MAX_ARRAY];
  673.     
  674. /** Properties of our control */    
  675.     GLUI           *glui;       /**< Our containing event handler (NEVER NULL during event processing!) */
  676.     bool            is_container;  /**< Is this a container class (e.g., panel) */
  677.     int             alignment;
  678.     bool            enabled;    /**< Is this control grayed out? */
  679.     GLUI_String     name;       /**< The name of this control */
  680.     void           *font;       /**< Our glutbitmap font */
  681.     bool            collapsible, is_open;
  682.     GLUI_Node       collapsed_node;
  683.     bool            hidden; /* Collapsed controls (and children) are hidden */
  684.     int             char_widths[CHAR_WIDTH_HASH_SIZE][2]; /* Character width hash table */
  685. public:
  686.     /*** Get/Set values ***/
  687.     virtual void   set_name( const char *string );
  688.     virtual void   set_int_val( int new_int )         { int_val = new_int; output_live(true); }
  689.     virtual void   set_float_val( float new_float )   { float_val = new_float; output_live(true); }
  690.     virtual void   set_ptr_val( void *new_ptr )       { ptr_val = new_ptr; output_live(true); }
  691.     virtual void   set_float_array_val( float *array_ptr );
  692.     virtual float  get_float_val( void )              { return float_val; }
  693.     virtual int    get_int_val( void )                { return int_val; }
  694.     virtual void   get_float_array_val( float *array_ptr );
  695.     virtual int    get_id( void ) const { return user_id; }
  696.     virtual void   set_id( int id ) { user_id=id; }
  697.     virtual int mouse_down_handler( int local_x, int local_y )                 { local_x; local_y; return false; }
  698.     virtual int mouse_up_handler( int local_x, int local_y, bool inside )       { local_x; local_y; inside; return false; }
  699.     virtual int mouse_held_down_handler( int local_x, int local_y, bool inside) { local_x; local_y; inside; return false; }
  700.     virtual int key_handler( unsigned char key, int modifiers )                { key; modifiers; return false; }
  701.     virtual int special_handler( int key,int modifiers )                       { key; modifiers; return false; }
  702.     virtual void update_size( void )     { }
  703.     virtual void idle( void )            { }
  704.     virtual int  mouse_over( int state, int x, int y ) { state; x; y; return false; }
  705.     virtual void enable( void ); 
  706.     virtual void disable( void );
  707.     virtual void activate( int how )     { how; active = true; }
  708.     virtual void deactivate( void )     { active = false; }
  709.     /** Hide (shrink into a rollout) and unhide (expose from a rollout) */
  710.     void         hide_internal( int recurse );
  711.     void         unhide_internal( int recurse );
  712.     /** Return true if it currently makes sense to draw this class. */
  713.     int          can_draw( void ) { return (glui != NULL && hidden == false); }
  714.     /** Redraw this control.
  715.        In single-buffering mode (drawing to GL_FRONT), this is just 
  716.            a call to translate_and_draw_front (after a can_draw() check).
  717.        In double-buffering mode (drawing to GL_BACK), this queues up 
  718.           a redraw and returns false, since you shouldn't draw yet.
  719.     */
  720.     void          redraw(void);
  721.     
  722.     /** Redraw everybody in our window. */
  723.     void         redraw_window(void);
  724.     virtual void align( void );
  725.     void         pack( int x, int y );    /* Recalculate positions and offsets */
  726.     void         pack_old( int x, int y );    
  727.     void         draw_recursive( int x, int y );
  728.     int          set_to_glut_window( void );
  729.     void         restore_window( int orig );
  730.     void         translate_and_draw_front( void );
  731.     void         translate_to_origin( void ) 
  732.     {glTranslatef((float)x_abs+.5f,(float)y_abs+.5f,0.0f);}
  733.     virtual void draw( int x, int y )=0;
  734.     void         set_font( void *new_font );
  735.     void        *get_font( void );
  736.     int          string_width( const char *text );
  737.     int          string_width( const GLUI_String &str ) 
  738.     { return string_width(str.c_str()); }
  739.     int          char_width( char c );
  740.     void         draw_name( int x, int y );
  741.     void         draw_box_inwards_outline( int x_min, int x_max, 
  742.                                            int y_min, int y_max );
  743.     void         draw_box( int x_min, int x_max, int y_min, int y_max,
  744.                            float r, float g, float b );
  745.     void         draw_bkgd_box( int x_min, int x_max, int y_min, int y_max );
  746.     void         draw_emboss_box( int x_min, int x_max,int y_min,int y_max);
  747.     void         draw_string( const char *text );
  748.     void         draw_string( const GLUI_String &s ) 
  749.     { draw_string(s.c_str()); }
  750.     void         draw_char( char c );
  751.     void         draw_active_box( int x_min, int x_max, int y_min, int y_max );
  752.     void         set_to_bkgd_color( void );
  753.     void         set_w( int new_w );
  754.     void         set_h( int new_w );
  755.     void         set_alignment( int new_align );
  756.     void         sync_live( int recurse, int draw );  /* Reads live variable */
  757.     void         init_live( void );
  758.     void         output_live( int update_main_gfx );        /** Writes live variable **/
  759.     virtual void set_text( const char *t )   { t; }
  760.     void         execute_callback( void );
  761.     void         get_this_column_dims( int *col_x, int *col_y, 
  762.                                        int *col_w, int *col_h, 
  763.                                        int *col_x_off, int *col_y_off );
  764.     virtual bool needs_idle( void ) const;
  765.     virtual bool wants_tabs() const      { return false; }
  766.     GLUI_Control(void) 
  767.     {
  768.         x_off          = GLUI_XOFF;
  769.         y_off_top      = GLUI_YOFF;
  770.         y_off_bot      = GLUI_YOFF;
  771.         x_abs          = GLUI_XOFF;
  772.         y_abs          = GLUI_YOFF;
  773.         active         = false;
  774.         enabled        = true;
  775.         int_val        = 0;
  776.         last_live_int  = 0;
  777.         float_array_size = 0;
  778.         glui_format_str(name, "Control: %p", this);
  779.         float_val      = 0.0;
  780.         last_live_float = 0.0;
  781.         ptr_val        = NULL;
  782.         glui           = NULL;
  783.         w              = GLUI_DEFAULT_CONTROL_WIDTH;
  784.         h              = GLUI_DEFAULT_CONTROL_HEIGHT;
  785.         font           = NULL;
  786.         active_type    = GLUI_CONTROL_ACTIVE_MOUSEDOWN;
  787.         alignment      = GLUI_ALIGN_LEFT;
  788.         is_container   = false;
  789.         can_activate   = true;         /* By default, you can activate a control */
  790.         spacebar_mouse_click = true;    /* Does spacebar simulate a mouse click? */
  791.         live_type      = GLUI_LIVE_NONE;
  792.         text = "";
  793.         last_live_text == "";
  794.         live_inited    = false;
  795.         collapsible    = false;
  796.         is_open        = true;
  797.         hidden         = false;
  798.         memset(char_widths, -1, sizeof(char_widths)); /* JVK */
  799.         int i;
  800.         for( i=0; i<GLUI_DEF_MAX_ARRAY; i++ )
  801.             float_array_val[i] = last_live_float_array[i] = 0.0;
  802.     }
  803.     virtual ~GLUI_Control();
  804. };
  805. /************************************************************/
  806. /*                                                          */
  807. /*               Button class (container)                   */
  808. /*                                                          */
  809. /************************************************************/
  810. /**
  811.   An onscreen, clickable button--an outlined label that 
  812.   can be clicked.  When clicked, a button
  813.   calls its GLUI_CB callback with its ID.
  814. */
  815. class GLUI_Button : public GLUI_Control
  816. {
  817. public:
  818.     bool currently_inside;
  819.     int  mouse_down_handler( int local_x, int local_y );
  820.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  821.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  822.     int  key_handler( unsigned char key,int modifiers );
  823.     void draw( int x, int y );
  824.     void draw_pressed( void );
  825.     void draw_text( int sunken );
  826.     void update_size( void );
  827. /**
  828.  Create a new button.
  829.  
  830.   @param parent The panel our object is inside; or the main GLUI object.
  831.   @param name The text inside the button.
  832.   @param id Optional ID number, to pass to the optional callback function.
  833.   @param callback Optional callback function, taking either the int ID or control.
  834. */
  835.     GLUI_Button( GLUI_Node *parent, const char *name, 
  836.                  int id=-1, GLUI_CB cb=GLUI_CB() );
  837.     GLUI_Button( void ) { common_init(); };
  838. protected:
  839.     void common_init(void) {
  840.         glui_format_str(name, "Button: %p", this );
  841.         h            = GLUI_BUTTON_SIZE;
  842.         w            = 100;
  843.         alignment    = GLUI_ALIGN_CENTER;
  844.         can_activate = true;
  845.     }
  846. };
  847. /************************************************************/
  848. /*                                                          */
  849. /*               Checkbox class (container)                 */
  850. /*                                                          */
  851. /************************************************************/
  852. /**
  853.  A checkbox, which can be checked on or off.  Can be linked
  854.  to an int value, which gets 1 for on and 0 for off.
  855. */
  856. class GLUI_Checkbox : public GLUI_Control
  857. {
  858. public:
  859.     int  orig_value;
  860.     bool currently_inside;
  861.     int  text_x_offset;
  862.     int  mouse_down_handler( int local_x, int local_y );
  863.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  864.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  865.     int  key_handler( unsigned char key,int modifiers );
  866.     void update_size( void );
  867.     void draw( int x, int y );
  868.     void draw_active_area( void );
  869.     void draw_empty_box( void );
  870.     void set_int_val( int new_val );
  871. /**
  872.  Create a new checkbox object.
  873.  
  874.   @param parent The panel our object is inside; or the main GLUI object.
  875.   @param name Label next to our checkbox.
  876.   @param value_ptr Optional integer value to attach to this checkbox.  When the 
  877.      checkbox is checked or unchecked, *value_ptr will also be changed. ("Live Vars").
  878.   @param id Optional ID number, to pass to the optional callback function.
  879.   @param callback Optional callback function, taking either the int ID or control.
  880. */
  881.     GLUI_Checkbox(GLUI_Node *parent, const char *name, int *value_ptr=NULL,
  882.                   int id=-1, GLUI_CB callback=GLUI_CB());
  883.     GLUI_Checkbox( void ) { common_init(); }
  884. protected:
  885.     void common_init(void) {
  886.         glui_format_str( name, "Checkbox: %p", this );
  887.         w              = 100;
  888.         h              = GLUI_CHECKBOX_SIZE;
  889.         orig_value     = -1;
  890.         text_x_offset  = 18;
  891.         can_activate   = true;
  892.         live_type      = GLUI_LIVE_INT;   /* This control has an 'int' live var */
  893.     }
  894. };
  895. /************************************************************/
  896. /*                                                          */
  897. /*               Column class                               */
  898. /*                                                          */
  899. /************************************************************/
  900. /**
  901.  A GLUI_Column object separates all previous controls
  902.  from subsequent controls with a vertical bar.
  903. */
  904. class GLUI_Column : public GLUI_Control
  905. {
  906. public:
  907.     void draw( int x, int y );
  908. /**
  909.  Create a new column, which separates the previous controls
  910.  from subsequent controls.
  911.  
  912.   @param parent The panel our object is inside; or the main GLUI object.
  913.   @param draw_bar If true, draw a visible bar between new and old controls.
  914. */
  915.     GLUI_Column( GLUI_Node *parent, int draw_bar = true );
  916.     GLUI_Column( void ) { common_init(); }
  917. protected:
  918.     void common_init() {
  919.         w            = 0;
  920.         h            = 0;
  921.         int_val      = 0;
  922.         can_activate = false;
  923.     }
  924. };
  925. /************************************************************/
  926. /*                                                          */
  927. /*               Panel class (container)                    */
  928. /*                                                          */
  929. /************************************************************/
  930. /**
  931.  A GLUI_Panel contains a group of related controls.
  932. */
  933. class GLUI_Panel : public GLUI_Control
  934. {
  935. public:
  936. /**
  937.  Create a new panel.  A panel groups together a set of related controls.
  938.  
  939.   @param parent The outer panel our panel is inside; or the main GLUI object.
  940.   @param name The string name at the top of our panel.
  941.   @param type Optional style to display the panel with--GLUI_PANEL_EMBOSSED by default.
  942.       GLUI_PANEL_RAISED causes the panel to appear higher than the surroundings.
  943.       GLUI_PANEL_NONE causes the panel's outline to be invisible.
  944. */
  945.     GLUI_Panel( GLUI_Node *parent, const char *name, 
  946.                 int type=GLUI_PANEL_EMBOSSED );
  947.     GLUI_Panel() { common_init(); }
  948.     void draw( int x, int y );
  949.     void set_name( const char *text );
  950.     void set_type( int new_type );
  951.     void update_size( void );
  952. protected:
  953.     void common_init( void ) {
  954.         w            = 300;
  955.         h            = GLUI_DEFAULT_CONTROL_HEIGHT + 7;
  956.         int_val      = GLUI_PANEL_EMBOSSED;
  957.         alignment    = GLUI_ALIGN_CENTER;
  958.         is_container = true; 
  959.         can_activate = false;
  960.         name="";
  961.     };
  962. };
  963. /************************************************************/
  964. /*                                                          */
  965. /*               File Browser class (container)             */
  966. /*                         JVK                              */
  967. /************************************************************/
  968. /**
  969.  A list of files the user can select from.
  970. */
  971. class GLUI_FileBrowser : public GLUI_Panel
  972. {
  973. public:
  974. /**
  975.  Create a new list of files the user can select from.
  976.  
  977.   @param parent The panel our object is inside; or the main GLUI object.
  978.   @param name Prompt to give to the user at the top of the file browser.
  979.   @param frame_type Optional style to display the panel with--GLUI_PANEL_EMBOSSED by default.
  980.       GLUI_PANEL_RAISED causes the panel to appear higher than the surroundings.
  981.       GLUI_PANEL_NONE causes the panel's outline to be invisible.
  982.   @param id Optional ID number, to pass to the optional callback function.
  983.   @param callback Optional callback function, taking either the int ID or control.
  984. */
  985.     GLUI_FileBrowser( GLUI_Node *parent, 
  986.                       const char *name,
  987.                       int frame_type = GLUI_PANEL_EMBOSSED,
  988.                       int user_id = -1,
  989.                       GLUI_CB callback = GLUI_CB());
  990.     GLUI_List *list;
  991.     GLUI_String current_dir;
  992.     void fbreaddir(const char *);
  993.     static void dir_list_callback(GLUI_Control*);
  994.     void set_w(int w);
  995.     void set_h(int h);
  996.     const char* get_file() { return file.c_str(); }
  997.     void set_allow_change_dir(int c) { allow_change_dir = c; }
  998. protected:
  999.     void common_init() 
  1000.     {
  1001.         w            = GLUI_DEFAULT_CONTROL_WIDTH;
  1002.         h            = GLUI_DEFAULT_CONTROL_HEIGHT;
  1003.         int_val      = GLUI_PANEL_EMBOSSED;
  1004.         alignment    = GLUI_ALIGN_CENTER;
  1005.         is_container = true; 
  1006.         can_activate = false;
  1007.         allow_change_dir = true;
  1008.         last_item    = -1;
  1009.         user_id      = -1;
  1010.         name         = "";
  1011.         current_dir  = ".";
  1012.         file         = "";
  1013.     };
  1014. private:
  1015.     int last_item;
  1016.     GLUI_String file;
  1017.     int allow_change_dir;
  1018. };
  1019. /************************************************************/
  1020. /*                                                          */
  1021. /*               Rollout class (container)                  */
  1022. /*                                                          */
  1023. /************************************************************/
  1024. /**
  1025.  A rollout contains a set of controls,
  1026.  like a panel, but can be collapsed to just the name.
  1027. */
  1028. class GLUI_Rollout : public GLUI_Panel
  1029. {
  1030. public:
  1031. /**
  1032.  Create a new rollout.  A rollout contains a set of controls,
  1033.  like a panel, but can be collapsed to just the name.
  1034.  
  1035.   @param parent The panel our object is inside; or the main GLUI object.
  1036.   @param name String to show at the top of the rollout.
  1037.   @param open Optional boolean.  If true (the default), the rollout's controls are displayed.
  1038.     If false, the rollout is closed to display only the name.
  1039.   @param type Optional style to display the panel with--GLUI_PANEL_EMBOSSED by default.
  1040.       GLUI_PANEL_RAISED causes the panel to appear higher than the surroundings.
  1041.       GLUI_PANEL_NONE causes the panel's outline to be invisible.
  1042. */
  1043.     GLUI_Rollout( GLUI_Node *parent, const char *name, int open=true, 
  1044.                   int type=GLUI_PANEL_EMBOSSED );
  1045.     GLUI_Rollout( void ) { common_init(); }
  1046.     
  1047.     
  1048.     bool        currently_inside, initially_inside;
  1049.     GLUI_Button  button;
  1050.     void draw( int x, int y );
  1051.     void draw_pressed( void );
  1052.     int mouse_down_handler( int local_x, int local_y );
  1053.     int mouse_up_handler( int local_x, int local_y, bool inside );
  1054.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1055.         
  1056.     void  open( void ); 
  1057.     void  close( void );
  1058.     void update_size( void );
  1059. protected:
  1060.     void common_init() {
  1061.         currently_inside = false;
  1062.         initially_inside = false;
  1063.         can_activate     = true;
  1064.         is_container     = true;
  1065.         h                = GLUI_DEFAULT_CONTROL_HEIGHT + 7;
  1066.         w                = GLUI_DEFAULT_CONTROL_WIDTH;
  1067.         y_off_top        = 21;
  1068.         collapsible      = true;
  1069.         name = "";
  1070.     }
  1071. };
  1072. /************************************************************/
  1073. /*                                                          */
  1074. /*               Tree    Panel class (container)            */
  1075. /*                         JVK                              */
  1076. /************************************************************/
  1077. /**
  1078.   One collapsible entry in a GLUI_TreePanel.
  1079. */
  1080. class GLUI_Tree : public GLUI_Panel
  1081. {
  1082. public:
  1083.     GLUI_Tree(GLUI_Node *parent, const char *name, 
  1084.               int open=false, int inset=0);
  1085. private:
  1086.     int level;   // how deep is this node
  1087.     float red;   //Color coding of column line
  1088.     float green;
  1089.     float blue;
  1090.     float lred;   //Color coding of level name
  1091.     float lgreen;
  1092.     float lblue;
  1093.     int id;
  1094.     GLUI_Column *column;
  1095.     int is_current;          // Whether this tree is the
  1096.     // current root in a treePanel
  1097.     int child_number;
  1098.     int format;
  1099. public:
  1100.     bool        currently_inside, initially_inside;
  1101.     GLUI_Button  button;
  1102.     GLUI_String  level_name; // level name, eg: 1.1.2, III, or 3
  1103.     GLUI_TreePanel *panel; 
  1104.     void draw( int x, int y );
  1105.     void draw_pressed( void );
  1106.     int mouse_down_handler( int local_x, int local_y );
  1107.     int mouse_up_handler( int local_x, int local_y, bool inside );
  1108.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1109.     void set_column(GLUI_Column *c) { column = c; }
  1110.     void  open( void ); 
  1111.     void  close( void );
  1112.     /*   void set_name( const char *text )   { panel.set_name( text ); }; */
  1113.     void update_size( void );
  1114.     void set_id(int i) { id = i; }
  1115.     void set_level(int l) { level = l; }
  1116.     void set_format(int f) { format = f; }
  1117.     void set_current(int c) { is_current = c; }
  1118.     int get_id() { return id; }
  1119.     int get_level() { return level; }
  1120.     int get_child_number() { return child_number; }
  1121.     void enable_bar() { if (column) { column->int_val = 1;  set_color(red, green, blue); } }
  1122.     void disable_bar() { if (column) { column->int_val = 0;  } } 
  1123.     void set_child_number(int c) { child_number = c; } 
  1124.     void set_level_color(float r, float g, float b) { 
  1125.         lred = r;
  1126.         lgreen = g;
  1127.         lblue  = b;
  1128.     }
  1129.     void set_color(float r, float g, float b) { 
  1130.         red = r;
  1131.         green = g;
  1132.         blue  = b;
  1133.     }
  1134. protected:
  1135.     void common_init()
  1136.     {
  1137.         currently_inside = false;
  1138.         initially_inside = false;
  1139.         can_activate     = true;
  1140.         is_container     = true;
  1141.         h                = GLUI_DEFAULT_CONTROL_HEIGHT + 7;
  1142.         w                = GLUI_DEFAULT_CONTROL_WIDTH;
  1143.         y_off_top        = 21;
  1144.         collapsible      = true;
  1145.         red              = .5;
  1146.         green            = .5;
  1147.         blue             = .5;
  1148.         lred             = 0;
  1149.         lgreen           = 0;
  1150.         lblue            = 0;
  1151.         column           = NULL;
  1152.         is_current       = 0;
  1153.         child_number     = 0;
  1154.         format           = 0;
  1155.         panel            = NULL;
  1156.         name             = "";
  1157.         level_name       = "";
  1158.         level            = 0;
  1159.     
  1160.     };
  1161. };
  1162. /************************************************************/
  1163. /*                                                          */
  1164. /*               TreePanel class (container) JVK            */
  1165. /*                                                          */
  1166. /************************************************************/
  1167. /**
  1168.   Manages, maintains, and formats a tree of GLUI_Tree objects.
  1169.   These are shown in a heirarchical, collapsible display.
  1170.   
  1171.   FIXME: There's an infinite loop in the traversal code (OSL 2006/06)
  1172. */
  1173. class GLUI_TreePanel : public GLUI_Panel 
  1174. {
  1175. public:
  1176.     GLUI_TreePanel(GLUI_Node *parent, const char *name,
  1177.                    bool open=false, int inset=0);
  1178.     int max_levels;
  1179.     int next_id;
  1180.     int format;
  1181.     float red;
  1182.     float green;
  1183.     float blue;
  1184.     float lred;
  1185.     float lgreen;
  1186.     float lblue;
  1187.     int root_children;
  1188.     /* These variables allow the tree panel to traverse the tree
  1189.        using only two function calls. (Well, four, if you count 
  1190.        going in reverse */
  1191.     GLUI_Tree    *curr_branch; /* Current Branch */
  1192.     GLUI_Panel *curr_root;   /* Current Root */
  1193. public:
  1194.     void            set_color(float r, float g, float b); 
  1195.     void            set_level_color(float r, float g, float b);
  1196.     void            set_format(int f) { format = f; }
  1197.     /* Adds branch to curr_root */
  1198.     GLUI_Tree *     ab(const char *name, GLUI_Tree *root = NULL);
  1199.     /* Goes up one level, resets curr_root and curr_branch to parents*/
  1200.     void            fb(GLUI_Tree *branch= NULL);
  1201.     /* Deletes the curr_branch, goes up one level using fb */
  1202.     void            db(GLUI_Tree *branch = NULL);
  1203.     /* Finds the very last branch of curr_root, resets vars */
  1204.     void            descendBranch(GLUI_Panel *root = NULL);
  1205.     /* Resets curr_root and curr branch to TreePanel and lastChild */
  1206.     void            resetToRoot(GLUI_Panel *new_root = NULL);
  1207.     void            next( void );
  1208.     void            refresh( void );
  1209.     void            expand_all( void );
  1210.     void            collapse_all( void );
  1211.     void            update_all( void );
  1212.     void            initNode(GLUI_Tree *temp);
  1213.     void            formatNode(GLUI_Tree *temp);
  1214. protected:
  1215.     int uniqueID( void ) { next_id++; return next_id - 1; }
  1216.     void common_init() 
  1217.     {
  1218.         GLUI_Panel();
  1219.         next_id = 0;
  1220.         curr_root = this;
  1221.         curr_branch = NULL;
  1222.         red = .5;
  1223.         green = .5;
  1224.         blue = .5;
  1225.         root_children = 0;
  1226.     }
  1227. };
  1228. /************************************************************/
  1229. /*                                                          */
  1230. /*                     User-Level GLUI class                */
  1231. /*                                                          */
  1232. /************************************************************/
  1233. class GLUI_Rotation;
  1234. class GLUI_Translation;
  1235. /**
  1236.  The main user-visible interface object to GLUI.
  1237.  
  1238. */
  1239. class GLUI : public GLUI_Main 
  1240. {
  1241. public:
  1242. /** DEPRECATED interface for creating new GLUI objects */
  1243.     int   add_control( GLUI_Control *control ) { return main_panel->add_control(control); }
  1244.     void  add_column( int draw_bar = true );
  1245.     void  add_column_to_panel( GLUI_Panel *panel, int draw_bar = true );
  1246.     void  add_separator( void );
  1247.     void  add_separator_to_panel( GLUI_Panel *panel );
  1248.     GLUI_RadioGroup 
  1249.     *add_radiogroup( int *live_var=NULL,
  1250.                      int user_id=-1,GLUI_CB callback=GLUI_CB());
  1251.     GLUI_RadioGroup 
  1252.     *add_radiogroup_to_panel(  GLUI_Panel *panel,
  1253.                                int *live_var=NULL,
  1254.                                int user_id=-1, GLUI_CB callback=GLUI_CB() );
  1255.     GLUI_RadioButton
  1256.     *add_radiobutton_to_group(  GLUI_RadioGroup *group,
  1257.                                 const char *name );
  1258.     GLUI_Listbox *add_listbox( const char *name, int *live_var=NULL,
  1259.                                int id=-1, GLUI_CB callback=GLUI_CB() );
  1260.     GLUI_Listbox *add_listbox_to_panel( GLUI_Panel *panel,
  1261.                                         const char *name, int *live_var=NULL,
  1262.                                         int id=-1, GLUI_CB callback=GLUI_CB());
  1263.     GLUI_Rotation *add_rotation( const char *name, float *live_var=NULL,
  1264.                                  int id=-1, GLUI_CB callback=GLUI_CB() );
  1265.     GLUI_Rotation *add_rotation_to_panel( GLUI_Panel *panel,
  1266.                                           const char *name, float *live_var=NULL,
  1267.                                           int id=-1, GLUI_CB callback=GLUI_CB());
  1268.   
  1269.     GLUI_Translation *add_translation( const char *name,
  1270.                                        int trans_type, float *live_var=NULL,
  1271.                                        int id=-1, GLUI_CB callback=GLUI_CB() );
  1272.     GLUI_Translation *add_translation_to_panel( 
  1273.         GLUI_Panel *panel, const char *name, 
  1274.         int trans_type, float *live_var=NULL,
  1275.         int id=-1, GLUI_CB callback=GLUI_CB());
  1276.   
  1277.     GLUI_Checkbox  *add_checkbox( const char *name, 
  1278.                                   int *live_var=NULL,
  1279.                                   int id=-1, GLUI_CB callback=GLUI_CB());
  1280.     GLUI_Checkbox  *add_checkbox_to_panel( GLUI_Panel *panel, const char *name, 
  1281.                                            int *live_var=NULL, int id=-1, 
  1282.                                            GLUI_CB callback=GLUI_CB());
  1283.     GLUI_Button  *add_button( const char *name, int id=-1, 
  1284.                               GLUI_CB callback=GLUI_CB());
  1285.     GLUI_Button  *add_button_to_panel( GLUI_Panel *panel, const char *name, 
  1286.                                        int id=-1, GLUI_CB callback=GLUI_CB() );
  1287.     GLUI_StaticText  *add_statictext( const char *name );
  1288.     GLUI_StaticText  *add_statictext_to_panel( GLUI_Panel *panel, const char *name );
  1289.     GLUI_EditText  *add_edittext( const char *name, 
  1290.                                   int data_type=GLUI_EDITTEXT_TEXT,
  1291.                                   void*live_var=NULL,
  1292.                                   int id=-1, GLUI_CB callback=GLUI_CB() );
  1293.     GLUI_EditText  *add_edittext_to_panel( GLUI_Panel *panel, 
  1294.                                            const char *name,
  1295.                                            int data_type=GLUI_EDITTEXT_TEXT,
  1296.                                            void *live_var=NULL, int id=-1, 
  1297.                                            GLUI_CB callback=GLUI_CB() );
  1298.     GLUI_EditText  *add_edittext( const char *name, GLUI_String& live_var, 
  1299.                                   int id=-1, GLUI_CB callback=GLUI_CB() );
  1300.     GLUI_EditText  *add_edittext_to_panel( GLUI_Panel *panel, const char *name, 
  1301.                                            GLUI_String& live_var, int id=-1,
  1302.                                            GLUI_CB callback=GLUI_CB() );
  1303.     GLUI_Spinner  *add_spinner( const char *name, 
  1304.                                 int data_type=GLUI_SPINNER_INT,
  1305.                                 void *live_var=NULL,
  1306.                                 int id=-1, GLUI_CB callback=GLUI_CB() );
  1307.     GLUI_Spinner  *add_spinner_to_panel( GLUI_Panel *panel, 
  1308.                                          const char *name,
  1309.                                          int data_type=GLUI_SPINNER_INT,
  1310.                                          void *live_var=NULL,
  1311.                                          int id=-1,
  1312.                                          GLUI_CB callback=GLUI_CB() );
  1313.     GLUI_Panel     *add_panel( const char *name, int type=GLUI_PANEL_EMBOSSED );
  1314.     GLUI_Panel     *add_panel_to_panel( GLUI_Panel *panel, const char *name, 
  1315.                                         int type=GLUI_PANEL_EMBOSSED );
  1316.     GLUI_Rollout   *add_rollout( const char *name, int open=true,
  1317.                                  int type=GLUI_PANEL_EMBOSSED);
  1318.     GLUI_Rollout   *add_rollout_to_panel( GLUI_Panel *panel, const char *name, 
  1319.                                           int open=true,
  1320.                                           int type=GLUI_PANEL_EMBOSSED);
  1321. /** Set the window where our widgets should be displayed. */
  1322.     void            set_main_gfx_window( int window_id );
  1323.     int             get_glut_window_id( void ) { return glut_window_id; }
  1324.     void            enable( void ) { main_panel->enable(); }
  1325.     void            disable( void );
  1326.     void            sync_live( void );
  1327.     void            close( void );
  1328.     void            show( void );
  1329.     void            hide( void );
  1330.     /***** GLUT callback setup functions *****/
  1331.     /*
  1332.       void set_glutDisplayFunc(void (*f)(void));
  1333.       void set_glutReshapeFunc(void (*f)(int width, int height));
  1334.       void set_glutKeyboardFunc(void (*f)(unsigned char key, int x, int y));
  1335.       void set_glutSpecialFunc(void (*f)(int key, int x, int y));
  1336.       void set_glutMouseFunc(void (*f)(int button, int state, int x, int y));
  1337.       void set_glutMotionFunc(void (*f)(int x, int y));
  1338.       void set_glutPassiveMotionFunc(void (*f)(int x, int y));
  1339.       void set_glutEntryFunc(void (*f)(int state));
  1340.       void set_glutVisibilityFunc(void (*f)(int state));
  1341.       void set_glutInit( int *argcp, const char **argv );
  1342.       void set_glutInitWindowSize(int width, int height);
  1343.       void set_glutInitWindowPosition(int x, int y);
  1344.       void set_glutInitDisplayMode(unsigned int mode);
  1345.       int  set_glutCreateWindow(const char *name);
  1346.     */
  1347.     /***** Constructors and desctructors *****/
  1348.     int init( const char *name, long flags, int x, int y, int parent_window );
  1349. protected:
  1350.     virtual int add_control( GLUI_Node *parent, GLUI_Control *control ) {
  1351.         return GLUI_Main::add_control( parent, control );
  1352.     }
  1353. };
  1354. /************************************************************/
  1355. /*                                                          */
  1356. /*               EditText class                             */
  1357. /*                                                          */
  1358. /************************************************************/
  1359. class GLUI_EditText : public GLUI_Control
  1360. {
  1361. public:
  1362.     int                 has_limits;
  1363.     int                 data_type;
  1364.     GLUI_String         orig_text;
  1365.     int                 insertion_pt;
  1366.     int                 title_x_offset;
  1367.     int                 text_x_offset;
  1368.     int                 substring_start; /*substring that gets displayed in box*/
  1369.     int                 substring_end;  
  1370.     int                 sel_start, sel_end;  /* current selection */
  1371.     int                 num_periods;
  1372.     int                 last_insertion_pt;
  1373.     float               float_low, float_high;
  1374.     int                 int_low, int_high;
  1375.     GLUI_Spinner       *spinner;
  1376.     int                 debug;
  1377.     int                 draw_text_only;
  1378.     int  mouse_down_handler( int local_x, int local_y );
  1379.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1380.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1381.     int  key_handler( unsigned char key,int modifiers );
  1382.     int  special_handler( int key, int modifiers );
  1383.     void activate( int how );
  1384.     void deactivate( void );
  1385.     void draw( int x, int y );
  1386.     int  mouse_over( int state, int x, int y );
  1387.     int  find_word_break( int start, int direction );
  1388.     int  substring_width( int start, int end );
  1389.     void clear_substring( int start, int end );
  1390.     int  find_insertion_pt( int x, int y );
  1391.     int  update_substring_bounds( void );
  1392.     void update_and_draw_text( void );
  1393.     void draw_text( int x, int y );
  1394.     void draw_insertion_pt( void );
  1395.     void set_numeric_text( void );
  1396.     void update_x_offsets( void );
  1397.     void update_size( void );
  1398.     void set_float_limits( float low,float high,int limit_type=GLUI_LIMIT_CLAMP);
  1399.     void set_int_limits( int low, int high, int limit_type=GLUI_LIMIT_CLAMP );
  1400.     void set_float_val( float new_val );
  1401.     void set_int_val( int new_val );
  1402.     void set_text( const char *text );
  1403.     void set_text( const GLUI_String &s) { set_text(s.c_str()); }
  1404.     const char *get_text()               { return text.c_str(); }
  1405.     void dump( FILE *out, const char *text );
  1406.     // Constructor, no live variable
  1407.     GLUI_EditText( GLUI_Node *parent, const char *name,
  1408.                    int text_type=GLUI_EDITTEXT_TEXT,
  1409.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  1410.     // Constructor, int live variable
  1411.     GLUI_EditText( GLUI_Node *parent, const char *name,
  1412.                    int *live_var,
  1413.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  1414.     // Constructor, float live variable
  1415.     GLUI_EditText( GLUI_Node *parent, const char *name,
  1416.                    float *live_var,
  1417.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  1418.     // Constructor, char* live variable
  1419.     GLUI_EditText( GLUI_Node *parent, const char *name, 
  1420.                    char *live_var,
  1421.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  1422.     // Constructor, std::string live variable
  1423.     GLUI_EditText( GLUI_Node *parent, const char *name, 
  1424.                    std::string &live_var,
  1425.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  1426.     // Deprecated constructor, only called internally
  1427.     GLUI_EditText( GLUI_Node *parent, const char *name,
  1428.                    int text_type, void *live_var,
  1429.                    int id, GLUI_CB callback );
  1430.     // Deprecated constructor, only called internally
  1431.     GLUI_EditText( void ) { common_init(); }
  1432. protected:
  1433.     void common_init( void ) {
  1434.         h                     = GLUI_EDITTEXT_HEIGHT;
  1435.         w                     = GLUI_EDITTEXT_WIDTH;
  1436.         title_x_offset        = 0;
  1437.         text_x_offset         = 55;
  1438.         insertion_pt          = -1;
  1439.         last_insertion_pt     = -1;
  1440.         name                  = "";
  1441.         substring_start       = 0;
  1442.         data_type             = GLUI_EDITTEXT_TEXT;
  1443.         substring_end         = 2;
  1444.         num_periods           = 0;
  1445.         has_limits            = GLUI_LIMIT_NONE;
  1446.         sel_start             = 0;
  1447.         sel_end               = 0;
  1448.         active_type           = GLUI_CONTROL_ACTIVE_PERMANENT;
  1449.         can_activate          = true;
  1450.         spacebar_mouse_click  = false;
  1451.         spinner               = NULL;
  1452.         debug                 = false;
  1453.         draw_text_only        = false;
  1454.     }
  1455.     void common_construct( GLUI_Node *parent, const char *name, 
  1456.                            int data_type, int live_type, void *live_var,
  1457.                            int id, GLUI_CB callback );
  1458. };
  1459. /************************************************************/
  1460. /*                                                          */
  1461. /*               CommandLine class                          */
  1462. /*                                                          */
  1463. /************************************************************/
  1464. class GLUI_CommandLine : public GLUI_EditText
  1465. {
  1466. public:
  1467.     typedef GLUI_EditText Super;
  1468.     enum { HIST_SIZE = 100 };
  1469.     std::vector<GLUI_String> hist_list;
  1470.     int  curr_hist;
  1471.     int  oldest_hist;
  1472.     int  newest_hist;
  1473.     bool commit_flag;
  1474. public:
  1475.     int  key_handler( unsigned char key,int modifiers );
  1476.     int  special_handler( int key,int modifiers );
  1477.     void deactivate( void );
  1478.     virtual const char *get_history( int command_number ) const
  1479.     { return hist_list[command_number - oldest_hist].c_str(); }
  1480.     virtual GLUI_String& get_history_str( int command_number )
  1481.     { return hist_list[command_number - oldest_hist]; }
  1482.     virtual const GLUI_String& get_history_str( int command_number ) const
  1483.     { return hist_list[command_number - oldest_hist]; }
  1484.     virtual void recall_history( int history_number );
  1485.     virtual void scroll_history( int direction );
  1486.     virtual void add_to_history( const char *text );
  1487.     virtual void reset_history( void );
  1488.     void dump( FILE *out, const char *text );
  1489.     GLUI_CommandLine( GLUI_Node *parent, const char *name, void *live_var=NULL,
  1490.                       int id=-1, GLUI_CB callback=GLUI_CB() );
  1491.     GLUI_CommandLine( void ) { common_init(); }
  1492. protected:
  1493.     void common_init() {
  1494.         hist_list.resize(HIST_SIZE);
  1495.         curr_hist = 0;
  1496.         oldest_hist = 0;
  1497.         newest_hist = 0;
  1498.         commit_flag = false;
  1499.     }
  1500. };
  1501. /************************************************************/
  1502. /*                                                          */
  1503. /*              RadioGroup class (container)                */
  1504. /*                                                          */
  1505. /************************************************************/
  1506. class GLUI_RadioGroup : public GLUI_Control
  1507. {
  1508. public:
  1509.     int  num_buttons;
  1510.     void draw( int x, int y );
  1511.     void set_name( const char *text );
  1512.     void set_int_val( int int_val ); 
  1513.     void set_selected( int int_val );
  1514.     void draw_group( int translate );
  1515.     GLUI_RadioGroup( GLUI_Node *parent, int *live_var=NULL,
  1516.                      int user_id=-1,GLUI_CB callback=GLUI_CB() );
  1517.     GLUI_RadioGroup( void ) { common_init(); }
  1518. protected:
  1519.     void common_init( void ) {
  1520.         x_off         = 0;
  1521.         y_off_top     = 0;
  1522.         y_off_bot     = 0;
  1523.         is_container  = true;
  1524.         w             = 300;
  1525.         h             = 300;
  1526.         num_buttons   = 0;
  1527.         name          = "";
  1528.         can_activate  = false;
  1529.         live_type     = GLUI_LIVE_INT;
  1530.     }
  1531. };
  1532. /************************************************************/
  1533. /*                                                          */
  1534. /*               RadioButton class (container)              */
  1535. /*                                                          */
  1536. /************************************************************/
  1537. class GLUI_RadioButton : public GLUI_Control
  1538. {
  1539. public:
  1540.     int orig_value;
  1541.     bool currently_inside;
  1542.     int text_x_offset;
  1543.     int  mouse_down_handler( int local_x, int local_y );
  1544.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1545.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1546.     void draw( int x, int y );
  1547.     void update_size( void );
  1548.     void draw_active_area( void );
  1549.     void draw_checked( void );
  1550.     void draw_unchecked( void );
  1551.     void draw_O( void );
  1552.     GLUI_RadioButton( GLUI_RadioGroup *group, const char *name );
  1553.     GLUI_RadioGroup *group;
  1554. protected:
  1555.     void common_init()
  1556.     {
  1557.         glui_format_str( name, "RadioButton: %p", (void *) this );
  1558.         h              = GLUI_RADIOBUTTON_SIZE;
  1559.         group          = NULL;
  1560.         orig_value     = -1;
  1561.         text_x_offset  = 18;
  1562.         can_activate   = true;
  1563.     }
  1564. };
  1565. /************************************************************/
  1566. /*                                                          */
  1567. /*               Separator class (container)                */
  1568. /*                                                          */
  1569. /************************************************************/
  1570. class GLUI_Separator : public GLUI_Control
  1571. {
  1572. public:
  1573.     void draw( int x, int y );
  1574.     GLUI_Separator( GLUI_Node *parent );
  1575.     GLUI_Separator( void ) { common_init(); }
  1576. protected:
  1577.     void common_init() {
  1578.         w            = 100;
  1579.         h            = GLUI_SEPARATOR_HEIGHT;
  1580.         can_activate = false;
  1581.     }
  1582. };
  1583. #define  GLUI_SPINNER_ARROW_WIDTH   12
  1584. #define  GLUI_SPINNER_ARROW_HEIGHT   8
  1585. #define  GLUI_SPINNER_ARROW_Y        2
  1586. #define  GLUI_SPINNER_STATE_NONE     0
  1587. #define  GLUI_SPINNER_STATE_UP       1
  1588. #define  GLUI_SPINNER_STATE_DOWN     2
  1589. #define  GLUI_SPINNER_STATE_BOTH     3
  1590. #define  GLUI_SPINNER_DEFAULT_GROWTH_EXP   1.05f
  1591. /************************************************************/
  1592. /*                                                          */
  1593. /*               Spinner class (container)                  */
  1594. /*                                                          */
  1595. /************************************************************/
  1596.  
  1597. class GLUI_Spinner : public GLUI_Control
  1598. {
  1599. public:
  1600.     // Constructor, no live var
  1601.     GLUI_Spinner( GLUI_Node* parent, const char *name, 
  1602.                   int data_type=GLUI_SPINNER_INT, int id=-1, GLUI_CB callback=GLUI_CB() );
  1603.     // Constructor, int live var
  1604.     GLUI_Spinner( GLUI_Node* parent, const char *name, 
  1605.                   int *live_var, int id=-1, GLUI_CB callback=GLUI_CB() );
  1606.     // Constructor, float live var
  1607.     GLUI_Spinner( GLUI_Node* parent, const char *name, 
  1608.                   float *live_var, int id=-1, GLUI_CB callback=GLUI_CB() );
  1609.     // Deprecated constructor
  1610.     GLUI_Spinner( GLUI_Node* parent, const char *name, 
  1611.                   int data_type,
  1612.                   void *live_var,
  1613.                   int id=-1, GLUI_CB callback=GLUI_CB() );
  1614.     // Deprecated constructor
  1615.     GLUI_Spinner( void ) { common_init(); }
  1616.     bool          currently_inside;
  1617.     int           state;
  1618.     float         growth, growth_exp;
  1619.     int           last_x, last_y;
  1620.     int           data_type;
  1621.     int           callback_count;
  1622.     int           last_int_val;
  1623.     float         last_float_val;
  1624.     int           first_callback;
  1625.     float         user_speed;
  1626.     GLUI_EditText *edittext;
  1627.     int  mouse_down_handler( int local_x, int local_y );
  1628.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1629.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1630.     int  key_handler( unsigned char key,int modifiers );
  1631.     int  special_handler(   int key,int modifiers );
  1632.     void draw( int x, int y );
  1633.     void draw_pressed( void );
  1634.     void draw_unpressed( void );
  1635.     void draw_text( int sunken );
  1636.     void update_size( void );
  1637.     void set_float_limits( float low,float high,int limit_type=GLUI_LIMIT_CLAMP);
  1638.     void set_int_limits( int low, int high,int limit_type=GLUI_LIMIT_CLAMP);
  1639.     int  find_arrow( int local_x, int local_y );
  1640.     void do_drag( int x, int y );
  1641.     void do_callbacks( void );
  1642.     void do_click( void );
  1643.     void idle( void );
  1644.     bool needs_idle( void ) const;
  1645.     const char *get_text( void );
  1646.     void set_float_val( float new_val );
  1647.     void set_int_val( int new_val );
  1648.     float  get_float_val( void );
  1649.     int    get_int_val( void );
  1650.     void increase_growth( void );
  1651.     void reset_growth( void );
  1652.     void set_speed( float speed ) { user_speed = speed; }
  1653. protected:
  1654.     void common_init() {
  1655.         glui_format_str( name, "Spinner: %p", this );
  1656.         h            = GLUI_EDITTEXT_HEIGHT;
  1657.         w            = GLUI_EDITTEXT_WIDTH;
  1658.         x_off        = 0;
  1659.         y_off_top    = 0;
  1660.         y_off_bot    = 0;
  1661.         can_activate = true;
  1662.         state        = GLUI_SPINNER_STATE_NONE;
  1663.         edittext     = NULL;
  1664.         growth_exp   = GLUI_SPINNER_DEFAULT_GROWTH_EXP;
  1665.         callback_count = 0;
  1666.         first_callback = true;
  1667.         user_speed   = 1.0;
  1668.     }
  1669.     void common_construct( GLUI_Node* parent, const char *name, 
  1670.                            int data_type, void *live_var,
  1671.                            int id, GLUI_CB callback );
  1672. };
  1673. /************************************************************/
  1674. /*                                                          */
  1675. /*               StaticText class                           */
  1676. /*                                                          */
  1677. /************************************************************/
  1678. class GLUI_StaticText : public GLUI_Control
  1679. {
  1680. public:
  1681.     void set_text( const char *text );
  1682.     void draw( int x, int y );
  1683.     void draw_text( void );
  1684.     void update_size( void );
  1685.     void erase_text( void );
  1686.     GLUI_StaticText(GLUI_Node *parent, const char *name);
  1687.     GLUI_StaticText( void ) { common_init(); }
  1688. protected:
  1689.     void common_init() {
  1690.         h       = GLUI_STATICTEXT_SIZE;
  1691.         name    = "";
  1692.         can_activate  = false;
  1693.     }
  1694. };
  1695. /************************************************************/
  1696. /*                                                          */
  1697. /*               TextBox class - JVK                        */
  1698. /*                                                          */
  1699. /************************************************************/
  1700. class GLUI_TextBox : public GLUI_Control
  1701. {
  1702. public:
  1703.     /* GLUI Textbox - JVK */
  1704.     GLUI_TextBox(GLUI_Node *parent, GLUI_String &live_var,
  1705.                  bool scroll = false, int id=-1, GLUI_CB callback=GLUI_CB() );
  1706.     GLUI_TextBox( GLUI_Node *parent,
  1707.                   bool scroll = false, int id=-1,
  1708.                   GLUI_CB callback=GLUI_CB() );
  1709.     GLUI_String         orig_text;
  1710.     int                 insertion_pt;
  1711.     int                 substring_start; /*substring that gets displayed in box*/
  1712.     int                 substring_end;  
  1713.     int                 sel_start, sel_end;  /* current selection */
  1714.     int                 last_insertion_pt;
  1715.     int                 debug;
  1716.     int                 draw_text_only;
  1717.     int                 tab_width;
  1718.     int                 start_line;
  1719.     int                 num_lines;
  1720.     int                 curr_line;
  1721.     int                 visible_lines;
  1722.     int                 insert_x;        /* Similar to "insertion_pt", these variables keep */
  1723.     int                 insert_y;        /* track of where the ptr is, but in pixels */
  1724.     int                 keygoal_x;       /* where up down keys would like to put insertion pt*/
  1725.     GLUI_Scrollbar     *scrollbar;
  1726.     int  mouse_down_handler( int local_x, int local_y );
  1727.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1728.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1729.     int  key_handler( unsigned char key,int modifiers );
  1730.     int  special_handler( int key,int modifiers );
  1731.   
  1732.     void activate( int how );
  1733.     void deactivate( void );
  1734.     void enable( void );
  1735.     void disable( void );
  1736.     void draw( int x, int y );
  1737.     int  mouse_over( int state, int x, int y );
  1738.     int get_box_width();
  1739.     int  find_word_break( int start, int direction );
  1740.     int  substring_width( int start, int end, int initial_width=0 );
  1741.     void clear_substring( int start, int end );
  1742.     int  find_insertion_pt( int x, int y );
  1743.     int  update_substring_bounds( void );
  1744.     void update_and_draw_text( void );
  1745.     void draw_text( int x, int y );
  1746.     void draw_insertion_pt( void );
  1747.     void update_x_offsets( void );
  1748.     void update_size( void );
  1749.     void set_text( const char *text );
  1750.     const char *get_text( void )         { return text.c_str(); }
  1751.     void dump( FILE *out, char *text );
  1752.     void set_tab_w(int w) { tab_width = w; }
  1753.     void set_start_line(int l) { start_line = l; }
  1754.     static void scrollbar_callback(GLUI_Control*);
  1755.     bool wants_tabs( void ) const { return true; }
  1756. protected:
  1757.     void common_init()
  1758.     {
  1759.         h                     = GLUI_TEXTBOX_HEIGHT;
  1760.         w                     = GLUI_TEXTBOX_WIDTH;
  1761.         tab_width             = GLUI_TAB_WIDTH;
  1762.         num_lines             = 0;
  1763.         visible_lines         = 0;
  1764.         start_line            = 0;
  1765.         curr_line             = 0;
  1766.         insert_y              = -1;
  1767.         insert_x              = -1;
  1768.         insertion_pt          = -1;
  1769.         last_insertion_pt     = -1;
  1770.         name[0]               = '';
  1771.         substring_start       = 0;
  1772.         substring_end         = 2;
  1773.         sel_start             = 0;
  1774.         sel_end               = 0;
  1775.         active_type           = GLUI_CONTROL_ACTIVE_PERMANENT;
  1776.         can_activate          = true;
  1777.         spacebar_mouse_click  = false;
  1778.         scrollbar             = NULL;
  1779.         debug                 = false;
  1780.         draw_text_only        = false;
  1781.     }
  1782.     void common_construct(
  1783.         GLUI_Node *parent, GLUI_String *live_var, 
  1784.         bool scroll, int id, GLUI_CB callback); 
  1785. };
  1786. /************************************************************/
  1787. /*                                                          */
  1788. /*                   List class - JVK                       */
  1789. /*                                                          */
  1790. /************************************************************/
  1791. class GLUI_List_Item : public GLUI_Node 
  1792. {
  1793. public:
  1794.     GLUI_String text;
  1795.     int         id;
  1796. };
  1797. /************************************************************/
  1798. /*                                                          */
  1799. /*               List class - JVK                           */
  1800. /*                                                          */
  1801. /************************************************************/
  1802. class GLUI_List : public GLUI_Control
  1803. {
  1804. public:
  1805.     /* GLUI List - JVK */
  1806.     GLUI_List( GLUI_Node *parent, bool scroll = false,
  1807.                int id=-1, GLUI_CB callback=GLUI_CB() );
  1808.                /*, GLUI_Control *object = NULL 
  1809.                ,GLUI_InterObject_CB obj_cb = NULL);*/
  1810.     GLUI_List( GLUI_Node *parent,
  1811.                GLUI_String& live_var, bool scroll = false, 
  1812.                int id=-1, 
  1813.                GLUI_CB callback=GLUI_CB()
  1814.                /*,GLUI_Control *object = NULL */
  1815.                /*,GLUI_InterObject_CB obj_cb = NULL*/);
  1816.     GLUI_String         orig_text;
  1817.     int                 debug;
  1818.     int                 draw_text_only;
  1819.     int                 start_line;
  1820.     int                 num_lines;
  1821.     int                 curr_line;
  1822.     int                 visible_lines;
  1823.     GLUI_Scrollbar      *scrollbar;
  1824.     GLUI_List_Item      items_list;
  1825.     GLUI_Control        *associated_object;
  1826.     GLUI_CB             obj_cb;
  1827.     int                 cb_click_type;
  1828.     int                 last_line;
  1829.     int                 last_click_time;
  1830.     int  mouse_down_handler( int local_x, int local_y );
  1831.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1832.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1833.     int  key_handler( unsigned char key,int modifiers );
  1834.     int  special_handler( int key,int modifiers );
  1835.   
  1836.     void activate( int how );
  1837.     void deactivate( void );
  1838.     void draw( int x, int y );
  1839.     int  mouse_over( int state, int x, int y );
  1840.     int get_box_width();
  1841.     int  find_word_break( int start, int direction );
  1842.     int  substring_width( const char *t, int start, int end );
  1843.     int  find_line( int x, int y );
  1844.     void update_and_draw_text( void );
  1845.     void draw_text( const char *t, int selected, int x, int y );
  1846.     void update_size( void );
  1847.     int  add_item( int id, const char *text );
  1848.     int  delete_item( const char *text );
  1849.     int  delete_item( int id );
  1850.     int  delete_all();
  1851.     GLUI_List_Item *get_item_ptr( const char *text );
  1852.     GLUI_List_Item *get_item_ptr( int id );
  1853.     void dump( FILE *out, const char *text );
  1854.     void set_start_line(int l) { start_line = l; }
  1855.     static void scrollbar_callback(GLUI_Control*);
  1856.     int get_current_item() { return curr_line; }
  1857.     void set_click_type(int d) {
  1858.         cb_click_type = d; }
  1859.     void set_object_callback(GLUI_CB cb=GLUI_CB(), GLUI_Control*obj=NULL)
  1860.     { obj_cb=cb; associated_object=obj; }
  1861. protected:
  1862.     void common_init()
  1863.     {
  1864.         h                     = GLUI_LIST_HEIGHT;
  1865.         w                     = GLUI_LIST_WIDTH;
  1866.         num_lines             = 0;
  1867.         visible_lines         = 0;
  1868.         start_line            = 0;
  1869.         curr_line             = 0;
  1870.         name[0]               = '';
  1871.         active_type           = GLUI_CONTROL_ACTIVE_PERMANENT;
  1872.         can_activate          = true;
  1873.         spacebar_mouse_click  = false;
  1874.         scrollbar             = NULL;
  1875.         debug                 = false;
  1876.         draw_text_only        = false;
  1877.         cb_click_type         = GLUI_SINGLE_CLICK;
  1878.         last_line             = -1;
  1879.         last_click_time       = 0;
  1880.         associated_object     = NULL;
  1881.     };
  1882.     void common_construct(
  1883.         GLUI_Node *parent,
  1884.         GLUI_String* live_var, bool scroll,
  1885.         int id,
  1886.         GLUI_CB callback
  1887.         /*,GLUI_Control *object*/
  1888.         /*,GLUI_InterObject_CB obj_cb*/);
  1889. };
  1890. /************************************************************/
  1891. /*                                                          */
  1892. /*               Scrollbar class - JVK                      */
  1893. /*                                                          */
  1894. /************************************************************/
  1895.  
  1896. class GLUI_Scrollbar : public GLUI_Control
  1897. {
  1898. public:
  1899.     // Constructor, no live var
  1900.     GLUI_Scrollbar( GLUI_Node *parent,
  1901.                     const char *name, 
  1902.                     int horz_vert=GLUI_SCROLL_HORIZONTAL,
  1903.                     int data_type=GLUI_SCROLL_INT,
  1904.                     int id=-1, GLUI_CB callback=GLUI_CB() 
  1905.                     /*,GLUI_Control *object = NULL*/
  1906.                     /*,GLUI_InterObject_CB obj_cb = NULL*/
  1907.                     );
  1908.     // Constructor, int live var
  1909.     GLUI_Scrollbar( GLUI_Node *parent, const char *name, int horz_vert,
  1910.                     int *live_var,
  1911.                     int id=-1, GLUI_CB callback=GLUI_CB() 
  1912.                     /*,GLUI_Control *object = NULL*/
  1913.                     /*,GLUI_InterObject_CB obj_cb = NULL*/
  1914.                     );
  1915.     // Constructor, float live var
  1916.     GLUI_Scrollbar( GLUI_Node *parent, const char *name, int horz_vert,
  1917.                     float *live_var,
  1918.                     int id=-1, GLUI_CB callback=GLUI_CB()
  1919.                     /*,GLUI_Control *object = NULL*/
  1920.                     /*,GLUI_InterObject_CB obj_cb = NULL*/
  1921.                     );
  1922.     bool          currently_inside;
  1923.     int           state;
  1924.     float         growth, growth_exp;
  1925.     int           last_x, last_y;
  1926.     int           data_type;
  1927.     int           callback_count;
  1928.     int           last_int_val;  ///< Used to prevent repeated callbacks.
  1929.     float         last_float_val;
  1930.     int           first_callback;
  1931.     float         user_speed;
  1932.     float         float_min, float_max;
  1933.     int           int_min, int_max;
  1934.     int           horizontal;
  1935.     double     last_update_time; ///< GLUI_Time() we last advanced scrollbar.
  1936.     double     velocity_limit; ///< Maximum distance to advance per second.
  1937.     int box_length;
  1938.     int box_start_position;
  1939.     int box_end_position;
  1940.     int track_length;
  1941.     /* Rather than directly access an Editbox or Textbox for 
  1942.        changing variables, a pointer to some object is defined
  1943.        along with a static callback in the form func(void *, int) -
  1944.        the int is the new value, the void * must be cast to that
  1945.        particular object type before use.
  1946.     */
  1947.     void *        associated_object; /* Lets the Spinner manage it's own callbacks */
  1948.     GLUI_CB       object_cb; /* function pointer to object call_back */
  1949.     int  mouse_down_handler( int local_x, int local_y );
  1950.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  1951.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  1952.     int  key_handler( unsigned char key,int modifiers );
  1953.     int  special_handler( int key,int modifiers );
  1954.   
  1955.     void draw( int x, int y );
  1956.     void draw_pressed( void );
  1957.     void draw_unpressed( void );
  1958.     void draw_text( int sunken );
  1959.     void update_size( void );
  1960.     void set_int_limits( int low, int high,int limit_type=GLUI_LIMIT_CLAMP);
  1961.     void set_float_limits( float low,float high,int limit_type=GLUI_LIMIT_CLAMP);
  1962.     int  find_arrow( int local_x, int local_y );
  1963.     void do_drag( int x, int y );
  1964.     void do_callbacks( void );
  1965.     void draw_scroll( void );
  1966.     void do_click( void );
  1967.     void idle( void );
  1968.     bool needs_idle( void ) const;
  1969.     void set_int_val( int new_val );
  1970.     void set_float_val( float new_val );
  1971.     void increase_growth( void );
  1972.     void reset_growth( void );
  1973.     void set_speed( float speed ) { user_speed = speed; };
  1974.     void update_scroll_parameters();
  1975.     void set_object_callback(GLUI_CB cb=GLUI_CB(), GLUI_Control*obj=NULL)
  1976.     { object_cb=cb; associated_object=obj; }
  1977. protected:
  1978.     void common_init ( void );
  1979.     void common_construct(
  1980.         GLUI_Node *parent,
  1981.         const char *name, 
  1982.         int horz_vert,
  1983.         int data_type, void* live_var,
  1984.         int id, GLUI_CB callback
  1985.         /*,GLUI_Control *object
  1986.         ,GLUI_InterObject_CB obj_cb*/
  1987.         );
  1988.     virtual void draw_scroll_arrow(int arrowtype, int x, int y);
  1989.     virtual void draw_scroll_box(int x, int y, int w, int h);
  1990. };
  1991. /************************************************************/
  1992. /*                                                          */
  1993. /*                   Listbox class                          */
  1994. /*                                                          */
  1995. /************************************************************/
  1996. class GLUI_Listbox_Item : public GLUI_Node 
  1997. {
  1998. public:
  1999.     GLUI_String text;
  2000.     int         id;
  2001. };
  2002. class GLUI_Listbox : public GLUI_Control
  2003. {
  2004. public:
  2005.     GLUI_String       curr_text;
  2006.     GLUI_Listbox_Item items_list;
  2007.     int               depressed;
  2008.     int  orig_value;
  2009.     bool currently_inside;
  2010.     int  text_x_offset, title_x_offset;
  2011.     int  glut_menu_id;
  2012.     int  mouse_down_handler( int local_x, int local_y );
  2013.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  2014.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  2015.     int  key_handler( unsigned char key,int modifiers );
  2016.     int  special_handler( int key,int modifiers );
  2017.     void update_size( void );
  2018.     void draw( int x, int y );
  2019.     int  mouse_over( int state, int x, int y );
  2020.     void set_int_val( int new_val );
  2021.     void dump( FILE *output );
  2022.     int  add_item( int id, const char *text );
  2023.     int  delete_item( const char *text );
  2024.     int  delete_item( int id );
  2025.     int  sort_items( void );
  2026.     int  do_selection( int item );
  2027.     GLUI_Listbox_Item *get_item_ptr( const char *text );
  2028.     GLUI_Listbox_Item *get_item_ptr( int id );
  2029.   
  2030.     GLUI_Listbox( GLUI_Node *parent,
  2031.                   const char *name, int *live_var=NULL,
  2032.                   int id=-1, GLUI_CB callback=GLUI_CB() );
  2033.     GLUI_Listbox( void ) { common_init(); }
  2034. protected:
  2035.     /** Change w and return true if we need to be widened to fit the current item. */
  2036.     bool recalculate_item_width( void );
  2037.     void common_init() {
  2038.         glui_format_str( name, "Listbox: %p", this );
  2039.         w              = GLUI_EDITTEXT_WIDTH;
  2040.         h              = GLUI_EDITTEXT_HEIGHT;
  2041.         orig_value     = -1;
  2042.         title_x_offset = 0;
  2043.         text_x_offset  = 55;
  2044.         can_activate   = true;
  2045.         curr_text      = "";
  2046.         live_type      = GLUI_LIVE_INT;  /* This has an integer live var */
  2047.         depressed      = false;
  2048.         glut_menu_id   = -1;
  2049.     }
  2050.     ~GLUI_Listbox();
  2051. };
  2052. /************************************************************/
  2053. /*                                                          */
  2054. /*              Mouse_Interaction class                     */
  2055. /*                                                          */
  2056. /************************************************************/
  2057. /**
  2058.   This is the superclass of translation and rotation widgets.
  2059. */
  2060. class GLUI_Mouse_Interaction : public GLUI_Control
  2061. {
  2062. public:
  2063.     /*int  get_main_area_size( void ) { return MIN( h-18,  */
  2064.     int            draw_active_area_only;
  2065.     int  mouse_down_handler( int local_x, int local_y );
  2066.     int  mouse_up_handler( int local_x, int local_y, bool inside );
  2067.     int  mouse_held_down_handler( int local_x, int local_y, bool inside );
  2068.     int  special_handler( int key, int modifiers );
  2069.     void update_size( void );
  2070.     void draw( int x, int y );
  2071.     void draw_active_area( void );
  2072.     /***  The following methods (starting with "iaction_") need to
  2073.           be overloaded  ***/
  2074.     virtual int  iaction_mouse_down_handler( int local_x, int local_y ) = 0;
  2075.     virtual int  iaction_mouse_up_handler( int local_x, int local_y, bool inside )=0;
  2076.     virtual int  iaction_mouse_held_down_handler( int local_x, int local_y, bool inside )=0;
  2077.     virtual int  iaction_special_handler( int key, int modifiers )=0;
  2078.     virtual void iaction_draw_active_area_persp( void )=0;
  2079.     virtual void iaction_draw_active_area_ortho( void )=0;
  2080.     virtual void iaction_dump( FILE *output )=0;
  2081.     virtual void iaction_init( void ) = 0;
  2082.   
  2083.     GLUI_Mouse_Interaction( void ) {
  2084.         glui_format_str( name, "Mouse_Interaction: %p", this );
  2085.         w              = GLUI_MOUSE_INTERACTION_WIDTH;
  2086.         h              = GLUI_MOUSE_INTERACTION_HEIGHT;
  2087.         can_activate   = true;
  2088.         live_type      = GLUI_LIVE_NONE;
  2089.         alignment      = GLUI_ALIGN_CENTER;
  2090.         draw_active_area_only = false;
  2091.     }
  2092. };
  2093. /************************************************************/
  2094. /*                                                          */
  2095. /*                   Rotation class                         */
  2096. /*                                                          */
  2097. /************************************************************/
  2098. /**
  2099.   An onscreen rotation controller--allows the user to interact with
  2100.   a 3D rotation via a spaceball-like interface.
  2101. */
  2102. class GLUI_Rotation : public GLUI_Mouse_Interaction
  2103. {
  2104. public:
  2105.     Arcball        *ball;
  2106.     GLUquadricObj *quadObj;
  2107.     bool           can_spin, spinning;
  2108.     float          damping;
  2109.   
  2110.     int  iaction_mouse_down_handler( int local_x, int local_y );
  2111.     int  iaction_mouse_up_handler( int local_x, int local_y, bool inside );
  2112.     int  iaction_mouse_held_down_handler( int local_x, int local_y, bool inside );
  2113.     int  iaction_special_handler( int key, int modifiers );
  2114.     void iaction_init( void ) { init_ball(); }
  2115.     void iaction_draw_active_area_persp( void );
  2116.     void iaction_draw_active_area_ortho( void );
  2117.     void iaction_dump( FILE *output );
  2118.     /*  void update_size( void ); */
  2119.     /*  void draw( int x, int y ); */
  2120.     /*  int mouse_over( int state, int x, int y ); */
  2121.     void setup_texture( void );
  2122.     void setup_lights( void );
  2123.     void draw_ball( float radius );
  2124.     void init_ball( void );
  2125.     void reset( void );
  2126.     bool needs_idle( void ) const;
  2127.     void idle( void );
  2128.     void copy_float_array_to_ball( void );
  2129.     void copy_ball_to_float_array( void );
  2130.     void set_spin( float damp_factor );
  2131.     GLUI_Rotation( GLUI_Node *parent, const char *name, float *live_var=NULL,
  2132.                    int id=-1, GLUI_CB callback=GLUI_CB() );
  2133.     GLUI_Rotation(void) { common_init(); }
  2134. protected:
  2135.     void common_init();
  2136. };
  2137. /************************************************************/
  2138. /*                                                          */
  2139. /*                   Translation class                      */
  2140. /*                                                          */
  2141. /************************************************************/
  2142. /**
  2143.   An onscreen translation controller--allows the user to interact with
  2144.   a 3D translation.
  2145. */
  2146. class GLUI_Translation : public GLUI_Mouse_Interaction
  2147. {
  2148. public:
  2149.     int trans_type;  /* Is this an XY or a Z controller? */
  2150.     int down_x, down_y;
  2151.     float scale_factor;
  2152.     GLUquadricObj *quadObj;
  2153.     int   trans_mouse_code;
  2154.     float orig_x, orig_y, orig_z;
  2155.     int   locked;
  2156.     int  iaction_mouse_down_handler( int local_x, int local_y );
  2157.     int  iaction_mouse_up_handler( int local_x, int local_y, bool inside );
  2158.     int  iaction_mouse_held_down_handler( int local_x, int local_y, bool inside );
  2159.     int  iaction_special_handler( int key, int modifiers );
  2160.     void iaction_init( void ) { }
  2161.     void iaction_draw_active_area_persp( void );
  2162.     void iaction_draw_active_area_ortho( void );
  2163.     void iaction_dump( FILE *output );
  2164.     void set_speed( float s ) { scale_factor = s; }
  2165.     void setup_texture( void );
  2166.     void setup_lights( void );
  2167.     void draw_2d_arrow( int radius, int filled, int orientation ); 
  2168.     void draw_2d_x_arrows( int radius );
  2169.     void draw_2d_y_arrows( int radius );
  2170.     void draw_2d_z_arrows( int radius );
  2171.     void draw_2d_xy_arrows( int radius );
  2172.     int  get_mouse_code( int x, int y );
  2173.     /* Float array is either a single float (for single-axis controls),
  2174.        or two floats for X and Y (if an XY controller) */
  2175.     float get_z( void ) {       return float_array_val[0];  }
  2176.     float get_x( void ) {       return float_array_val[0];  }
  2177.     float get_y( void ) {
  2178.         if ( trans_type == GLUI_TRANSLATION_XY )    return float_array_val[1];
  2179.         else return float_array_val[0];
  2180.     }
  2181.     void  set_z( float val );
  2182.     void  set_x( float val );
  2183.     void  set_y( float val );
  2184.     void  set_one_val( float val, int index );
  2185.     GLUI_Translation( GLUI_Node *parent, const char *name,
  2186.                       int trans_type, float *live_var=NULL,
  2187.                       int id=-1, GLUI_CB callback=GLUI_CB() );
  2188.     GLUI_Translation( void ) { common_init(); }
  2189. protected:
  2190.     void common_init() {
  2191.         locked              = GLUI_TRANSLATION_LOCK_NONE;
  2192.         glui_format_str( name, "Translation: %p", this );
  2193.         w                   = GLUI_MOUSE_INTERACTION_WIDTH;
  2194.         h                   = GLUI_MOUSE_INTERACTION_HEIGHT;
  2195.         can_activate        = true;
  2196.         live_type           = GLUI_LIVE_FLOAT_ARRAY;
  2197.         float_array_size    = 0;
  2198.         alignment           = GLUI_ALIGN_CENTER;
  2199.         trans_type          = GLUI_TRANSLATION_XY;
  2200.         scale_factor        = 1.0;
  2201.         quadObj             = NULL;
  2202.         trans_mouse_code    = GLUI_TRANSLATION_MOUSE_NONE;
  2203.     }
  2204. };
  2205. /********** Misc functions *********************/
  2206. int _glutBitmapWidthString( void *font, const char *s );
  2207. void _glutBitmapString( void *font, const char *s );
  2208. /********** Our own callbacks for glut *********/
  2209. /* These are the callbacks that we pass to glut.  They take
  2210.    some action if necessary, then (possibly) call the user-level
  2211.    glut callbacks.  
  2212. */
  2213. void glui_display_func( void );
  2214. void glui_reshape_func( int w, int h );
  2215. void glui_keyboard_func(unsigned char key, int x, int y);
  2216. void glui_special_func(int key, int x, int y);
  2217. void glui_mouse_func(int button, int state, int x, int y);
  2218. void glui_motion_func(int x, int y);
  2219. void glui_passive_motion_func(int x, int y);
  2220. void glui_entry_func(int state);
  2221. void glui_visibility_func(int state);
  2222. void glui_idle_func(void);
  2223. void glui_parent_window_reshape_func( int w, int h );
  2224. void glui_parent_window_keyboard_func(unsigned char key, int x, int y);
  2225. void glui_parent_window_mouse_func(int, int, int, int );
  2226. void glui_parent_window_special_func(int key, int x, int y);
  2227. #endif