#include <combo.h>
Public Types | |
enum | { MovableButton = 0x0001, BitmapButton = 0x0002, ButtonSpacing = 0x0004, TextIndent = 0x0008, PaintControl = 0x0010, PaintWritable = 0x0020, Borderless = 0x0040, All } |
Definition at line 103 of file combo.h.
|
Definition at line 105 of file combo.h. 00106 { 00107 MovableButton = 0x0001, // Button can be on either side of control 00108 BitmapButton = 0x0002, // Button may be replaced with bitmap 00109 ButtonSpacing = 0x0004, // Button can have spacing from the edge 00110 // of the control 00111 TextIndent = 0x0008, // SetTextIndent can be used 00112 PaintControl = 0x0010, // Combo control itself can be custom painted 00113 PaintWritable = 0x0020, // A variable-width area in front of writable 00114 // combo control's textctrl can be custom 00115 // painted 00116 Borderless = 0x0040, // wxNO_BORDER window style works 00117 00118 // There are no feature flags for... 00119 // PushButtonBitmapBackground - if its in wxRendererNative, then it should be 00120 // not an issue to have it automatically under the bitmap. 00121 00122 All = MovableButton|BitmapButton| 00123 ButtonSpacing|TextIndent| 00124 PaintControl|PaintWritable| 00125 Borderless 00126 };
|