X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f5f7c82d1ffa5124c55925062b4b350f07640d0..e1dc4cc6872ce44134a881feeb0ede2b8b91af55:/include/wx/gtk1/frame.h diff --git a/include/wx/gtk1/frame.h b/include/wx/gtk1/frame.h index 2637df833d..af0fe7328a 100644 --- a/include/wx/gtk1/frame.h +++ b/include/wx/gtk1/frame.h @@ -2,9 +2,8 @@ // Name: frame.h // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling, Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -65,36 +64,33 @@ public: virtual void GetClientSize( int *width, int *height ) const; virtual void SetClientSize( int const width, int const height ); - - // set minimal/maxmimal size for the frame - virtual void SetSizeHints(int minW, int minH, - int maxW = -1, int maxH = -1, - int incW = -1 ); 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, const wxString& name ); virtual wxStatusBar *GetStatusBar() const; + inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; } virtual void SetStatusText( const wxString &text, int number = 0 ); virtual void SetStatusWidths( int n, const int widths_field[] ); - virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, + 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; - + inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } + virtual void SetMenuBar( wxMenuBar *menuBar ); virtual wxMenuBar *GetMenuBar() const; virtual void SetTitle( const wxString &title ); virtual wxString GetTitle() const { return m_title; } - + 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 void Maximize(void) {} + virtual void Maximize(bool WXUNUSED(maximize)) {} virtual void Restore(void) {} void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp @@ -102,7 +98,10 @@ public: void OnCloseWindow( wxCloseEvent& event ); void OnIdle(wxIdleEvent& event); - virtual void AddChild( wxWindow *child ); + void AddChild( wxWindow *child ); + + // implementation + virtual void GtkOnSize( int x, int y, int width, int height ); private: