This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | wxZoomData |
Class for zoomable windows. More... | |
class | wxResizeableControl |
Class for moveable and resizable child windows. More... | |
class | wxPictureControl |
Abstract class for pictures. More... | |
class | wxBitmapControl |
Class for Bitmaps. More... | |
class | wxResizeableControlCanvas |
Parent window class for wxResizableControl child windows. More... | |
Defines | |
#define | EVT_CHILD_MOVED(id, fn) |
Events from child windows. | |
#define | EVT_CHILD_CLOSED(id, fn) |
#define | EVT_CHILD_RESIZED(id, fn) |
#define | EVT_CHILD_CREATED(id, fn) |
|
Value: DECLARE_EVENT_TABLE_ENTRY( \
wxEVT_COMMAND_CHILD_CLOSED, id, -1, \
(wxObjectEventFunction)(wxEventFunction)(wxCommandEventFunction) \
& fn, \
(wxObject *) NULL \
),
|
|
Value: DECLARE_EVENT_TABLE_ENTRY( \
wxEVT_COMMAND_CHILD_CREATED, id, -1, \
(wxObjectEventFunction)(wxEventFunction)(wxCommandEventFunction) \
& fn, \
(wxObject *) NULL \
),
|
|
Value: DECLARE_EVENT_TABLE_ENTRY( \
wxEVT_COMMAND_CHILD_MOVED, id, -1, \
(wxObjectEventFunction)(wxEventFunction)(wxCommandEventFunction) \
& fn, \
(wxObject *) NULL \
),
These events notify the parent window of changes, so that it can update itself accordingly (recalculate Scrollbars, set document modified flag and so on). |
|
Value: DECLARE_EVENT_TABLE_ENTRY( \
wxEVT_COMMAND_CHILD_RESIZED, id, -1, \
(wxObjectEventFunction)(wxEventFunction)(wxCommandEventFunction) \
& fn, \
(wxObject *) NULL \
),
|