-
- wxFrame();
- wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
- bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
- const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
- long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
- ~wxFrame();
- bool Destroy();
-
- virtual bool Show( bool show );
- virtual void Enable( bool enable );
-
- virtual void GetClientSize( int *width, int *height ) const;
-
- // set minimal/maxmimal size for the frame
- virtual void SetSizeHints( int minW, int minH, int maxW, int maxH, int incW = -1 );
-
- virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
- const wxString& name = "statusBar");
- virtual wxStatusBar *GetStatusBar();
- virtual void SetStatusText( const wxString &text, int number = 0 );
- virtual void SetStatusWidths( int n, int *width );
-
- virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
- const wxString& name = wxToolBarNameStr);
- virtual wxToolBar *GetToolBar();
-
- virtual void SetMenuBar( wxMenuBar *menuBar );
- virtual wxMenuBar *GetMenuBar();
-
- void SetTitle( const wxString &title );
- wxString GetTitle() const { return m_title; }
-
- void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
- void OnSize( wxSizeEvent &event );
- void OnCloseWindow( wxCloseEvent& event );
- void OnIdle(wxIdleEvent& event);
-
- virtual void AddChild( wxWindow *child );
- virtual void GtkOnSize( int x, int y, int width, int height );
+ // construction
+ wxFrame() { Init(); }
+ wxFrame(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ const wxString& name = wxFrameNameStr)
+ {
+ Init();
+
+ Create(parent, id, title, pos, size, style, name);
+ }
+
+ bool Create(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE,
+ const wxString& name = wxFrameNameStr);
+
+ virtual ~wxFrame();
+
+#if wxUSE_STATUSBAR
+ void SetStatusBar(wxStatusBar *statbar);
+#endif // wxUSE_STATUSBAR
+
+#if wxUSE_TOOLBAR
+ void SetToolBar(wxToolBar *toolbar);
+#endif // wxUSE_TOOLBAR
+
+ virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
+ wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); }
+
+#if wxUSE_LIBHILDON
+ // in Hildon environment all frames are always shown maximized
+ virtual bool IsMaximized() const { return true; }
+#endif // wxUSE_LIBHILDON
+
+ // implementation from now on
+ // --------------------------
+
+ // GTK callbacks
+ virtual void OnInternalIdle();
+
+protected:
+ // common part of all ctors
+ void Init();
+
+ // override wxWindow methods to take into account tool/menu/statusbars
+ virtual void DoGetClientSize( int *width, int *height ) const;
+
+#if wxUSE_MENUS_NATIVE
+ virtual void DetachMenuBar();
+ virtual void AttachMenuBar(wxMenuBar *menubar);
+#endif // wxUSE_MENUS_NATIVE