]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: frame.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Id: | |
7 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __GTKFRAMEH__ | |
13 | #define __GTKFRAMEH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface | |
17 | #endif | |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
21 | #include "wx/window.h" | |
22 | ||
23 | //----------------------------------------------------------------------------- | |
24 | // classes | |
25 | //----------------------------------------------------------------------------- | |
26 | ||
27 | class wxMDIChildFrame; | |
28 | class wxMDIClientWindow; | |
29 | class wxMenu; | |
30 | class wxMenuBar; | |
31 | class wxToolBar; | |
32 | class wxStatusBar; | |
33 | ||
34 | class wxFrame; | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // global data | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
40 | extern const char *wxFrameNameStr; | |
41 | extern const char *wxToolBarNameStr; | |
42 | ||
43 | //----------------------------------------------------------------------------- | |
44 | // wxFrame | |
45 | //----------------------------------------------------------------------------- | |
46 | ||
47 | class wxFrame: public wxWindow | |
48 | { | |
49 | DECLARE_DYNAMIC_CLASS(wxFrame) | |
50 | public: | |
51 | ||
52 | wxFrame(); | |
53 | wxFrame( wxWindow *parent, wxWindowID id, const wxString &title, | |
54 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
55 | long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr ); | |
56 | bool Create( wxWindow *parent, wxWindowID id, const wxString &title, | |
57 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, | |
58 | long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr ); | |
59 | ~wxFrame(); | |
60 | bool Destroy(); | |
61 | ||
62 | virtual bool Show( bool show ); | |
63 | virtual void Enable( bool enable ); | |
64 | virtual void Centre( int direction = wxHORIZONTAL ); | |
65 | ||
66 | virtual void GetClientSize( int *width, int *height ) const; | |
67 | virtual void SetClientSize( int const width, int const height ); | |
68 | ||
69 | // set minimal/maxmimal size for the frame | |
70 | virtual void SetSizeHints(int minW, int minH, | |
71 | int maxW = -1, int maxH = -1, | |
72 | int incW = -1 ); | |
73 | ||
74 | virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0, | |
75 | const wxString& name = "statusBar"); | |
76 | virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id, | |
77 | const wxString& name ); | |
78 | virtual wxStatusBar *GetStatusBar() const; | |
79 | virtual void SetStatusText( const wxString &text, int number = 0 ); | |
80 | virtual void SetStatusWidths( int n, const int widths_field[] ); | |
81 | ||
82 | virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, | |
83 | const wxString& name = wxToolBarNameStr); | |
84 | virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name ); | |
85 | virtual wxToolBar *GetToolBar(void) const; | |
86 | ||
87 | virtual void SetMenuBar( wxMenuBar *menuBar ); | |
88 | virtual wxMenuBar *GetMenuBar() const; | |
89 | ||
90 | virtual void SetTitle( const wxString &title ); | |
91 | virtual wxString GetTitle() const { return m_title; } | |
92 | ||
93 | virtual void SetIcon( const wxIcon &icon ); | |
94 | virtual void Iconize( bool WXUNUSED(iconize)) { } | |
95 | virtual bool IsIconized(void) const { return FALSE; } | |
96 | bool Iconized(void) const { return IsIconized(); } | |
97 | virtual void Maximize(bool WXUNUSED(maximize)) {} | |
98 | virtual void Restore(void) {} | |
99 | ||
100 | void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp | |
101 | void OnSize( wxSizeEvent &event ); | |
102 | void OnCloseWindow( wxCloseEvent& event ); | |
103 | void OnIdle(wxIdleEvent& event); | |
104 | ||
105 | virtual void AddChild( wxWindow *child ); | |
106 | virtual void GtkOnSize( int x, int y, int width, int height ); | |
107 | ||
108 | private: | |
109 | friend wxWindow; | |
110 | friend wxMDIChildFrame; | |
111 | friend wxMDIClientWindow; | |
112 | ||
113 | // update frame's menus (called from OnIdle) | |
114 | void DoMenuUpdates(); | |
115 | void DoMenuUpdates(wxMenu* menu); | |
116 | virtual void ImplementSetPosition(); | |
117 | ||
118 | GtkWidget *m_mainWindow; | |
119 | wxMenuBar *m_frameMenuBar; | |
120 | wxStatusBar *m_frameStatusBar; | |
121 | wxToolBar *m_frameToolBar; | |
122 | int m_toolBarHeight; | |
123 | bool m_addPrivateChild; // for toolbar (and maybe menubar) | |
124 | wxString m_title; | |
125 | wxIcon m_icon; | |
126 | ||
127 | DECLARE_EVENT_TABLE() | |
128 | }; | |
129 | ||
130 | #endif // __GTKFRAMEH__ |