bool m_isCommandEvent;
private:
+ // normally copying the events is a bad idea, so disable this
+ wxEvent& operator=(const wxEvent&);
+
DECLARE_ABSTRACT_CLASS(wxEvent)
};
long m_extraLong; // Additional information (e.g. select/deselect)
void* m_clientData; // Arbitrary client data
wxClientData* m_clientObject; // Arbitrary client object
-
+
private:
DECLARE_DYNAMIC_CLASS(wxCommandEvent)
};
int GetPosition() const { return m_commandInt ; }
void SetOrientation(int orient) { m_extraLong = (long) orient; }
void SetPosition(int pos) { m_commandInt = pos; }
-
+
virtual wxEvent *Clone() const { return new wxScrollEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxScrollEvent)
};
bool HasCursor() const { return m_cursor.Ok(); }
virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); }
-
+
private:
wxCoord m_x, m_y;
wxCursor m_cursor;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxSetCursorEvent)
};
long KeyCode() const { return m_keyCode; }
virtual wxEvent *Clone() const { return new wxKeyEvent(*this); }
-
+
+ // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for
+ // example)
+ wxKeyEvent& operator=(const wxKeyEvent& evt)
+ {
+ m_x = evt.m_x;
+ m_y = evt.m_y;
+
+ m_keyCode = evt.m_keyCode;
+
+ m_controlDown = evt.m_controlDown;
+ m_shiftDown = evt.m_shiftDown;
+ m_altDown = evt.m_altDown;
+ m_metaDown = evt.m_metaDown;
+ m_scanCode = evt.m_scanCode;
+
+ return *this;
+ }
+
public:
wxCoord m_x, m_y;
bool m_altDown;
bool m_metaDown;
bool m_scanCode;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxKeyEvent)
};
public:
wxSize m_size;
-private:
+private:
DECLARE_DYNAMIC_CLASS(wxSizeEvent)
};
wxPoint GetPosition() const { return m_pos; }
virtual wxEvent *Clone() const { return new wxMoveEvent(*this); }
-
+
wxPoint m_pos;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxMoveEvent)
};
#endif // debug
virtual wxEvent *Clone() const { return new wxPaintEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxPaintEvent)
};
{
public:
wxNcPaintEvent(int id = 0) : wxEvent(id) { SetEventType(wxEVT_NC_PAINT); }
-
+
virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); }
private:
public:
wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL)
{ m_eventType = wxEVT_ERASE_BACKGROUND; m_id = Id; m_dc = dc; }
-
+
wxDC *GetDC() const { return m_dc; }
virtual wxEvent *Clone() const { return new wxEraseEvent(*this); }
-
+
wxDC *m_dc;
private:
void SetWindow(wxWindow *win) { m_win = win; }
virtual wxEvent *Clone() const { return new wxFocusEvent(*this); }
-
+
private:
wxWindow *m_win;
wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxChildFocusEvent)
};
public:
wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
{ m_eventType = type; m_active = active; m_id = Id; }
-
+
bool GetActive() const { return m_active; }
virtual wxEvent *Clone() const { return new wxActivateEvent(*this); }
{ m_eventType = wxEVT_INIT_DIALOG; m_id = Id; }
virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); }
-
-private:
+
+private:
DECLARE_DYNAMIC_CLASS(wxInitDialogEvent)
};
int GetMenuId() const { return m_menuId; }
virtual wxEvent *Clone() const { return new wxMenuEvent(*this); }
-
+
private:
int m_menuId;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxMenuEvent)
};
bool Iconized() const { return m_iconized; }
virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); }
-
+
protected:
bool m_iconized;
{ m_eventType = wxEVT_MAXIMIZE; m_id = id; }
virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxMaximizeEvent)
};
((m_buttonState & but) == but)); }
virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxJoystickEvent)
};
wxString *GetFiles() const { return m_files; }
virtual wxEvent *Clone() const { wxFAIL_MSG("error"); return NULL; }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxDropFilesEvent)
};
bool m_setText;
bool m_setChecked;
wxString m_text;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent)
};
public:
wxSysColourChangedEvent()
{ m_eventType = wxEVT_SYS_COLOUR_CHANGED; }
-
+
virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent)
};
protected:
bool m_paletteRealized;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent)
};
wxWindowCreateEvent(wxWindow *win = NULL);
wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
-
+
virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); }
-
+
private:
DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent)
};
wxWindowDestroyEvent(wxWindow *win = NULL);
wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); }
-
+
virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); }
private:
void SetTarget(const wxString& target) { m_target = target; }
virtual wxEvent *Clone() const { return new wxHelpEvent(*this); }
-
+
protected:
wxPoint m_pos;
wxString m_target;
void SetPosition(const wxPoint& pos) { m_pos = pos; }
virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); }
-
+
protected:
wxPoint m_pos;
protected:
bool m_requestMore;
-
+
private:
DECLARE_DYNAMIC_CLASS(wxIdleEvent)
};