X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a9523f25dbdf9f80382276a419032cfe7f72f4c..0492c5a094d1baac126331385d66d2f66aa5db52:/include/wx/gtk1/frame.h?ds=sidebyside diff --git a/include/wx/gtk1/frame.h b/include/wx/gtk1/frame.h index c9274982ac..671e1b783a 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 ///////////////////////////////////////////////////////////////////////////// @@ -19,6 +18,7 @@ #include "wx/defs.h" #include "wx/object.h" #include "wx/window.h" +#include "wx/icon.h" //----------------------------------------------------------------------------- // classes @@ -60,11 +60,16 @@ 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; - virtual void SetClientSize( int const width, int const height ); + wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); } + + virtual void SetClientSize( int width, int 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"); @@ -78,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 ); @@ -89,37 +94,32 @@ 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); - virtual void AddChild( wxWindow *child ); - virtual void GtkOnSize( int x, int y, int width, int height ); + void OnMenuHighlight( wxMenuEvent& event ); -private: - friend wxWindow; - friend wxMDIChildFrame; - friend wxMDIClientWindow; + // implementation - // update frame's menus (called from OnIdle) + virtual void GtkOnSize( int x, int y, int width, int height ); + virtual wxPoint GetClientAreaOrigin() const; void DoMenuUpdates(); void DoMenuUpdates(wxMenu* menu); - virtual void ImplementSetPosition(); + virtual void OnInternalIdle(); - GtkWidget *m_mainWindow; wxMenuBar *m_frameMenuBar; + wxMenuBar *m_mdiMenuBar; 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() };