X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f3855ef064498aadea229d8202eedd78aed3f8e1..4fcd73bd9b5d346834d54775fa1d89fe2f685030:/include/wx/gtk1/frame.h diff --git a/include/wx/gtk1/frame.h b/include/wx/gtk1/frame.h index 05796513d9..829a83fc5f 100644 --- a/include/wx/gtk1/frame.h +++ b/include/wx/gtk1/frame.h @@ -18,6 +18,7 @@ #include "wx/defs.h" #include "wx/object.h" #include "wx/window.h" +#include "wx/icon.h" //----------------------------------------------------------------------------- // classes @@ -63,13 +64,13 @@ public: virtual void GetClientSize( int *width, int *height ) const; wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); } - + virtual void SetClientSize( int const width, int const height ); virtual void SetSize( int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO ); virtual void SetSize( int width, int height ); - + virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0, const wxString& name = "statusBar"); virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id, @@ -82,7 +83,7 @@ public: virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, const wxString& name = wxToolBarNameStr); virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name ); - virtual wxToolBar *GetToolBar(void) const; + virtual wxToolBar *GetToolBar() const; inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } virtual void SetMenuBar( wxMenuBar *menuBar ); @@ -93,22 +94,24 @@ public: virtual void SetIcon( const wxIcon &icon ); virtual void Iconize( bool WXUNUSED(iconize)) { } - virtual bool IsIconized(void) const { return FALSE; } - bool Iconized(void) const { return IsIconized(); } + virtual bool IsIconized() const { return FALSE; } + bool Iconized() const { return IsIconized(); } virtual void Maximize(bool WXUNUSED(maximize)) {} - virtual void Restore(void) {} + virtual void Restore() {} + void OnCloseWindow( wxCloseEvent& event ); void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp void OnSize( wxSizeEvent &event ); - void OnCloseWindow( wxCloseEvent& event ); - void OnIdle(wxIdleEvent& event ); + + void OnMenuHighlight( wxMenuEvent& event ); // implementation - + virtual void GtkOnSize( int x, int y, int width, int height ); virtual wxPoint GetClientAreaOrigin() const; void DoMenuUpdates(); void DoMenuUpdates(wxMenu* menu); + virtual void OnInternalIdle(); wxMenuBar *m_frameMenuBar; wxStatusBar *m_frameStatusBar;