X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab16f4a30034063c1bbd1b0977a5093e7ff88602..621793f45e003588e32f7a6ca10cd238f7c96fe6:/include/wx/gtk/frame.h?ds=sidebyside diff --git a/include/wx/gtk/frame.h b/include/wx/gtk/frame.h index e98c4acd17..c87f59f47c 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 ///////////////////////////////////////////////////////////////////////////// @@ -19,14 +18,17 @@ #include "wx/defs.h" #include "wx/object.h" #include "wx/window.h" -#include "wx/menu.h" -#include "wx/statusbr.h" //----------------------------------------------------------------------------- // classes //----------------------------------------------------------------------------- class wxMDIChildFrame; +class wxMDIClientWindow; +class wxMenu; +class wxMenuBar; +class wxToolBar; +class wxStatusBar; class wxFrame; @@ -35,6 +37,7 @@ class wxFrame; //----------------------------------------------------------------------------- extern const char *wxFrameNameStr; +extern const char *wxToolBarNameStr; //----------------------------------------------------------------------------- // wxFrame @@ -42,8 +45,9 @@ extern const char *wxFrameNameStr; class wxFrame: public wxWindow { + DECLARE_DYNAMIC_CLASS(wxFrame) public: - // construction + wxFrame(); wxFrame( wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, @@ -54,55 +58,62 @@ public: ~wxFrame(); bool Destroy(); - // operations - // virtual bool Show( bool show ); - virtual void Enable( bool enable ); + virtual void Centre( int direction = wxHORIZONTAL ); - // frame size virtual void GetClientSize( int *width, int *height ) const; - // set minimal size for the frame (@@@ other params not implemented) - void SetSizeHints(int minW, int minH, - int maxW = -1, int maxH = -1, - int incW = -1); - - // status bar - virtual bool CreateStatusBar( int number = 1 ); - wxStatusBar *GetStatusBar(); + 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, + 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, int *width ); + virtual void SetStatusWidths( int n, const int widths_field[] ); - // menu bar - void SetMenuBar( wxMenuBar *menuBar ); - wxMenuBar *GetMenuBar(); + 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; } - // frame title - void SetTitle( const wxString &title ); - wxString GetTitle() const { return m_title; } + virtual void SetMenuBar( wxMenuBar *menuBar ); + virtual wxMenuBar *GetMenuBar() const; - // implementation - void OnActivate( wxActivateEvent &event ) { } // called from docview.cpp + 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(bool WXUNUSED(maximize)) {} + virtual void Restore(void) {} + + void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp void OnSize( wxSizeEvent &event ); void OnCloseWindow( wxCloseEvent& event ); void OnIdle(wxIdleEvent& event); + // implementation + virtual void GtkOnSize( int x, int y, int width, int height ); - -private: - friend wxWindow; - friend wxMDIChildFrame; - - // update frame's menus (called from OnIdle) + virtual wxPoint GetClientAreaOrigin() const; void DoMenuUpdates(); void DoMenuUpdates(wxMenu* menu); - GtkWidget *m_mainWindow; wxMenuBar *m_frameMenuBar; wxStatusBar *m_frameStatusBar; - bool m_doingOnSize; + wxToolBar *m_frameToolBar; wxString m_title; + wxIcon m_icon; - DECLARE_DYNAMIC_CLASS(wxFrame) DECLARE_EVENT_TABLE() };