#include <stdui.h>
Public Member Functions | |
| stdflag () | |
| default empty contructor providing an instance for using the custom operators. | |
| stdui::stdflags | operator! () |
| stdui::stdflags | operator| (stdui::stdflags f) |
| stdui::stdflags | operator~ () |
| stdui::stdflags | operator & (stdui::stdflags f) |
| bool | operator== (stdui::stdflags f) |
| stdui::stdflags | operator &= (stdui::stdflags f) |
| stdui::stdflags | operator|= (stdui::stdflags f) |
| void | operator= (stdflags f) |
Static Public Attributes | |
| static const stdflags | empty = 1 |
| static const stdflags | locked = 2 |
| static const stdflags | active = 4 |
| static const stdflags | enable = 8 |
| static const stdflags | toplayout = 0x10 |
| static const stdflags | sublayout = 0x20 |
| static const stdflags | obstrued = 0x40 |
| static const stdflags | clipped = 0x80 |
| static const stdflags | toplevel = 0x100 |
| static const stdflags | frame = 0x200 |
| static const stdflags | caption = 0x400 |
| static const stdflags | shadow = 0x800 |
| static const stdflags | visible = 0x1000 |
Private Attributes | |
| stdflags | _priv_f |
Definition at line 45 of file stdui.h.
|
|
default empty contructor providing an instance for using the custom operators.
Definition at line 51 of file stdui.h. 00051 { }
|
|
|
Definition at line 71 of file stdui.h. References _priv_f. 00071 { return _priv_f & f; }
|
|
|
Definition at line 82 of file stdui.h. References _priv_f.
|
|
|
Definition at line 56 of file stdui.h. References _priv_f. 00056 { return !_priv_f; }
|
|
|
Definition at line 92 of file stdui.h. References _priv_f. 00092 { _priv_f = f; }
|
|
|
Definition at line 76 of file stdui.h. References _priv_f. 00076 { return _priv_f == f; }
|
|
|
Definition at line 61 of file stdui.h. References _priv_f. 00061 { return _priv_f | f; }
|
|
|
Definition at line 87 of file stdui.h. References _priv_f.
|
|
|
Definition at line 66 of file stdui.h. References _priv_f. 00066 { return ~_priv_f; }
|
|
|
Definition at line 111 of file stdui.h. Referenced by operator &(), operator &=(), operator!(), operator=(), operator==(), operator|(), operator|=(), and operator~(). |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.4.0