X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a9523f25dbdf9f80382276a419032cfe7f72f4c..0dbd6262a9ee7d735fb3930707346298f71b2cb7:/include/wx/gtk/frame.h?ds=sidebyside diff --git a/include/wx/gtk/frame.h b/include/wx/gtk/frame.h index c9274982ac..05796513d9 100644 --- a/include/wx/gtk/frame.h +++ b/include/wx/gtk/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 ///////////////////////////////////////////////////////////////////////////// @@ -60,12 +59,17 @@ public: bool Destroy(); virtual bool Show( bool show ); - virtual void Enable( bool enable ); virtual void Centre( int direction = wxHORIZONTAL ); 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, @@ -97,29 +101,21 @@ public: void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp void OnSize( wxSizeEvent &event ); void OnCloseWindow( wxCloseEvent& event ); - void OnIdle(wxIdleEvent& event); + void OnIdle(wxIdleEvent& event ); - virtual void AddChild( wxWindow *child ); + // implementation + virtual void GtkOnSize( int x, int y, int width, int height ); - -private: - friend wxWindow; - friend wxMDIChildFrame; - friend wxMDIClientWindow; - - // update frame's menus (called from OnIdle) + virtual wxPoint GetClientAreaOrigin() const; void DoMenuUpdates(); void DoMenuUpdates(wxMenu* menu); - virtual void ImplementSetPosition(); - GtkWidget *m_mainWindow; wxMenuBar *m_frameMenuBar; wxStatusBar *m_frameStatusBar; wxToolBar *m_frameToolBar; - int m_toolBarHeight; - bool m_addPrivateChild; // for toolbar (and maybe menubar) wxString m_title; wxIcon m_icon; + int m_miniEdge,m_miniTitle; DECLARE_EVENT_TABLE() };