]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/gtk/frame.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifndef __GTKFRAMEH__ | |
12 | #define __GTKFRAMEH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface "frame.h" | |
16 | #endif | |
17 | ||
18 | //----------------------------------------------------------------------------- | |
19 | // classes | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
22 | class wxMDIChildFrame; | |
23 | class wxMDIClientWindow; | |
24 | class wxMenu; | |
25 | class wxMenuBar; | |
26 | class wxToolBar; | |
27 | class wxStatusBar; | |
28 | ||
29 | //----------------------------------------------------------------------------- | |
30 | // wxFrameGTK | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | class wxFrameGTK : public wxFrameBase | |
34 | { | |
35 | public: | |
36 | // construction | |
37 | wxFrameGTK() { Init(); } | |
38 | wxFrameGTK(wxWindow *parent, | |
39 | wxWindowID id, | |
40 | const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxDEFAULT_FRAME_STYLE, | |
44 | const wxString& name = wxFrameNameStr) | |
45 | { | |
46 | Init(); | |
47 | ||
48 | Create(parent, id, title, pos, size, style, name); | |
49 | } | |
50 | ||
51 | bool Create(wxWindow *parent, | |
52 | wxWindowID id, | |
53 | const wxString& title, | |
54 | const wxPoint& pos = wxDefaultPosition, | |
55 | const wxSize& size = wxDefaultSize, | |
56 | long style = wxDEFAULT_FRAME_STYLE, | |
57 | const wxString& name = wxFrameNameStr); | |
58 | ||
59 | virtual ~wxFrameGTK(); | |
60 | ||
61 | // implement base class pure virtuals | |
62 | virtual void Maximize(bool maximize = TRUE); | |
63 | virtual bool IsMaximized() const; | |
64 | virtual void Iconize(bool iconize = TRUE); | |
65 | virtual bool IsIconized() const; | |
66 | virtual void SetIcon(const wxIcon& icon); | |
67 | virtual void MakeModal(bool modal = TRUE); | |
68 | virtual void Restore(); | |
69 | ||
70 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); | |
71 | virtual bool IsFullScreen() const { return m_fsIsShowing; }; | |
72 | ||
73 | #if wxUSE_STATUSBAR | |
74 | virtual void PositionStatusBar(); | |
75 | ||
76 | virtual wxStatusBar* CreateStatusBar(int number = 1, | |
77 | long style = wxST_SIZEGRIP, | |
78 | wxWindowID id = 0, | |
79 | const wxString& name = wxStatusLineNameStr); | |
80 | #endif // wxUSE_STATUSBAR | |
81 | ||
82 | #if wxUSE_TOOLBAR | |
83 | virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT, | |
84 | wxWindowID id = -1, | |
85 | const wxString& name = wxToolBarNameStr); | |
86 | void SetToolBar(wxToolBar *toolbar); | |
87 | #endif // wxUSE_TOOLBAR | |
88 | ||
89 | virtual bool Show(bool show = TRUE); | |
90 | ||
91 | virtual void SetTitle( const wxString &title ); | |
92 | virtual wxString GetTitle() const { return m_title; } | |
93 | ||
94 | // implementation from now on | |
95 | // -------------------------- | |
96 | ||
97 | // move the window to the specified location and resize it: this is called | |
98 | // from both DoSetSize() and DoSetClientSize() | |
99 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
100 | ||
101 | // GTK callbacks | |
102 | virtual void GtkOnSize( int x, int y, int width, int height ); | |
103 | virtual void OnInternalIdle(); | |
104 | ||
105 | // do *not* call this to iconize the frame, this is a private function! | |
106 | void SetIconizeState(bool iconic); | |
107 | ||
108 | wxString m_title; | |
109 | int m_miniEdge, | |
110 | m_miniTitle; | |
111 | GtkWidget *m_mainWidget; | |
112 | bool m_menuBarDetached; | |
113 | bool m_toolBarDetached; | |
114 | bool m_insertInClientArea; /* not from within OnCreateXXX */ | |
115 | ||
116 | bool m_fsIsShowing; /* full screen */ | |
117 | long m_fsSaveStyle; | |
118 | long m_fsSaveFlag; | |
119 | wxRect m_fsSaveFrame; | |
120 | ||
121 | protected: | |
122 | // common part of all ctors | |
123 | void Init(); | |
124 | ||
125 | // override wxWindow methods to take into account tool/menu/statusbars | |
126 | virtual void DoSetSize(int x, int y, | |
127 | int width, int height, | |
128 | int sizeFlags = wxSIZE_AUTO); | |
129 | ||
130 | virtual void DoSetClientSize(int width, int height); | |
131 | virtual void DoGetClientSize( int *width, int *height ) const; | |
132 | ||
133 | #if wxUSE_MENUS_NATIVE | |
134 | virtual void DetachMenuBar(); | |
135 | virtual void AttachMenuBar(wxMenuBar *menubar); | |
136 | #endif // wxUSE_MENUS_NATIVE | |
137 | ||
138 | // is the frame currently iconized? | |
139 | bool m_isIconized; | |
140 | }; | |
141 | ||
142 | #endif // __GTKFRAMEH__ |