#include <wx/wx.h>
#include <wx/dynarray.h>
#include <wx/gdicmn.h>
#include <wx/window.h>
#include <wx/timer.h>
#include <wx/sizer.h>
Go to the source code of this file.
|
Definition at line 748 of file framemanager.h. |
|
Definition at line 750 of file framemanager.h. |
|
Definition at line 752 of file framemanager.h. |
|
Definition at line 745 of file framemanager.h. |
|
Definition at line 33 of file framemanager.h. |
|
Definition at line 25 of file framemanager.h. |
|
Definition at line 743 of file framemanager.h. |
|
Definition at line 35 of file framemanager.h. 00036 { 00037 wxAUI_DOCK_NONE = 0, 00038 wxAUI_DOCK_TOP = 1, 00039 wxAUI_DOCK_RIGHT = 2, 00040 wxAUI_DOCK_BOTTOM = 3, 00041 wxAUI_DOCK_LEFT = 4, 00042 wxAUI_DOCK_CENTER = 5, 00043 wxAUI_DOCK_CENTRE = wxAUI_DOCK_CENTER 00044 };
|
|
Definition at line 46 of file framemanager.h. 00047 { 00048 wxAUI_MGR_ALLOW_FLOATING = 1 << 0, 00049 wxAUI_MGR_ALLOW_ACTIVE_PANE = 1 << 1, 00050 wxAUI_MGR_TRANSPARENT_DRAG = 1 << 2, 00051 wxAUI_MGR_TRANSPARENT_HINT = 1 << 3, 00052 wxAUI_MGR_TRANSPARENT_HINT_FADE = 1 << 4, 00053 // The venetian blind effect is ONLY used when the wxAUI_MGR_TRANSPARENT_HINT has been used, but 00054 // at runtime we determine we cannot use transparency (because, for instance, the OS does not support it). 00055 // setting this flag drops back in such circumstances (only) to the behaviour without wxAUI_MGR_TRANSPARENT_HINT 00056 wxAUI_MGR_DISABLE_VENETIAN_BLINDS = 1 << 5, 00057 wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE = 1 << 6, 00058 00059 wxAUI_MGR_DEFAULT = wxAUI_MGR_ALLOW_FLOATING | 00060 wxAUI_MGR_TRANSPARENT_HINT | 00061 wxAUI_MGR_TRANSPARENT_HINT_FADE | 00062 wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE 00063 };
|
|
Definition at line 93 of file framemanager.h. 00094 { 00095 wxAUI_BUTTON_STATE_NORMAL = 0, 00096 wxAUI_BUTTON_STATE_HOVER = 1, 00097 wxAUI_BUTTON_STATE_PRESSED = 2 00098 };
|
|
Definition at line 86 of file framemanager.h. 00087 { 00088 wxAUI_GRADIENT_NONE = 0, 00089 wxAUI_GRADIENT_VERTICAL = 1, 00090 wxAUI_GRADIENT_HORIZONTAL = 2 00091 };
|
|
Definition at line 65 of file framemanager.h. 00066 { 00067 wxAUI_ART_SASH_SIZE = 0, 00068 wxAUI_ART_CAPTION_SIZE = 1, 00069 wxAUI_ART_GRIPPER_SIZE = 2, 00070 wxAUI_ART_PANE_BORDER_SIZE = 3, 00071 wxAUI_ART_PANE_BUTTON_SIZE = 4, 00072 wxAUI_ART_BACKGROUND_COLOUR = 5, 00073 wxAUI_ART_SASH_COLOUR = 6, 00074 wxAUI_ART_ACTIVE_CAPTION_COLOUR = 7, 00075 wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR = 8, 00076 wxAUI_ART_INACTIVE_CAPTION_COLOUR = 9, 00077 wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR = 10, 00078 wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR = 11, 00079 wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR = 12, 00080 wxAUI_ART_BORDER_COLOUR = 13, 00081 wxAUI_ART_GRIPPER_COLOUR = 14, 00082 wxAUI_ART_CAPTION_FONT = 15, 00083 wxAUI_ART_GRADIENT_TYPE = 16 00084 };
|
|
Definition at line 100 of file framemanager.h. 00101 { 00102 wxAUI_INSERT_PANE = 0, 00103 wxAUI_INSERT_ROW = 1, 00104 wxAUI_INSERT_DOCK = 2 00105 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 43 of file framemanager.cpp. |
|
Definition at line 42 of file framemanager.cpp. |