- virtual void SetStatusWidths( int n, int *width );
- wxStatusBar *GetStatusBar(void);
- wxMenuBar *GetMenuBar(void);
- void SetTitle( const wxString &title );
- wxString GetTitle(void) const;
- void OnActivate( wxActivateEvent &WXUNUSED(event) ) {};
- void OnIdle( wxIdleEvent &event );
-
- //private:
-
- void GtkOnSize( int x, int y, int width, int height );
- void DoMenuUpdates(void);
+ virtual void SetStatusWidths( int n, const int widths_field[] );
+
+ 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() 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() const { return FALSE; }
+ bool Iconized() const { return IsIconized(); }
+ virtual void Maximize(bool WXUNUSED(maximize)) {}
+ virtual void Restore() {}
+
+ void OnCloseWindow( wxCloseEvent& event );
+ void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
+ void OnSize( wxSizeEvent &event );
+
+ void OnMenuHighlight( wxMenuEvent& event );
+
+ // implementation
+
+ virtual void GtkOnSize( int x, int y, int width, int height );
+ virtual wxPoint GetClientAreaOrigin() const;
+ void DoMenuUpdates();