source: tags/arb_5.1/WINDOW/aw_at.hxx

Last change on this file was 6126, checked in by westram, 15 years ago
  • do not reset at-mask-state in unset_at_commands()
  • renamed 'mask_for_next_button' into 'widget_mask'
  • corrected novice-mode for
    • field-admin
    • "Incremental phylogeny"
  • legal_mask()-check active 4all

fixes #199

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1#ifndef AW_AT_HXX
2#define AW_AT_HXX
3
4class AW_at {
5public:
6    short shadow_thickness;
7    short length_of_buttons;
8    short height_of_buttons;
9    short length_of_label_for_inputfield;
10    bool  highlight;
11
12    char      *helptext_for_next_button;
13    AW_active  widget_mask; // sensitivity (expert/novice mode)
14
15    unsigned long int background_color; // X11 Pixel
16
17    char *label_for_inputfield;
18
19    int x_for_next_button;
20    int y_for_next_button;
21    int max_x_size;
22    int max_y_size;
23
24    int  to_position_x;
25    int  to_position_y;
26    bool to_position_exists;
27
28    bool do_auto_space;
29    int  auto_space_x;
30    int  auto_space_y;
31
32    bool do_auto_increment;
33    int  auto_increment_x;
34    int  auto_increment_y;
35
36    int biggest_height_of_buttons;
37
38    short saved_x_correction_for_label;
39    //     short correct_for_at_center_intern;
40
41    short saved_x;
42    bool  correct_for_at_string;
43    int   correct_for_at_center;
44    short x_for_newline;
45
46    bool attach_x;           // attach right side to right form
47    bool attach_y;
48    bool attach_lx;          // attach left side to right form
49    bool attach_ly;
50    bool attach_any;
51
52    AW_at(void);
53};
54
55
56#else
57#error aw_at.hxx included twice
58#endif
Note: See TracBrowser for help on using the repository browser.