Applied patch [ 583877 ] Clone events correction

Applied patch [ 583937 ] Fix in wxClassInfo


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16212 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-07-19 19:43:55 +00:00
parent 4b056ef54f
commit 1d2eddff4a
2 changed files with 128 additions and 17 deletions

View File

@@ -546,6 +546,9 @@ class WXDLLEXPORT wxScrollWinEvent : public wxEvent
public: public:
wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, wxScrollWinEvent(wxEventType commandType = wxEVT_NULL,
int pos = 0, int orient = 0); int pos = 0, int orient = 0);
wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event)
{ m_commandInt = event.m_commandInt;
m_extraLong = event.m_extraLong; }
int GetOrientation() const { return (int) m_extraLong ; } int GetOrientation() const { return (int) m_extraLong ; }
int GetPosition() const { return m_commandInt ; } int GetPosition() const { return m_commandInt ; }
@@ -603,12 +606,13 @@ enum
class WXDLLEXPORT wxMouseEvent : public wxEvent class WXDLLEXPORT wxMouseEvent : public wxEvent
{ {
private:
wxMouseEvent& operator=(const wxMouseEvent& event);
public: public:
wxMouseEvent(wxEventType mouseType = wxEVT_NULL); wxMouseEvent(wxEventType mouseType = wxEVT_NULL);
wxMouseEvent(const wxMouseEvent& event) { Assign(event); } wxMouseEvent(const wxMouseEvent& event) : wxEvent(event)
{ Assign(event); }
wxMouseEvent& operator=(const wxMouseEvent& event)
{ Assign(event); return *this; }
// Was it a button event? (*doesn't* mean: is any button *down*?) // Was it a button event? (*doesn't* mean: is any button *down*?)
bool IsButton() const { return Button(wxMOUSE_BTN_ANY); } bool IsButton() const { return Button(wxMOUSE_BTN_ANY); }
@@ -776,6 +780,11 @@ public:
m_x(x), m_y(y), m_cursor() m_x(x), m_y(y), m_cursor()
{ } { }
wxSetCursorEvent(const wxSetCursorEvent & event) : wxEvent(event)
{ m_x = event.m_x;
m_y = event.m_y;
m_cursor = event.m_cursor; }
wxCoord GetX() const { return m_x; } wxCoord GetX() const { return m_x; }
wxCoord GetY() const { return m_y; } wxCoord GetY() const { return m_y; }
@@ -806,6 +815,22 @@ class WXDLLEXPORT wxKeyEvent : public wxEvent
{ {
public: public:
wxKeyEvent(wxEventType keyType = wxEVT_NULL); wxKeyEvent(wxEventType keyType = wxEVT_NULL);
wxKeyEvent(const wxKeyEvent& evt) : wxEvent(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;
m_rawCode = evt.m_rawCode;
m_rawFlags = evt.m_rawFlags;
}
// Find state of shift/control keys // Find state of shift/control keys
bool ControlDown() const { return m_controlDown; } bool ControlDown() const { return m_controlDown; }
@@ -910,6 +935,10 @@ public:
: wxEvent(id, wxEVT_SIZE), : wxEvent(id, wxEVT_SIZE),
m_size(sz) m_size(sz)
{ } { }
wxSizeEvent(const wxSizeEvent & event)
: wxEvent(event),
m_size(event.m_size)
{ }
wxSize GetSize() const { return m_size; } wxSize GetSize() const { return m_size; }
@@ -938,6 +967,10 @@ public:
: wxEvent(id, wxEVT_MOVE), : wxEvent(id, wxEVT_MOVE),
m_pos(pos) m_pos(pos)
{ } { }
wxMoveEvent(const wxMoveEvent& event)
: wxEvent(event),
m_pos(event.m_pos)
{ }
wxPoint GetPosition() const { return m_pos; } wxPoint GetPosition() const { return m_pos; }
@@ -1092,6 +1125,9 @@ public:
wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0) wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0)
: wxEvent(Id, type) : wxEvent(Id, type)
{ m_active = active; } { m_active = active; }
wxActivateEvent(const wxActivateEvent& event)
: wxEvent(event)
{ m_active = event.m_active; }
bool GetActive() const { return m_active; } bool GetActive() const { return m_active; }
@@ -1135,6 +1171,9 @@ public:
wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0) wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0)
: wxEvent(id, type) : wxEvent(id, type)
{ m_menuId = id; } { m_menuId = id; }
wxMenuEvent(const wxMenuEvent & event)
: wxEvent(event)
{ m_menuId = event.m_menuId; }
// only for wxEVT_MENU_HIGHLIGHT // only for wxEVT_MENU_HIGHLIGHT
int GetMenuId() const { return m_menuId; } int GetMenuId() const { return m_menuId; }
@@ -1168,6 +1207,16 @@ public:
{ {
#if WXWIN_COMPATIBILITY #if WXWIN_COMPATIBILITY
m_force = FALSE; m_force = FALSE;
#endif // WXWIN_COMPATIBILITY
}
wxCloseEvent(const wxCloseEvent & event)
: wxEvent(event),
m_loggingOff(event.m_loggingOff),
m_veto(event.m_veto),
m_canVeto(event.m_canVeto)
{
#if WXWIN_COMPATIBILITY
m_force = event.m_force;
#endif // WXWIN_COMPATIBILITY #endif // WXWIN_COMPATIBILITY
} }
@@ -1220,6 +1269,9 @@ public:
wxShowEvent(int id = 0, bool show = FALSE) wxShowEvent(int id = 0, bool show = FALSE)
: wxEvent(id, wxEVT_SHOW) : wxEvent(id, wxEVT_SHOW)
{ m_show = show; } { m_show = show; }
wxShowEvent(const wxShowEvent & event)
: wxEvent(event)
{ m_show = event.m_show; }
void SetShow(bool show) { m_show = show; } void SetShow(bool show) { m_show = show; }
bool GetShow() const { return m_show; } bool GetShow() const { return m_show; }
@@ -1243,6 +1295,9 @@ public:
wxIconizeEvent(int id = 0, bool iconized = TRUE) wxIconizeEvent(int id = 0, bool iconized = TRUE)
: wxEvent(id, wxEVT_ICONIZE) : wxEvent(id, wxEVT_ICONIZE)
{ m_iconized = iconized; } { m_iconized = iconized; }
wxIconizeEvent(const wxIconizeEvent & event)
: wxEvent(event)
{ m_iconized = event.m_iconized; }
// return true if the frame was iconized, false if restored // return true if the frame was iconized, false if restored
bool Iconized() const { return m_iconized; } bool Iconized() const { return m_iconized; }
@@ -1318,6 +1373,14 @@ public:
m_joyStick(joystick) m_joyStick(joystick)
{ {
} }
wxJoystickEvent(const wxJoystickEvent & event)
: wxEvent(event),
m_pos(event.m_pos),
m_zPosition(event.m_zPosition),
m_buttonChange(event.m_buttonChange),
m_buttonState(event.m_buttonState),
m_joyStick(event.m_joyStick)
{ }
wxPoint GetPosition() const { return m_pos; } wxPoint GetPosition() const { return m_pos; }
int GetZPosition() const { return m_zPosition; } int GetZPosition() const { return m_zPosition; }
@@ -1432,6 +1495,15 @@ public:
m_setText = m_setText =
m_setChecked = FALSE; m_setChecked = FALSE;
} }
wxUpdateUIEvent(const wxUpdateUIEvent & event)
: wxCommandEvent(event),
m_checked(event.m_checked),
m_enabled(event.m_enabled),
m_setEnabled(event.m_setEnabled),
m_setText(event.m_setText),
m_setChecked(event.m_setChecked),
m_text(event.m_text)
{ }
bool GetChecked() const { return m_checked; } bool GetChecked() const { return m_checked; }
bool GetEnabled() const { return m_enabled; } bool GetEnabled() const { return m_enabled; }
@@ -1567,6 +1639,10 @@ public:
: wxEvent(id, wxEVT_QUERY_NEW_PALETTE), : wxEvent(id, wxEVT_QUERY_NEW_PALETTE),
m_paletteRealized(FALSE) m_paletteRealized(FALSE)
{ } { }
wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event)
: wxEvent(event),
m_paletteRealized(event.m_paletteRealized)
{ }
// App sets this if it changes the palette. // App sets this if it changes the palette.
void SetPaletteRealized(bool realized) { m_paletteRealized = realized; } void SetPaletteRealized(bool realized) { m_paletteRealized = realized; }
@@ -1698,6 +1774,12 @@ public:
: wxCommandEvent(type, id), : wxCommandEvent(type, id),
m_pos(pt), m_target(), m_link() m_pos(pt), m_target(), m_link()
{ } { }
wxHelpEvent(const wxHelpEvent & event)
: wxCommandEvent(event),
m_pos(event.m_pos),
m_target(event.m_target),
m_link(event.m_link)
{ }
// Position of event (in screen coordinates) // Position of event (in screen coordinates)
const wxPoint& GetPosition() const { return m_pos; } const wxPoint& GetPosition() const { return m_pos; }
@@ -1739,6 +1821,10 @@ public:
: wxCommandEvent(type, id), : wxCommandEvent(type, id),
m_pos(pt) m_pos(pt)
{ } { }
wxContextMenuEvent(const wxContextMenuEvent & event)
: wxCommandEvent(event),
m_pos(event.m_pos)
{ }
// Position of event (in screen coordinates) // Position of event (in screen coordinates)
const wxPoint& GetPosition() const { return m_pos; } const wxPoint& GetPosition() const { return m_pos; }
@@ -1765,6 +1851,10 @@ public:
: wxEvent(0, wxEVT_IDLE), : wxEvent(0, wxEVT_IDLE),
m_requestMore(FALSE) m_requestMore(FALSE)
{ } { }
wxIdleEvent(const wxIdleEvent & event)
: wxEvent(event),
m_requestMore(event.m_requestMore)
{ }
void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; } void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; }
bool MoreRequested() const { return m_requestMore; } bool MoreRequested() const { return m_requestMore; }

View File

@@ -74,6 +74,27 @@ public:
, m_next(sm_first) , m_next(sm_first)
{ sm_first = this; } { sm_first = this; }
~wxClassInfo()
{
if (sm_first == this)
{
sm_first = m_next;
}
else
{
wxClassInfo * info = sm_first;
while (info)
{
if (info->m_next == this)
{
info->m_next = m_next;
break;
}
info = info->m_next;
}
}
}
wxObject *CreateObject() { return m_objectConstructor ? (*m_objectConstructor)() : 0; } wxObject *CreateObject() { return m_objectConstructor ? (*m_objectConstructor)() : 0; }
const wxChar *GetClassName() const { return m_className; } const wxChar *GetClassName() const { return m_className; }