X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/76fcf0f239c37fbcfe8dcc12f0c59387de96be2a..aa0ffd1d926cb1282fb75a1ce0e083421ade2f0b:/include/wx/gtk1/window.h diff --git a/include/wx/gtk1/window.h b/include/wx/gtk1/window.h index cfb1e5af1b..746f9c61a6 100644 --- a/include/wx/gtk1/window.h +++ b/include/wx/gtk1/window.h @@ -65,8 +65,6 @@ public: virtual bool Reparent( wxWindowBase *newParent ); virtual void WarpPointer(int x, int y); - virtual void CaptureMouse(); - virtual void ReleaseMouse(); virtual void Refresh( bool eraseBackground = TRUE, const wxRect *rect = (const wxRect *) NULL ); @@ -168,7 +166,7 @@ public: // see the docs in src/gtk/window.cpp GtkWidget *m_widget; // mostly the widget seen by the rest of GTK GtkWidget *m_wxwindow; // mostly the client area as per wxWindows - + // this widget will be queried for GTK's focus events GtkWidget *m_focusWidget; @@ -193,6 +191,7 @@ public: bool m_resizing:1; bool m_isStaticBox:1; // faster than IS_KIND_OF bool m_isRadioButton:1; // faster than IS_KIND_OF + bool m_isListBox:1; // faster than IS_KIND_OF bool m_isFrame:1; // faster than IS_KIND_OF bool m_acceptsFocus:1; // not wxStaticBox, not wxStaticBitmap etc. bool m_isScrolling; @@ -228,6 +227,9 @@ public: virtual void DoSetClientSize(int width, int height); virtual void DoMoveWindow(int x, int y, int width, int height); + virtual void DoCaptureMouse(); + virtual void DoReleaseMouse(); + #if wxUSE_TOOLTIPS virtual void DoSetToolTip( wxToolTip *tip ); #endif // wxUSE_TOOLTIPS