#include <wx/wx.h>
#include <wx/ctrlsub.h>
#include <wx/vlbox.h>
#include "combo.h"
Go to the source code of this file.
Classes | |
class | wxVListBoxComboPopup |
class | wxOwnerDrawnComboBox |
Defines | |
#define | wxXTRA_ODCOMBOBOX 1 |
Enumerations | |
enum | { wxODCB_DCLICK_CYCLES = wxCC_SPECIAL_DCLICK, wxODCB_STD_CONTROL_PAINT = 0x1000 } |
enum | { wxODCB_PAINTING_CONTROL = 0x0001 } |
|
|
|
Definition at line 36 of file odcombo.h. 00037 { 00038 // Double-clicking cycles item if wxCB_READONLY is also used. 00039 wxODCB_DCLICK_CYCLES = wxCC_SPECIAL_DCLICK, 00040 00041 // If used, control itself is not custom paint using callback. 00042 // Even if this is not used, writable combo is never custom paint 00043 // until SetCustomPaintWidth is called 00044 wxODCB_STD_CONTROL_PAINT = 0x1000 00045 };
|
|
Definition at line 51 of file odcombo.h. 00052 { 00053 // when set, we are painting the selected item in control, 00054 // not in the popup 00055 wxODCB_PAINTING_CONTROL = 0x0001 00056 };
|