source: tags/ms_r18q1/WINDOW/aw_window.hxx

Last change on this file was 16961, checked in by westram, 6 years ago
  • partial merge from 'fix' into 'trunk'
    • refactored AW_device text output
      • reduces calls to strlen (using SizedCstr)
      • eliminated/modernized several parameters/functions (esp. in TextOverlayCallbacks)
  • adds: log:branches/fix@16939:16960
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 27.4 KB
Line 
1#ifndef AW_WINDOW_HXX
2#define AW_WINDOW_HXX
3
4#ifndef AW_BASE_HXX
5#include "aw_base.hxx"
6#endif
7#ifndef ARBDB_BASE_H
8#include <arbdb_base.h>
9#endif
10#ifndef ARB_ASSERT_H
11#include <arb_assert.h>
12#endif
13#ifndef AW_KEYSYM_HXX
14#include "aw_keysym.hxx"
15#endif
16#ifndef ARBTOOLS_H
17#include <arbtools.h>
18#endif
19#ifndef CB_H
20#include <cb.h>
21#endif
22
23class AW_window;
24class AW_xfig;
25class AW_device;
26struct AW_screen_area;
27struct GB_HASH;
28class AW_device_click;
29class AW_device_print;
30class AW_device_size;
31class AW_common;
32
33// --------------------------------------------------------------------------------
34
35#define AW_MESSAGE_TIME 2000
36#define AW_HEADER_MAIN  extern "C" { int XtAppInitialize(); } void aw_never_called_main() { XtAppInitialize(); }
37
38// ======= Used in Tune background function =================================
39#define TUNE_BUTTON    8
40#define TUNE_INPUT     (-TUNE_BUTTON)
41#define TUNE_SUBMENU   0
42#define TUNE_MENUTOPIC (-12)
43#define TUNE_BRIGHT    (256+30)
44#define TUNE_DARK      (-TUNE_BRIGHT)
45// ==========================================================================
46
47#ifndef AW_AT_HXX
48class AW_at;
49#endif
50
51enum AW_orientation { AW_HORIZONTAL, AW_VERTICAL };
52
53typedef const char *AW_label;       // label for buttons menus etc
54// "fsdf" simple label  // no '/' symbol !!!
55// "awarname/asdf"  // awar name (any '/' in string)
56// "#file.xpm"   // pixmap in $ARBHOME/lib/pixmaps/file.xpm
57
58const char *AW_get_pixmapPath(const char *pixmapName);
59
60void AW_POPDOWN(AW_window *);
61
62enum AW_event_type {
63    AW_Keyboard_Press   = 1,
64    AW_Keyboard_Release = 2,
65    AW_Mouse_Press      = 3,
66    AW_Mouse_Release    = 4,
67    AW_Mouse_Drag       = 5
68};
69
70enum AW_MouseButton {
71    AW_BUTTON_NONE   = 0,
72    AW_BUTTON_LEFT   = 1,
73    AW_BUTTON_MIDDLE = 2,
74    AW_BUTTON_RIGHT  = 3,
75    AW_WHEEL_UP      = 4,
76    AW_WHEEL_DOWN    = 5,
77};
78
79struct AW_event {
80    // fields always valid
81    AW_event_type type;             // AW_Keyboard or AW_Mouse
82    unsigned long time;             // time in msec, when event occurred
83    AW_key_mod    keymodifier;      // control, alt/meta (shift only for type == AW_Mouse)
84
85    // fields valid for type == AW_Mouse
86    AW_MouseButton button;
87    int            x, y;            // pointer x,y coordinates in the event window
88
89    // fields valid for type == AW_Keyboard
90    AW_key_code keycode;            // which key type was pressed
91    char        character;          // the c character
92
93    AW_event()
94        : type(AW_event_type(0)),
95          time(0),
96          keymodifier(AW_KEYMODE_NONE),
97          button(AW_BUTTON_NONE),
98          x(0),
99          y(0),
100          keycode(AW_KEY_NONE),
101          character(0)
102    {}
103};
104
105void AW_help_popup(UNFIXED, const char *help_file);
106inline WindowCallback makeHelpCallback(const char *helpfile) { return makeWindowCallback(AW_help_popup, helpfile); }
107
108void AW_help_entry_pressed(AW_window *);
109void AW_clock_cursor(AW_root *);
110void AW_normal_cursor(AW_root *);
111
112void AW_openURL(AW_root *aw_root, const char *url);
113
114typedef void (*AW_cb_struct_guard)();
115typedef WindowCallbackSimple AnyWinCB; // used to check whether function is contained in callback-list (does not check parameters!)
116
117class AW_cb : virtual Noncopyable {
118    WindowCallback cb;
119
120    AW_cb *next;
121
122    static AW_cb_struct_guard guard_before;
123    static AW_cb_struct_guard guard_after;
124    static AW_postcb_cb       postcb; // called after each cb triggered via interface
125
126public:
127    // private (read-only):
128    AW_window  *aw;
129    const char *help_text;
130    char       *id;
131
132    // real public section:
133    AW_cb(AW_window             *awi,
134          const WindowCallback&  wcb,
135          const char            *help_texti = NULp,
136          AW_cb                 *next       = NULp);
137
138    ~AW_cb() {
139        delete next; next = NULp;
140        free(id);
141    }
142
143    void run_callbacks();                           // runs the whole list
144    bool contains(AnyWinCB g);                      // test if contained in list
145    bool is_equal(const AW_cb& other) const;
146
147    int compare(const AW_cb& other) const { return cb<other.cb ? -1 : (other.cb<cb ? 1 : 0); }
148
149#if defined(ASSERTION_USED)
150    AW_CL get_cd1() const { return cb.inspect_CD1(); }
151    AW_CL get_cd2() const { return cb.inspect_CD2(); }
152#endif // DEBUG
153
154    static void set_AW_cb_guards(AW_cb_struct_guard before, AW_cb_struct_guard after) {
155        guard_before = before;
156        guard_after  = after;
157    }
158    static void set_AW_postcb_cb(AW_postcb_cb postcb_cb) {
159        postcb = postcb_cb;
160    }
161
162    static void useraction_init() {
163        if (guard_before) guard_before();
164    }
165    static void useraction_done(AW_window *aw) {
166        if (guard_after) guard_after();
167        if (postcb) postcb(aw);
168    }
169};
170
171
172enum {
173    AWM_DISABLED = 0,           // disabled items (used for dynamically dis-/enabled items)
174    AWM_BASIC    = 1,
175    AWM_EXP      = 2,
176    AWM_ALL      = AWM_BASIC|AWM_EXP
177};
178
179enum {
180    AWM_MASK_UNKNOWN = AWM_DISABLED,
181    AWM_MASK_DEFAULT = AWM_BASIC,
182    AWM_MASK_EXPERT  = AWM_ALL
183};
184
185typedef char *AW_pixmap;
186
187class  AW_window_Motif;
188class  AW_selection_list_entry;
189class  AW_selection_list;
190struct AW_option_menu_struct;
191struct aw_toggle_data;
192
193enum AW_at_storage_type {
194    AW_AT_SIZE_AND_ATTACH,
195    AW_AT_AUTO,
196    AW_AT_MAXSIZE,
197};
198struct AW_at_storage {
199    //! store/restore some properties from/to AW_at
200    virtual ~AW_at_storage() {}
201
202    // will be called via AW_window
203    virtual void store(const AW_at& at)   = 0;
204    virtual void restore(AW_at& at) const = 0;
205
206    static AW_at_storage *make(AW_window *aww, AW_at_storage_type type); // factory
207};
208
209enum AW_SizeRecalc {
210    AW_KEEP_SIZE      = 0,                          // do not resize
211    AW_RESIZE_DEFAULT = 1,                          // do resize to default size
212    AW_RESIZE_USER    = 2,                          // do resize to user size (or default size if that is bigger)
213    AW_RESIZE_ANY     = 3                           // keep AW_RESIZE_USER or set AW_RESIZE_DEFAULT
214};
215
216enum AW_PosRecalc {
217    AW_KEEP_POS            = 0,                     // do not change position on show
218    AW_REPOS_TO_CENTER     = 1,                     // center the window on show (unused atm)
219    AW_REPOS_TO_MOUSE      = 2,                     // move the window under the current mouse position
220    AW_REPOS_TO_MOUSE_ONCE = 3,                     // like AW_REPOS_TO_MOUSE, but only done once!
221};
222
223enum AW_ScalerType {
224    AW_SCALER_LINEAR,
225    AW_SCALER_EXP_LOWER,  // fine-tuned at lower border, big steps at upper border
226    AW_SCALER_EXP_UPPER,  // fine-tuned at upper border, big steps at lower border
227    AW_SCALER_EXP_CENTER, // fine-tuned at center, big steps at borders
228    AW_SCALER_EXP_BORDER, // fine-tuned at borders, big steps at center
229};
230
231class AW_ScalerTransformer {
232    AW_ScalerType type;
233public:
234    AW_ScalerTransformer(AW_ScalerType type_) : type(type_) {}
235
236    float scaler2awar(float scaler, AW_awar *awar); // [0..1] -> awar-range
237    float awar2scaler(AW_awar *awar); // returns [0..1]
238};
239
240class AW_window : virtual Noncopyable {
241    AW_SizeRecalc recalc_size_at_show;
242    AW_PosRecalc  recalc_pos_at_show;
243
244    WindowCallback *hide_cb;
245    bool            expose_callback_added;
246
247    AW_cb *focus_cb;
248
249    AW_xfig *xfig_data;
250    AW_at   *_at; /** < Defines the next position at which something will be inserted into the window.  */
251
252    int left_indent_of_horizontal_scrollbar;
253    int top_indent_of_vertical_scrollbar;
254
255    void all_menus_created() const;
256    void create_toggle(const char *var_name, aw_toggle_data *tdata);
257
258    int calculate_string_width(int columns) const;
259    int calculate_string_height(int columns, int offset) const;
260    char *align_string(const char *label_text, int columns);
261    void calculate_label_size(int *width, int *height, bool in_pixel, const char *non_at_label);
262
263protected:
264    AW_root *root;
265
266    void create_devices();
267    void set_background(const char *colorname, Widget w);
268
269    void wm_activate();                                // un-minimize window and give it the focus (use show_and_activate())
270
271public:
272
273    // ---------------------------------------- [start read-only section] @@@ should go private
274
275    AW_event         event;
276    unsigned long    click_time;
277    long             color_table_size;
278    AW_rgb          *color_table;
279    int              number_of_timed_title_changes;
280    AW_window_Motif *p_w;
281    AW_cb           *_callback;
282    AW_cb           *_d_callback;
283
284    // ---------------------------------------- [end read-only section]
285
286#if defined(IN_ARB_WINDOW)
287    // only used internal and in motif (alternative would be to move a bunch of code into AW_window)
288    const AW_at& get_at() const { return *_at; }
289    AW_at& get_at() { return *_at; }
290#endif
291
292    AW_window();
293    virtual ~AW_window();
294
295    const char    *window_local_awarname(const char *localname, bool tmp = true);
296    class AW_awar *window_local_awar(const char *localname, bool tmp = true);
297    void           create_window_variables();
298
299    void         recalc_pos_atShow(AW_PosRecalc pr);
300    void         recalc_size_atShow(enum AW_SizeRecalc sr);
301    AW_PosRecalc get_recalc_pos_atShow() const;
302
303    void allow_delete_window(bool allow_close);
304    void on_hide(const WindowCallback& call_on_hide);
305    void on_hide(WindowCallbackSimple call_on_hide) { on_hide(makeWindowCallback(call_on_hide)); }
306
307
308    void run_focus_callback();
309    void show_modal();
310    void set_window_title_intern(char *title);
311
312    void update_label(Widget widget, const char *var_value);
313    void update_toggle(Widget widget, const char *var_value, AW_CL cd);
314    void update_input_field(Widget widget, const char *var_value);
315    void update_text_field(Widget widget, const char *var_value);
316    void update_scaler(Widget widget, AW_awar *awar, AW_ScalerType scalerType);
317
318    void  create_invisible(int columns);
319    void *_create_option_entry(AW_VARIABLE_TYPE type, const char *name, const char *mnemonic, const char *name_of_color);
320    void  refresh_toggle_field(int toggle_field_number); 
321    void  _set_activate_callback(void *widget);
322    void  increment_at_commands(int width, int height);
323
324
325    AW_color_idx alloc_named_data_color(int colnum, const char *colorname);
326
327    // special for EDIT4
328    void _get_area_size(AW_area area, AW_screen_area *square);
329   
330    int label_widget(void *wgt, AW_label str, char *mnemonic = NULp, int width = 0, int alignment = 0);
331
332    // ------------------------------
333    //      The read only section
334
335    char *window_name;          //! window title
336    char *window_defaults_name; //! window id
337
338    int slider_pos_vertical;   //! current position of the vertical slider
339    int slider_pos_horizontal; //! current position of the horizontal slider
340
341    bool window_is_shown;
342
343    AW_screen_area *picture;      // the result of tell scrolled picture size
344
345    // --------------------------------
346    //      The real public section
347
348    AW_root *get_root() { return root; }
349    // ******************* Global layout functions **********************
350
351    void show(); // show newly created window or unhide hidden window (aka closed window)
352    void hide(); // hide (don't destroy) a window (<->show)
353
354    void activate() { show(); wm_activate(); }      // make_visible, pop window to front and give it the focus
355
356    bool is_shown() const;  // is window visible (== true) or hidden (== false). ?
357
358    void hide_or_notify(const char *error);
359
360    void    message(char *title, int ms);   // Set for ms milliseconds the title of the window
361    void    set_window_title(const char *title);   // Set the window title forever
362
363    const char *get_window_title() const;       // Get the window's title
364    const char *get_window_id() const { return window_defaults_name; } // Get the window's internal name
365
366    const char *local_id(const char *id) const;
367
368    void set_info_area_height(int height);
369    void set_bottom_area_height(int height);
370
371    // ******************* Input and Motion Events **********************
372
373    void set_popup_callback(const WindowCallback& wcb);
374    void set_focus_callback(const WindowCallback& wcb);
375    bool is_focus_callback(AnyWinCB f);
376
377    void set_expose_callback(AW_area area, const WindowCallback& wcb);
378    void set_resize_callback(AW_area area, const WindowCallback& wcb);
379
380private:
381    // motif relicts:
382    void set_expose_callback(AW_area area, WindowCallbackSimple cb) { set_expose_callback(area, makeWindowCallback(cb)); }
383    void set_resize_callback(AW_area area, WindowCallbackSimple cb) { set_resize_callback(area, makeWindowCallback(cb)); }
384public:
385
386    void set_input_callback(AW_area area, const WindowCallback& wcb);
387    void set_motion_callback(AW_area area, const WindowCallback& wcb);
388
389    void set_double_click_callback(AW_area area, const WindowCallback& wcb);
390
391    bool is_expose_callback(AW_area area, AnyWinCB f);
392    bool is_resize_callback(AW_area area, AnyWinCB f);
393
394    void get_event(AW_event *eventi) const;       // In an event callback get the events info
395
396    void force_expose(); // forces the window to expose instantly
397
398    // ******************* Get the devices **********************
399    AW_device *get_device(AW_area area);
400    AW_device_click *get_click_device(AW_area area, int mousex, int mousey, int max_distance);
401    AW_device_size *get_size_device(AW_area area);
402    AW_device_print *get_print_device(AW_area area);
403
404    AW_common *get_common(AW_area area);
405
406    // ************** Create the menu buttons *********
407
408    /**
409     * Creates a new top level menu.
410     * @param name     Name of the menu.
411     * @param mnemonic Shortcut (optional)
412     * @param mask     Experts only?
413     */
414    void create_menu(const char *name, const char *mnemonic, AW_active mask = AWM_ALL);
415
416    /**
417     * Insert a sub menu into the last created menu.
418     * @param name     Name of the sub menu.
419     * @param mnemonic Shortcut (optional)
420     * @param mask     Experts only?
421     */
422    void insert_sub_menu(const char *name, const char *mnemonic, AW_active mask = AWM_ALL);
423
424    /**
425     * Insert a menu item into the last created menu or sub menu.
426     * @param id           Unique id (for macros)
427     * @param name         Name of the item.
428     * @param mnemonic     Shortcut (optional)
429     * @param help_text_   Name of helpfile (optional)
430     * @param mask         Experts only?
431     * @param wcb Callback that should be called when the item is activated.
432     */
433    void insert_menu_topic(const char *id, const char *name, const char *mnemonic, const char *help_text_, AW_active mask, const WindowCallback& wcb);
434
435    void insert_menu_topic(const char *id, const char *name, const char *mnemonic, const char *help_text_, AW_active mask, const CreateWindowCallback& cwcb) { insert_menu_topic(id, name, mnemonic, help_text_, mask, makeWindowPopper(cwcb)); }
436    void insert_menu_topic(const char *id, const char *name, const char *mnemonic, const char *help_text_, AW_active mask, WindowCallbackSimple cb)          { insert_menu_topic(id, name, mnemonic, help_text_, mask, makeWindowCallback(cb)); }
437    void insert_menu_topic(const char *id, const char *name, const char *mnemonic, const char *help_text_, AW_active mask, CreateWindowCallbackSimple cb)    { insert_menu_topic(id, name, mnemonic, help_text_, mask, makeCreateWindowCallback(cb)); }
438
439    void sep______________();
440    void close_sub_menu();
441
442    void insert_help_topic(const char *labeli, const char *mnemonic, const char *helpText, AW_active mask, const WindowCallback& cb);
443    void insert_help_topic(const char *labeli, const char *mnemonic, const char *helpText, AW_active mask, WindowCallbackSimple cb) { insert_help_topic(labeli, mnemonic, helpText, mask, makeWindowCallback(cb)); }
444
445    // ************** Create modes on the left side ******************
446    int create_mode(const char *pixmap, const char *help_text_, AW_active mask, const WindowCallback& cb);
447    void select_mode(int mode);
448
449    // ************** Control the size of the main drawing area + scrollbars  *********
450    void tell_scrolled_picture_size(AW_screen_area rectangle);
451    void tell_scrolled_picture_size(AW_world rectangle);
452    AW_pos get_scrolled_picture_width() const;
453    AW_pos get_scrolled_picture_height() const;
454    void reset_scrolled_picture_size();
455
456    void get_scrollarea_size(AW_screen_area *square);
457
458    void calculate_scrollbars();
459    void set_vertical_scrollbar_position(int position);
460    void set_horizontal_scrollbar_position(int position);
461
462    void set_vertical_change_callback(const WindowCallback& wcb);
463    void set_horizontal_change_callback(const WindowCallback& wcb);
464    void set_vertical_scrollbar_top_indent(int indent);
465    void set_horizontal_scrollbar_left_indent(int indent);
466
467
468    void update_scrollbar_settings_from_awars(AW_orientation orientation);
469
470    void create_user_geometry_awars(int posx, int posy, int width, int height);
471   
472    // ************** Control window size  *********
473#if defined(IN_ARB_WINDOW)
474    void set_window_size(int width, int height);
475#endif
476    void get_window_size(int& width, int& height);
477    void window_fit();                              // Recalculate the size of a window with buttons
478
479#if defined(IN_ARB_WINDOW)
480    void store_size_in_awars(int width, int height);
481    void get_size_from_awars(int& width, int& height);
482
483    // ************** Control window position  *********
484    void set_window_frame_pos(int xpos, int ypos);
485    void get_window_content_pos(int& xpos, int& ypos);
486
487    void store_pos_in_awars(int xpos, int ypos);
488    void get_pos_from_awars(int& xpos, int& ypos);
489
490    void reset_geometry_awars();
491
492    // *****************
493    void get_screen_size(int& width, int& height);
494    bool get_mouse_pos(int& x, int& y);
495    void set_focus_policy(bool follow_mouse);
496    void get_font_size(int& w, int& h);
497#endif
498   
499    // ************** ********************************************************************  *********
500    // ************** Create buttons: First set modify flags and finally create the button  *********
501    // ************** ********************************************************************  *********
502
503    // *** global modifier: ****
504    void load_xfig(const char *file, bool resize=true); // Loads the background graphic
505    void draw_line(int x1, int y1, int x2, int y2, int width, bool resize); // draws a line on the background
506
507    void label_length(int length);   // Justifies all following labels
508    void button_length(int length);   // Sets the width of all following buttons (in chars)
509    void button_height(int height);   // Sets the height of all following buttons (in lines)
510    int  get_button_length() const; // returns the current width of buttons
511    void highlight();           // Creates a frame around the button
512    void auto_increment(int dx, int dy);   // enable automatic placement of buttons
513    // dx is the horizontal distance between the left
514    // borders of two buttons
515    void auto_space(int xspace, int yspace);   // enable automatic placement of buttons
516    // xspace is the horizontal space between 2 buttons
517
518    void shadow_width (int shadow_thickness); // set the shadow_thickness of buttons
519
520    void TuneBackground(Widget w, int modStrength);
521    void TuneOrSetBackground(Widget w, const char *color, int modStrength);
522
523    // *** local modifiers: ********
524    void at(int x, int y);      // abs pos of a button (>10,10)
525    void at_x(int x);           // abs x pos
526    void at_y(int y);           // abs y pos
527    void at_shift(int x, int y);   // rel pos of a button
528    void at_newline();          // in auto_space mode only: newline
529
530    void at(const char *id);                        /* place the button at the position set in the .fig
531                                                     * file (loaded with load_xfig) by the string $id */
532    bool at_ifdef(const  char *id);                 // check whether 'id' is an element if the .fig file
533
534    void label(const char *label);   // Create a label before the button
535
536    void get_at_position(int *x, int *y) const;
537    int get_at_xposition() const;
538    int get_at_yposition() const;
539
540    void dump_at_position(const char *debug_label) const; // for debugging (uses printf)
541
542    void at_attach(int x, int y);                                        // set "XY:noid" manually (use negative rel. position to attach)
543    void at_attach_to(bool attach_x, bool attach_y, int xoff, int yoff); // set "to:XY:noid" manually
544    void at_unattach();                                                  // unset effects of at_attach() and/or at_attach_to()
545
546    void unset_at_commands();
547
548    void store_at_to(AW_at_storage& storage) { storage.store(*_at); }
549    void restore_at_from(const AW_at_storage& stored) { stored.restore(*_at); }
550
551    void sens_mask(AW_active mask);   // Set the sensitivity mask used for following widgets (Note: reset by next at()-command)
552    void help_text(const char *id);   // Set the help text of a button
553
554private:
555    static void popper(AW_window *, CreateWindowCallback *windowMaker);
556    static void replacer(AW_window *aww, CreateWindowCallback *windowMaker);
557    static void destroyCreateWindowCallback(CreateWindowCallback *windowMaker);
558public:
559    static WindowCallback makeWindowPopper(const CreateWindowCallback& cwcb) {
560        return makeWindowCallback(popper, destroyCreateWindowCallback, new CreateWindowCallback(cwcb));
561    }
562    static WindowCallback makeWindowReplacer(const CreateWindowCallback& cwcb) {
563        return makeWindowCallback(replacer, destroyCreateWindowCallback, new CreateWindowCallback(cwcb));
564    }
565
566    // normal callbacks
567    void callback(const WindowCallback& cb);
568
569    void callback(const CreateWindowCallback& cwcb) { callback(makeWindowPopper(cwcb)); }
570    void callback(CreateWindowCallbackSimple cb)    { callback(makeCreateWindowCallback(cb)); }
571    void callback(WindowCallbackSimple cb)          { callback(makeWindowCallback(cb)); }
572
573    void d_callback(const WindowCallback& cb); // secondary callback (called for 'double click into selection list' and 'text field hit ENTER')
574
575    // *** create the buttons ********
576    void   create_button(const char *macro_name, AW_label label, const char *mnemonic = NULp, const char *color = NULp); // simple button; shadow only when callback
577    void   create_autosize_button(const char *macro_name, AW_label label, const char *mnemonic = NULp, unsigned xtraSpace = 1); // as above, but ignores button_length
578    Widget get_last_widget() const;
579
580    void create_toggle(const char *awar_name);  // int 0/1  string yes/no   float undef
581    void create_inverse_toggle(const char *awar_name);  // like create_toggle, but displays inverted toggle value
582
583    void create_toggle(const char *awar_name, const char *nobitmap, const char *yesbitmap, int buttonWidth = 0);
584    void create_text_toggle(const char *var_name, const char *noText, const char *yesText, int buttonWidth = 0);
585
586    void create_input_field(const char *awar_name, int columns = 0);                 // One line textfield
587    void create_text_field(const char *awar_name, int columns = 20, int rows = 4);   // Multi line textfield with scrollbars
588    void create_input_field_with_scaler(const char *awar_name, int textcolumns = 4, int scaler_length = 250, AW_ScalerType scalerType = AW_SCALER_LINEAR);
589
590
591    // ***** option_menu is a menu where only one selection is visible at a time
592    AW_option_menu_struct *create_option_menu(const char *awar_name, bool fallback2default);
593    void clear_option_menu(AW_option_menu_struct *oms);  // used to redefine available options
594
595private:
596    void insert_option_internal(AW_label choice_label, const char *mnemonic, const char *var_value,  const char *name_of_color, bool default_option);
597    void insert_option_internal(AW_label choice_label, const char *mnemonic, int var_value,          const char *name_of_color, bool default_option);
598    void insert_option_internal(AW_label choice_label, const char *mnemonic, float var_value,        const char *name_of_color, bool default_option);
599
600    void insert_toggle_internal(AW_label toggle_label, const char *mnemonic, const char *var_value, bool default_toggle);
601    void insert_toggle_internal(AW_label toggle_label, const char *mnemonic, int var_value,         bool default_toggle);
602    void insert_toggle_internal(AW_label toggle_label, const char *mnemonic, float var_value,       bool default_toggle);
603public:
604
605    // for string
606    void insert_option         (AW_label choice_label, const char *mnemonic, const char *var_value, const char *name_of_color = NULp);  // for string
607    void insert_default_option (AW_label choice_label, const char *mnemonic, const char *var_value, const char *name_of_color = NULp);
608    // for int
609    void insert_option         (AW_label choice_label, const char *mnemonic, int var_value,         const char *name_of_color = NULp);  // for int
610    void insert_default_option (AW_label choice_label, const char *mnemonic, int var_value,         const char *name_of_color = NULp);
611    // for float
612    void insert_option         (AW_label choice_label, const char *mnemonic, float var_value,       const char *name_of_color = NULp);  // for float
613    void insert_default_option (AW_label choice_label, const char *mnemonic, float var_value,       const char *name_of_color = NULp);
614
615    void update_option_menu();
616    void refresh_option_menu(AW_option_menu_struct *);  // don't use this
617
618
619    // ***** toggle_field is a static menu (all items are visible and only one is selected)
620    void create_toggle_field(const char *awar_name, AW_label label, const char *mnemonic);
621    void create_toggle_field(const char *awar_name, int orientation = 0);  // 1 = horizontal
622    // for string
623    void insert_toggle(AW_label toggle_label, const char *mnemonic, const char *var_value);
624    void insert_default_toggle(AW_label toggle_label, const char *mnemonic, const char *var_value);
625    // for int
626    void insert_toggle(AW_label toggle_label, const char *mnemonic, int var_value);
627    void insert_default_toggle(AW_label toggle_label, const char *mnemonic, int var_value);
628    // for float
629    void insert_toggle(AW_label toggle_label, const char *mnemonic, float var_value);
630    void insert_default_toggle(AW_label toggle_label, const char *mnemonic, float var_value);
631    void update_toggle_field();
632
633    // ***** selection list is a redefinable scrolled list of items
634
635    AW_selection_list *create_selection_list(const char *awar_name, int columns, int rows, bool fallback2default);
636    AW_selection_list *create_selection_list(const char *awar_name, bool fallback2default) { return create_selection_list(awar_name, 4, 4, fallback2default); }
637};
638
639
640class AW_window_menu_modes : public AW_window { // derived from a Noncopyable
641    void *AW_window_menu_modes_private;       // Do not use !!!
642   
643public:
644    AW_window_menu_modes();
645    ~AW_window_menu_modes();
646    void init(AW_root *root, const char *wid, const char *windowname, int width, int height);
647};
648MARK_NONFINAL_CLASS(AW_window_menu_modes);
649
650class AW_window_menu : public AW_window {
651private:
652public:
653    AW_window_menu();
654    ~AW_window_menu();
655    void init(AW_root *root, const char *wid, const char *windowname, int width, int height);
656};
657
658class AW_window_simple_menu : public AW_window {
659private:
660public:
661    AW_window_simple_menu();
662    ~AW_window_simple_menu();
663    void init(AW_root *root, const char *wid, const char *windowname);
664};
665
666
667class AW_window_simple FINAL_TYPE : public AW_window {
668private:
669public:
670    AW_window_simple();
671    ~AW_window_simple();
672    void init(AW_root *root, const char *wid, const char *windowname);
673};
674
675
676class AW_window_message : public AW_window {
677private:
678public:
679    AW_window_message();
680    ~AW_window_message();
681    void init(AW_root *root_in, const char *wid, const char *windowname, bool allow_close);
682    void init(AW_root *root_in, const char *windowname, bool allow_close); // auto-generates window id from title
683};
684
685class AW_gc_manager;
686
687#else
688#error aw_window.hxx included twice
689#endif
Note: See TracBrowser for help on using the repository browser.