A toolbar tool represents one item on the toolbar.
It has a unique id (except for the separators), the style (telling whether it is a normal button, separator or a control), the state (toggled or not, enabled or not) and short and long help strings. The default implementations use the short help string for the tooltip text which is popped up when the mouse pointer enters the tool and the long help string for the applications status bar.
|
| wxToolBarToolBase (wxToolBarBase *tbar=NULL, int toolid=wxID_SEPARATOR, const wxString &label=wxEmptyString, const wxBitmap &bmpNormal=wxNullBitmap, const wxBitmap &bmpDisabled=wxNullBitmap, wxItemKind kind=wxITEM_NORMAL, wxObject *clientData=NULL, const wxString &shortHelpString=wxEmptyString, const wxString &longHelpString=wxEmptyString) |
|
| wxToolBarToolBase (wxToolBarBase *tbar, wxControl *control, const wxString &label) |
|
virtual | ~wxToolBarToolBase () |
|
int | GetId () const |
|
wxControl * | GetControl () const |
|
wxToolBarBase * | GetToolBar () const |
|
bool | IsStretchable () const |
|
bool | IsButton () const |
|
bool | IsControl () const |
|
bool | IsSeparator () const |
|
bool | IsStretchableSpace () const |
|
int | GetStyle () const |
|
wxItemKind | GetKind () const |
|
void | MakeStretchable () |
|
bool | IsEnabled () const |
|
bool | IsToggled () const |
|
bool | CanBeToggled () const |
|
const wxBitmap & | GetNormalBitmap () const |
|
const wxBitmap & | GetDisabledBitmap () const |
|
const wxBitmap & | GetBitmap () const |
|
const wxString & | GetLabel () const |
|
const wxString & | GetShortHelp () const |
|
const wxString & | GetLongHelp () const |
|
wxObject * | GetClientData () const |
|
virtual bool | Enable (bool enable) |
|
virtual bool | Toggle (bool toggle) |
|
virtual bool | SetToggle (bool toggle) |
|
virtual bool | SetShortHelp (const wxString &help) |
|
virtual bool | SetLongHelp (const wxString &help) |
|
void | Toggle () |
|
virtual void | SetNormalBitmap (const wxBitmap &bmp) |
|
virtual void | SetDisabledBitmap (const wxBitmap &bmp) |
|
virtual void | SetLabel (const wxString &label) |
|
void | SetClientData (wxObject *clientData) |
|
virtual void | Detach () |
|
virtual void | Attach (wxToolBarBase *tbar) |
|
virtual void | SetDropdownMenu (wxMenu *menu) |
|
wxMenu * | GetDropdownMenu () const |
|
| wxObject () |
| Default ctor; initializes to NULL the internal reference data.
|
|
| wxObject (const wxObject &other) |
| Copy ctor.
|
|
virtual | ~wxObject () |
| Destructor.
|
|
virtual wxClassInfo * | GetClassInfo () const |
| This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar).
|
|
wxObjectRefData * | GetRefData () const |
| Returns the wxObject::m_refData pointer, i.e. the data referenced by this object.
|
|
bool | IsKindOf (const wxClassInfo *info) const |
| Determines whether this class is a subclass of (or the same class as) the given class.
|
|
bool | IsSameAs (const wxObject &obj) const |
| Returns true if this object has the same data pointer as obj.
|
|
void | Ref (const wxObject &clone) |
| Makes this object refer to the data in clone.
|
|
void | SetRefData (wxObjectRefData *data) |
| Sets the wxObject::m_refData pointer.
|
|
void | UnRef () |
| Decrements the reference count in the associated data, and if it is zero, deletes the data.
|
|
void | UnShare () |
| This is the same of AllocExclusive() but this method is public.
|
|
void | operator delete (void *buf) |
| The delete operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined.
|
|
void * | operator new (size_t size, const wxString &filename=NULL, int lineNum=0) |
| The new operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined.
|
|