| NO_STYLE |
An empty style definition. This may be useful for some occasions as default argument. It is simply an enumeration instance for zero. |
| BORDER_DEFAULT |
Default border. Applicable to all windows. |
| BORDER_NONE |
No border. Overriding the default behaviour of the window. Applicable to all windows. |
| BORDER_STATIC |
Displays a border suitable for a static control. Applicable to all windows but effect only on machines using OS Windows. |
| BORDER_SIMPLE |
Displays a thin border around the window. Applicable to all windows. |
| BORDER_RAISED |
Displays a raised border. Applicable to all windows. |
| BORDER_SUNKEN |
Displays a sunken border. Applicable to all windows. |
| BORDER_DOUBLE |
Displays a double border. Mac only. Applicable to all windows.
This is deprecated. In fact, this is just another name of the bit representing the BORDER_THEME. |
| BORDER_THEME |
Starting with wxWidgets 2.8.5, you can specify the BORDER_THEME style to have wxWidgets use a themed border. Using the default XP theme, this is a thin 1-pixel blue border, with an extra 1-pixel border in the window client background colour (usually white) to separate the client area's scrollbars from the border.
If you don't specify a border style for a wxTextCtrl in rich edit mode, wxWidgets now gives the control themed borders automatically, where previously they would take the Windows 95-style sunken border. Other native controls such as wx.TextCtrl in non-rich edit mode, and wxComboBox, already paint themed borders where appropriate. To use themed borders on other windows, such as wx.Panel, pass the BORDER_THEME style.
Note that in wxWidgets 2.9 and above, BORDER_THEME will be used on all platforms to indicate that there should definitely be a border, whose style is determined by wxWidgets for the current platform. wxWidgets 2.9 and above will also be better at determining whether there should be a themed border. Because of the requirements of binary compatibility, this automatic border capability could not be put into wxWidgets 2.8 except for built-in, native controls. In 2.8, the border must be specified for custom controls and windows. |
| BORDER_MASK |
All bits defining the border of the window. |
| TAB_TRAVERSAL |
Use this to enable tab traversal for non-dialog windows. |
| NO_FULL_REPAINT_ON_RESIZE |
Now obsolete. On Windows, this style used to disable repainting the window completely when its size is changed. Since this behaviour is now the default, the style is now obsolete and no longer has an effect. |
| FULL_REPAINT_ON_RESIZE |
Use this style to force a complete redraw of the window whenever it is resized instead of redrawing just the part of the window affected by resizing. Note that this was the behaviour by default before 2.5.1 release and that if you experience redraw problems with code which previously used to work you may want to try this. Currently this style applies on GTK+ 2 and Windows only, and full repainting is always done on other platforms. |
| WANTS_CHARS |
Use this to indicate that the window wants to get all char/key events for all keys - even for keys like TAB or ENTER which are usually used for dialog navigation and which wouldn't be generated without this style. If you need to use this style in order to get the arrows or etc., but would still like to have normal keyboard navigation take place, you should create and send a NavigationKeyEvent in response to the key events for Tab and Shift-Tab. |
| VSCROLL |
Use this style to enable a vertical scrollbar. |
| HSCROLL |
Use this style to enable a horizontal scrollbar. |
| ALWAYS_SHOW_SB |
If a window has scrollbars, disable them instead of hiding them when they are not needed (i.e. when the size of the window is big enough to not require the scrollbars to navigate it). This style is currently only implemented for wxMSW and wxUniversal and does nothing on the other platforms. |
| CLIP_CHILDREN |
Use this style to eliminate flicker caused by the background being repainted, then children being painted over them. Windows only. |
| CLIP_SIBLINGS |
|
| TRANSPARENT_WINDOW |
The window is transparent, that is, it will not receive paint events. Windows only. |
| POPUP_WINDOW |
Set this flag to create a special popup window: it will be always shown on top of other windows, will capture the mouse and will be dismissed when the mouse is clicked outside of it or if it loses focus in any other way. |
| WINDOW_STYLE_MASK |
A mask which can be used to filter (out) all wxWindow-specific styles. |
| CAPTION |
Puts a caption on the frame. Applicable to instances of Frame. |
| FRAME_DEFAULT_STYLE |
Comprises all those styles that apply to a frame by default. |
| DIALOG_DEFAULT_STYLE |
Comprises those styles that apply to dialogs by default. |
| MINIMIZE |
Display the frame iconized (minimized). Windows only. Applicable to top level windows. |
| MINIMIZE_BOX |
Displays a minimize box on the frame. Applicable to top level windows. |
| CLOSE_BOX |
Displays a close box on the frame. Applicable to top level windows. |
| STAY_ON_TOP |
Stay on top of all other windows. Applicable to top level windows. Refer also to FRAME_FLOAT_ON_PARENT. |
| MAXIMIZE |
Displays the frame maximized. Windows only. |
| MAXIMIZE_BOX |
Displays a maximize box on the frame. |
| RESIZE_BORDER |
Displays a resizeable border around the window. |
| SYSTEM_MENU |
Displays a system menu. |
| FRAME_NO_TASKBAR |
Creates an otherwise normal frame but it does not appear in the taskbar under Windows or GTK+ (note that it will minimize to the desktop window under Windows which may seem strange to the users and thus it might be better to use this style only without MINIMIZE_BOX style). In wxGTK, the flag is respected only if GTK+ is at least version 2.2 and the window manager supports _NET_WM_STATE_SKIP_TASKBAR hint. Has no effect under other platforms. |
| FRAME_TOOL_WINDOW |
Causes a frame with a small titlebar to be created; the frame does not appear in the taskbar under Windows or GTK+. |
| FRAME_FLOAT_ON_PARENT |
The frame will always be on top of its parent (unlike STAY_ON_TOP). A frame created with this style must have a non-NULL parent. |
| FRAME_SHAPED |
Windows with this style are allowed to have their shape changed with the SetShape method. |
| DIALOG_NO_PARENT |
By default, a dialog created with a null parent window will be given the application's top level window as parent. Use this style to prevent this from happening and create an orphan dialog. This is not recommended for modal dialogs. |
| DIALOG_YES |
Show an YES button. This shall be used together either with DIALOG_NO or DIALOG_CANCEL. There is a wxWidgets assertion. |
| DIALOG_OK |
Show an OK button. |
| DIALOG_NO |
Show an NO button. This shall be used together either with DIALOG_YES. There is a wxWidgets assertion. |
| DIALOG_CANCEL |
Show an CANCEL button. |
| DIALOG_YES_NO |
Show YES and NO button. |
| DIALOG_YES_DEFAULT |
Used with DIALOG_YES, makes YES button the default - which is the default behaviour. |
| DIALOG_NO_DEFAULT |
Used with DIALOG_NO, makes NO button the default. |
| DIALOG_CENTRE |
Centre the message. Applicable to message dialog and certain standard dialogs. Not Windows. |
| DIALOG_CENTER |
Refer to DIALOG_CENTRE(). |
| ICON_EXCLAMATION |
Shows an exclamation mark icon. An icon for some standard dialogs. |
| ICON_HAND |
Shows an error icon. An icon for some standard dialogs. |
| ICON_WARNING |
Shows an exclamation mark icon. An icon for some standard dialogs. |
| ICON_ERROR |
Shows an error icon. An icon for some standard dialogs. |
| ICON_QUESTION |
Shows a question mark icon. An icon for some standard dialogs. |
| ICON_INFORMATION |
An icon for some standard dialogs. |
| ICON_STOP |
An icon for some standard dialogs. |
| ICON_ASTERISK |
An icon for some standard dialogs. |
| ICON_MASK |
A bit mask for filtering those styles referring to icons. An icon for some standard dialogs. |
| TE_NO_VSCROLL |
For instances of wx.TextCtrtl. |
| TE_AUTO_SCROLL |
For instances of wx.TextCtrtl. |
| TE_READONLY |
The text will not be user-editable. For instances of wx.TextCtrtl. |
| TE_MULTILINE |
The text control allows multiple lines. For instances of wx.TextCtrtl. |
| TE_PROCESS_TAB |
The control will receive wxEVT_CHAR events for TAB pressed - normally, TAB is used for passing to the next control in a dialog instead. For the control created with this style, you can still use Ctrl-Enter to pass to the next control from the keyboard. For instances of wx.TextCtrtl. |
| TE_LEFT |
The text in the control will be left-justified (default). For instances of wx.TextCtrtl. |
| TE_CENTER |
The text in the control will be centered (currently wxMSW and wxGTK2 only). For instances of wx.TextCtrtl. |
| TE_RIGHT |
The text in the control will be right-justified (currently wxMSW and wxGTK2 only). For instances of wx.TextCtrtl. |
| TE_RICH |
Use rich text control under Win32, this allows to have more than 64KB of text in the control even under Win9x. This style is ignored under other platforms. For instances of wx.TextCtrtl. |
| TE_PROCESS_ENTER |
The control will generate the event wxEVT_COMMAND_TEXT_ENTER (otherwise pressing Enter key is either processed internally by the control or used for navigation between dialog controls). For instances of wx.TextCtrl, wx.ComboCtrl. |
| TE_PASSWORD |
The text will be echoed as asterisks. For instances of wx.TextCtrtl. |
| TE_AUTO_URL |
Highlight the URLs and generate the TextUrlEvents when mouse events occur over them. This style is only supported for TE_RICH Win32 and multi-line wxGTK2 text controls. For instances of wx.TextCtrtl. |
| TE_NOHIDESEL |
Show selection even if not focussed. By default, the Windows text control doesn't show the selection when it doesn't have focus - use this style to force it to always show it. It doesn't do anything under other platforms. For instances of wx.TextCtrtl. |
| TE_LINEWRAP |
Tells a wx.TextCtrl to wrap lines that are too long to be displayed in the control. This is another name for the standard behaviour. Refer also to TE_BESTWRAP. |
| TE_DONTWRAP |
Same as HSCROLL style: don't wrap at all, show horizontal scrollbar instead. For instances of wx.TextCtrtl. |
| TE_CHARWRAP |
Wrap the lines too long to be shown entirely at any position (wxUniv and wxGTK2 only). For instances of wx.TextCtrtl. |
| TE_WORDWRAP |
Wrap the lines too long to be shown entirely at word boundaries (wxUniv and wxGTK2 only). For instances of wx.TextCtrtl. |
| TE_BESTWRAP |
Wrap the lines at word boundaries or at any other character if there are words longer than the window width (this is the default). For instances of wx.TextCtrtl. |
| TE_RICH2 |
Use rich text control version 2.0 or 3.0 under Win32. This style is ignored under other platforms. Style flag for instances of wx.TextCtrl. |
| TE_DIALOG_STYLE |
Default style bits for instances of wx.TextEntryDialog. |
| HW_SCROLLBAR_NEVER |
Applicable to wx.HtmlWindow. |
| HW_SCROLLBAR_AUTO |
Applicable to wx.HtmlWindow. |
| HW_NO_SELECTION |
Applicable to wx.HtmlWindow. |
| SPLASH_CENTRE_ON_PARENT |
A style for wx.SplahScreen. |
| SPLASH_CENTRE_ON_SCREEN |
A style for wx.SplahScreen. |
| SPLASH_NO_CENTRE |
A style for wx.SplahScreen. |
| SPLASH_TIMEOUT |
A style for wx.SplahScreen. |
| SPLASH_NO_TIMEOUT |
A style for wx.SplahScreen. |
| SPLASH_DEFAULT |
The bits defining the default style for wx.SplahScreen. |
| LB_SORT |
Style for wx.ListBox. |
| LB_SINGLE |
Style for wx.ListBox. |
| LB_MULTIPLE |
Style for wx.ListBox. |
| LB_EXTENDED |
Style for wx.ListBox. |
| LB_OWNERDRAW |
Style for wx.ListBox. |
| LB_NEED_SB |
Style for wx.ListBox. |
| LB_ALWAYS_SB |
Style for wx.ListBox. |
| LB_HSCROLL |
Style for wx.ListBox. |
| LB_INT_HEIGHT |
Style for wx.ListBox. |
| LC_VRULES |
Draws light vertical rules between columns in report mode. Style for wx.ListCtrl. |
| LC_HRULES |
Draws light horizontal rules between rows in report mode. Style for wx.ListCtrl. |
| LC_ICON |
Large icon view, with optional labels. Style for wx.ListCtrl. |
| LC_SMALL_ICON |
Small icon view, with optional labels. Style for wx.ListCtrl. |
| LC_LIST |
Multicolumn list view, with optional small icons. Columns are computed automatically, i.e. you don't set columns as in wx.WindowStyles.LC_REPORT. In other words, the list wraps, unlike a wx.ListBox. Style for wx.ListCtrl. |
| LC_REPORT |
Single or multicolumn report view, with optional header. Style for wx.ListCtrl. |
| LC_ALIGN_TOP |
Icons align to the top. Win32 default, Win32 only. Style for wx.ListCtrl. |
| LC_ALIGN_LEFT |
Icons align to the left. Style for wx.ListCtrl. |
| LC_AUTO_ARRANGE |
Icons arrange themselves. Win32 only. Style for wx.ListCtrl. |
| LC_VIRTUAL |
The application provides items text on demand. May only be used with wx.WindowsStyles.LC_REPORT. Style for wx.ListCtrl. |
| LC_EDIT_LABELS |
Labels are editable: the application will be notified when editing starts. Style for wx.ListCtrl. |
| LC_NO_HEADER |
No header in report mode. Style for wx.ListCtrl. |
| LC_NO_SORT_HEADER |
Style for wx.ListCtrl. |
| LC_SINGLE_SEL |
Single selection (default is multiple). Style for wx.ListCtrl. |
| LC_SORT_ASCENDING |
Sort in ascending order (must still supply a comparison callback in wx.ListCtrl.SortItems()). Style for wx.ListCtrl. |
| LC_SORT_DESCENDING |
Sort in descending order (must still supply a comparison callback in wx.ListCtrl.SortItems). Style for wx.ListCtrl. |
| LC_MASK_TYPE |
Mask of style bits defining the kind of presentation in instances of wx.ListCtrl. Style for wx.ListCtrl. |
| LC_MASK_ALIGN |
Mask of style bits referring to the alignment in instances of wx.ListCtrl. Style for wx.ListCtrl. |
| LC_MASK_SORT |
Mask of styles referring to sorting instances of wx.ListCtrl. Style for wx.ListCtrl. |
| CHOICEDLG_STYLE |
Default style bits for instances of wx.SingleChoiceDialog. |
| MDI_FRAME_DEFAULT_STYLE |
Default style bits for instances of wx.MDIParentFrame. |
| ORIENT_HORIZONTAL |
Style for wx.ToolBar, wx.ScrollBar, wx.Slider, wx.RadioBox, wx.Gauge wx.SpinCtrl and wx.SpinButton |
| ORIENT_VERTICAL |
Style for wx.ToolBar, wx.ScrollBar, wx.Slider, wx.RadioBox, wx.Gauge wx.SpinCtrl and wx.SpinButton |
| TB_3DBUTTONS |
Style for wx.ToolBar. |
| TB_FLAT |
Style for wx.ToolBar. |
| TB_DOCKABLE |
Style for wx.ToolBar. |
| TB_NOICONS |
Style for wx.ToolBar. |
| TB_TEXT |
Style for wx.ToolBar. |
| TB_NODIVIDER |
Style for wx.ToolBar. |
| TB_NOALIGN |
Style for wx.ToolBar. |
| SW_NOBORDER |
Style for wx.SashWindow. |
| SW_BORDER |
Style for wx.SashWindow. |
| SW_3DSASH |
Style for wx.SashWindow. |
| SW_3DBORDER |
Style for wx.SashWindow. |
| SW_3D |
Style for wx.SashWindow. |
| SL_NOTIFY_DRAG |
Style for wx.Slider. |
| SL_TICKS |
Style for wx.Slider. |
| SL_AUTOTICKS |
Style for wx.Slider. |
| SL_LABELS |
Style for wx.Slider. |
| SL_LEFT |
Style for wx.Slider. |
| SL_TOP |
Style for wx.Slider. |
| SL_RIGHT |
Style for wx.Slider. |
| SL_BOTTOM |
Style for wx.Slider. |
| SL_BOTH |
Style for wx.Slider. |
| SL_SELRANGE |
Style for wx.Slider. |
| RA_LEFTTORIGHT |
Style for wx.RadioBox. |
| RA_TOPTOBOTTOM |
Style for wx.RadioBox. |
| RA_SPECIFY_COLS |
Style for wx.RadioBox. |
| RA_SPECIFY_ROWS |
Style for wx.RadioBox. |
| SP_ARROW_KEYS |
The user can use arrow keys to change the value. Style for wx.SpinCtrl and wx.SpinButton. |
| SP_WRAP |
The value wraps at the minimum and maximum. Style for wx.SpinCtrl and wx.SpinButton. |
| SP_3DBORDER |
A style for the wx.SplitterWindow turning on 3D effect for borders. |
| SP_LIVE_UPDATE |
A style for the wx.SplitterWindow. |
| SP_3D |
A style for the wx.SplitterWindow turning on 3D effect for borders and sash. |
| SP_3DSASH |
A style for the wx.SplitterWindow turning on 3D effect for the sash. SP_3D combines this with SP_3BORDER to turn on both 3D effects. |
| GA_PROGRESSBAR |
Style for wx.Gauge. |
| GA_SMOOTH |
Style for wx.Gauge. |
| CAL_SUNDAY_FIRST |
Style for wx.CalendarCtrl. |
| CAL_MONDAY_FIRST |
Style for wx.CalendarCtrl. |
| CAL_SHOW_HOLIDAYS |
Style for wx.CalendarCtrl. |
| CAL_NO_YEAR_CHANGE |
Style for wx.CalendarCtrl. |
| CAL_NO_MONTH_CHANGE |
Style for wx.CalendarCtrl. |
| CAL_SEQUENTIAL_MONTH_SELECTION |
Style for wx.CalendarCtrl. |
| CAL_SHOW_SURROUNDING_WEEKS |
Style for wx.CalendarCtrl. |
| PD_CAN_ABORT |
Style flag for wx.ProgressDialog. |
| PD_APP_MODAL |
Style flag for wx.ProgressDialog. |
| PD_AUTO_HIDE |
Style flag for wx.ProgressDialog. |
| PD_ELAPSED_TIME |
Style flag for wx.ProgressDialog. |
| PD_ESTIMATED_TIME |
Style flag for wx.ProgressDialog. |
| PD_REMAINING_TIME |
Style flag for wx.ProgressDialog. |
| RB_GROUP |
Style flag for wx.RadioButton. |
| RB_SINGLE |
Style flag for wx.RadioButton. |
| NB_FIXEDWIDTH |
Style flag fow wx.Notebook. |
| NB_TOP |
Style flag fow wx.Notebook. |
| NB_LEFT |
Style flag fow wx.Notebook. |
| NB_RIGHT |
Style flag fow wx.Notebook. |
| NB_BOTTOM |
Style flag fow wx.Notebook. |
| NB_MULTILINE |
Style flag fow wx.Notebook. |
| TR_NO_BUTTONS |
For convenience to document that no buttons are to be drawn. Style for wx.TreeCtrl. |
| TR_HAS_BUTTONS |
Use this style to show + and - buttons to the left of parent items. Style for wx.TreeCtrl. |
| TR_TWIST_BUTTONS |
Style for wx.TreeCtrl. |
| TR_NO_LINES |
Use this style to hide vertical level connectors. Style for wx.TreeCtrl. |
| TR_LINES_AT_ROOT |
Use this style to show lines between root nodes. Only applicable if TR_HIDE_ROOT is set and TR_NO_LINES is not set. Style for wx.TreeCtrl. |
| TR_MAC_BUTTONS |
Deprecated style for wx.TreeCtrl. |
| TR_AQUA_BUTTONS |
Deprecated style for wx.TreeCtrl. |
| TR_SINGLE |
Style for wx.TreeCtrl. This defines single selection and is standard behaviour. |
| TR_MULTIPLE |
Use this style to allow a range of items to be selected. If a second range is selected, the current range, if any, is deselected. Style for wx.TreeCtrl. |
| TR_EXTENDED |
Use this style to allow disjoint items to be selected. (Only partially implemented; may not work in all cases.) Style for wx.TreeCtrl. |
| TR_FULL_ROW_HIGHLIGHT |
Use this style to have the background colour and the selection highlight extend over the entire horizontal row of the tree control window. (This flag is ignored under Windows unless you specify TR_NO_LINES as well.) Style for wx.TreeCtrl. |
| TR_EDIT_LABELS |
Use this style if you wish the user to be able to edit labels in the tree control. Style for wx.TreeCtrl. |
| TR_ROW_LINES |
Use this style to draw a contrasting border between displayed rows. Style for wx.TreeCtrl. |
| TR_HIDE_ROOT |
Use this style to suppress the display of the root node, effectively causing the first-level nodes to appear as a series of root nodes. Style for wx.TreeCtrl. |
| TR_HAS_VARIABLE_ROW_HEIGHT |
Use this style to cause row heights to be just big enough to fit the content. If not set, all rows use the largest row height. Style for wx.TreeCtrl. The default is that this flag is unset. Generic only. |
| FONTCTRL_EDIT_POINT_SIZE |
Style for wx.FontCtrl. Turns on text edit field for point size. |
| FONTCTRL_EDIT_FONT_FAMILY |
Style for wx.FontCtrl. Turns on text edit field for font family. |
| FONTCTRL_EDIT_FONT_WEIGHT |
Style for wx.FontCtrl. Turns on text edit field for font weight. |
| FONTCTRL_EDIT_FONT_STYLE |
Style for wx.FontCtrl. Turns on text edit field for font style. |
| FONTCTRL_EDIT_FONT_COLOUR |
Style for wx.FontCtrl. Turns on text edit field for text colour. |
| FONTCTRL_EDIT_ALL |
Style for wx.FontCtrl. Turns on all edit fields. |
| FD_OPEN |
This is a dialog requesting a file to be opened. Style for wx.FileDialog and wx.FileSelector |
| FD_SAVE |
This is a save dialog. Style for wx.FileDialog and wx.FileSelector |
| FD_OVERWRITE_PROMPT |
For save dialog only: prompt for a confirmation if a file will be overwritten. Style for wx.FileDialog and wx.FileSelector. |
| FD_HIDE_READONLY |
Do not display the checkbox to toggle display of read-only files. Deprecated in 2.6; the checkbox is never shown. Style for wx.FileDialog and wx.FileSelector. |
| FD_FILE_MUST_EXIST |
The user may only select files that actually exist. Style for wx.FileDialog and wx.FileSelector. |
| FD_MULTIPLE |
For open dialog only: allows selecting multiple files. Style for wx.FileDialog and wx.FileSelector. |
| FD_PREVIEW |
Show the preview of the selected files (currently only supported by wxGTK using GTK+ 2.4 or later). Style for wx.FileDialog and wx.FileSelector. |
| FD_CHANGE_DIR |
Two different meanings in wx.FileDialog and wx.FileSeletor.
| wx.FileDialog | Change the current working directory to the directory where the file(s) chosen by the user are. |
| wx.FileSelector | Select a directory rather than a file. |
|
| FR_REPLACEDIALOG |
Inititializes replace dialog (otherwise find dialog). Style flag for wx.FindReplaceDialog. |
| FR_NOUPDOWN |
Don't allow changing the search direction. Style flag for wx.FindReplaceDialog. If this is set, controls for changing search direction will be disabled. |
| FR_NOMATCHCASE |
Don't allow case sensitive searching. Style flag for wx.FindReplaceDialog. If this is set, controls for changing relevance of letter case will be disabled. |
| FR_NOWHOLEWORD |
don't allow whole word searching Style flag for wx.FindReplaceDialog. If this is set, controls for defining search for whole words only will be disabled. |
| CB_SIMPLE |
Style for wx.Choice, wx.ComboBox etc. |
| CB_SORT |
Style for wx.Choice, wx.ComboBox, wx.ComboCtrl etc. Sorts the entries in the list alphabetically. |
| CB_READONLY |
Style for wx.Choice, wx.ComboBox, wx.ComboCtrl etc. Text will not be editable. |
| CB_DROPDOWN |
Style for wx.Choice, wx.ComboBox etc. |
| CC_BUTTON_OUTSIDE_BORDER |
Style for wx.ComboCtrl: Button is preferred outside the border (GTK style). |
| CC_POPUP_ON_MOUSE_UP |
Style for wx.ComboCtrl: Show popup on mouse up instead of mouse down (which is the Windows style) |
| CC_NO_TEXT_AUTO_SELECT |
Style for wx.ComboCtrl: All text is not automatically selected on click |
| ST_NO_AUTORESIZE |
Style flag for static text and wx.StatusBar. Static text fields also use alignment flags. |
| ST_SIZEGRIP |
Style flag for wx.StatusBar. |
| SB_NORMAL |
Style flag for wx.StatusBar. |
| SB_FLAT |
Style flag for wx.StatusBar. |
| SB_RAISED |
Style flag for wx.StatusBar. |
| ALIGN_LEFT |
Flags for alignment are also used with wx.StaticText. |
| ALIGN_RIGHT |
Flags for alignment are also used with wx.StaticText. |
| ALIGN_CENTRE |
Flags for alignment are also used with wx.StaticText. |
| ALIGN_CENTER |
Flags for alignment are also used with wx.StaticText. |
| BU_LEFT |
Style flag for wx.Button and wx.BitmapButton. |
| BU_TOP |
Style flag for wx.Button and wx.BitmapButton. |
| BU_RIGHT |
Style flag for wx.Button and wx.BitmapButton. |
| BU_BOTTOM |
Style flag for wx.Button and wx.BitmapButton. |
| BU_EXACTFIT |
Style flag for wx.Button and wx.BitmapButton. |
| BU_AUTODRAW |
Style flag for instances of wx.BitmapButton. |
| GRID_SELECT_CELLS |
This defines the wx.GridSelectionMode of a wx.Grid. |
| GRID_SELECT_ROWS |
This defines the wx.GridSelectionMode of a wx.Grid. |
| GRID_SELECT_COLUMNS |
This defines the wx.GridSelectionMode of a wx.Grid. |
| GENERICFORM_READONLY |
Specifies that a generic form will not be user-editable. wx.GenericForm.GenericFormPanel. |
| DP_DEFAULT |
wx.DatePickerCtrl style. Default style on this platform, either DP_SPIN or DP_DROPDOWN. |
| DP_SPIN |
wx.DatePickerCtrl style. A spin control-like date picker (not supported in generic version) |
| DP_DROPDOWN |
wx.DatePickerCtrl style. A combobox-like date picker (not supported in mac version) |
| DP_SHOWCENTURY |
wx.DatePickerCtrl style. Always show century in the default date display (otherwise it depends on the system date format which may include the century or not) |
| DP_ALLOWNONE |
wx.DatePickerCtrl style. Allow not having any valid date in the control (by default it always has some date, today initially if no valid date specified in ctor) |
| CLRP_DEFAULT_STYLE |
wx.ColourPickerCtrl style. The default style: 0. |
| CLRP_USE_TEXTCTRL |
wx.ColourPickerCtrl style. Creates a text control to the left of the picker button which is completely managed by the wx.ColourPickerCtrl and which can be used by the user to specify a colour (see SetColour). The text control is automatically synchronized with button's value. |
| CLRP_SHOW_LABEL |
wx.ColourPickerCtrl style. Shows the colour in HTML form (AABBCC) as colour button label (instead of no label at all). |
| FNTP_FONTDESC_AS_LABEL |
wx.FontPickerCtrl style. Keeps the label of the button updated with the fontface name and font size. E.g. choosing "Times New Roman bold, italic with size 10" from the fontdialog, updates the button label (overwriting any previous label) with the "Times New Roman, 10" text (only fontface + fontsize is displayed to avoid extralong labels). |
| FNTP_USEFONT_FOR_LABEL |
wx.FontPickerCtrl style. Uses the currently selected font to draw the label of the button. |
| FNTP_USE_TEXTCTRL |
wx.FontPickerCtrl style. Creates a text control to the left of the picker button which is completely managed by the wx.FontPickerCtrl and which can be used by the user to specify a font. The text control is automatically synchronized with button's value. |
| FNTP_DEFAULT_STYLE |
Default style for wx.FontPickerCtrl. Currently FNTP_FONTDESC_AS_LABEL|FNTP_USEFONT_FOR_LABEL, i.e. if FNTP_USE_TEXTCTRL is active, then use a textual description of the font as label and display it in the selected font. |