]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: frame.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
19717c50 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "frame.h" | |
12 | #endif | |
13 | ||
14 | #include "wx/frame.h" | |
15 | #include "wx/dialog.h" | |
16 | #include "wx/control.h" | |
17 | #include "wx/app.h" | |
cf4219e7 RR |
18 | #include "wx/menu.h" |
19 | #include "wx/toolbar.h" | |
20 | #include "wx/statusbr.h" | |
362c6693 | 21 | #include "wx/dcclient.h" |
83624f79 RR |
22 | |
23 | #include "glib.h" | |
24 | #include "gdk/gdk.h" | |
25 | #include "gtk/gtk.h" | |
c801d85f KB |
26 | #include "wx/gtk/win_gtk.h" |
27 | ||
2f2aa628 RR |
28 | //----------------------------------------------------------------------------- |
29 | // constants | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
907789a0 | 32 | const int wxMENU_HEIGHT = 27; |
c67daf87 | 33 | const int wxSTATUS_HEIGHT = 25; |
c801d85f | 34 | |
2f2aa628 RR |
35 | //----------------------------------------------------------------------------- |
36 | // data | |
37 | //----------------------------------------------------------------------------- | |
38 | ||
c801d85f KB |
39 | extern wxList wxTopLevelWindows; |
40 | extern wxList wxPendingDelete; | |
41 | ||
42 | //----------------------------------------------------------------------------- | |
2f2aa628 | 43 | // "size_allocate" |
c801d85f | 44 | //----------------------------------------------------------------------------- |
c801d85f | 45 | |
2f2aa628 | 46 | static void gtk_frame_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxFrame *win ) |
ed7a557b | 47 | { |
fb1585ae | 48 | if (!win->HasVMT()) return; |
8bbe427f | 49 | |
c801d85f | 50 | /* |
fb1585ae RR |
51 | printf( "OnFrameResize from " ); |
52 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
53 | printf( win->GetClassInfo()->GetClassName() ); | |
54 | printf( ".\n" ); | |
c801d85f | 55 | */ |
8bbe427f | 56 | |
e52f60e6 RR |
57 | if ((win->m_width != alloc->width) || (win->m_height != alloc->height)) |
58 | { | |
59 | win->m_sizeSet = FALSE; | |
60 | win->m_width = alloc->width; | |
61 | win->m_height = alloc->height; | |
62 | } | |
362c6693 | 63 | } |
c801d85f KB |
64 | |
65 | //----------------------------------------------------------------------------- | |
2f2aa628 RR |
66 | // "delete_event" |
67 | //----------------------------------------------------------------------------- | |
c801d85f | 68 | |
2f2aa628 | 69 | static gint gtk_frame_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxFrame *win ) |
ed7a557b | 70 | { |
c801d85f | 71 | /* |
fb1585ae RR |
72 | printf( "OnDelete from " ); |
73 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
74 | printf( win->GetClassInfo()->GetClassName() ); | |
75 | printf( ".\n" ); | |
c801d85f | 76 | */ |
ed7a557b | 77 | |
fb1585ae | 78 | win->Close(); |
c801d85f | 79 | |
fb1585ae | 80 | return TRUE; |
362c6693 | 81 | } |
c801d85f | 82 | |
47908e25 | 83 | //----------------------------------------------------------------------------- |
2f2aa628 RR |
84 | // "configure_event" |
85 | //----------------------------------------------------------------------------- | |
47908e25 | 86 | |
2f2aa628 | 87 | static gint gtk_frame_configure_callback( GtkWidget *WXUNUSED(widget), GdkEventConfigure *event, wxFrame *win ) |
47908e25 | 88 | { |
fb1585ae | 89 | if (!win->HasVMT()) return FALSE; |
8bbe427f | 90 | |
fb1585ae RR |
91 | win->m_x = event->x; |
92 | win->m_y = event->y; | |
8bbe427f | 93 | |
36b3b54a RR |
94 | wxMoveEvent mevent( wxPoint(win->m_x,win->m_y), win->GetId() ); |
95 | mevent.SetEventObject( win ); | |
96 | win->GetEventHandler()->ProcessEvent( mevent ); | |
97 | ||
fb1585ae | 98 | return FALSE; |
362c6693 | 99 | } |
47908e25 | 100 | |
2f2aa628 RR |
101 | //----------------------------------------------------------------------------- |
102 | // wxFrame | |
c801d85f KB |
103 | //----------------------------------------------------------------------------- |
104 | ||
105 | BEGIN_EVENT_TABLE(wxFrame, wxWindow) | |
fb1585ae RR |
106 | EVT_SIZE(wxFrame::OnSize) |
107 | EVT_CLOSE(wxFrame::OnCloseWindow) | |
342b6a2f | 108 | EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight) |
c801d85f KB |
109 | END_EVENT_TABLE() |
110 | ||
111 | IMPLEMENT_DYNAMIC_CLASS(wxFrame,wxWindow) | |
112 | ||
19717c50 | 113 | wxFrame::wxFrame() |
c801d85f | 114 | { |
fb1585ae RR |
115 | m_frameMenuBar = (wxMenuBar *) NULL; |
116 | m_frameStatusBar = (wxStatusBar *) NULL; | |
117 | m_frameToolBar = (wxToolBar *) NULL; | |
118 | m_sizeSet = FALSE; | |
b2b3ccc5 RR |
119 | m_miniEdge = 0; |
120 | m_miniTitle = 0; | |
362c6693 | 121 | } |
c801d85f | 122 | |
ed7a557b | 123 | wxFrame::wxFrame( wxWindow *parent, wxWindowID id, const wxString &title, |
debe6624 JS |
124 | const wxPoint &pos, const wxSize &size, |
125 | long style, const wxString &name ) | |
c801d85f | 126 | { |
fb1585ae RR |
127 | m_frameMenuBar = (wxMenuBar *) NULL; |
128 | m_frameStatusBar = (wxStatusBar *) NULL; | |
129 | m_frameToolBar = (wxToolBar *) NULL; | |
130 | m_sizeSet = FALSE; | |
b2b3ccc5 RR |
131 | m_miniEdge = 0; |
132 | m_miniTitle = 0; | |
fb1585ae | 133 | Create( parent, id, title, pos, size, style, name ); |
362c6693 | 134 | } |
c801d85f | 135 | |
debe6624 | 136 | bool wxFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title, |
c801d85f | 137 | const wxPoint &pos, const wxSize &size, |
debe6624 | 138 | long style, const wxString &name ) |
c801d85f | 139 | { |
a802c3a1 | 140 | wxTopLevelWindows.Append( this ); |
8bbe427f | 141 | |
fb1585ae | 142 | m_needParent = FALSE; |
ed7a557b | 143 | |
fb1585ae | 144 | PreCreation( parent, id, pos, size, style, name ); |
c801d85f | 145 | |
fb1585ae | 146 | m_title = title; |
ed7a557b | 147 | |
fb1585ae RR |
148 | GtkWindowType win_type = GTK_WINDOW_TOPLEVEL; |
149 | if (style & wxSIMPLE_BORDER) win_type = GTK_WINDOW_POPUP; | |
8bbe427f | 150 | |
fb1585ae | 151 | m_widget = gtk_window_new( win_type ); |
8bbe427f | 152 | |
b292e2f5 RR |
153 | #ifdef __WXDEBUG__ |
154 | debug_focus_in( m_widget, "wxFrame::m_widget", name ); | |
155 | #endif | |
156 | ||
fb1585ae RR |
157 | if ((size.x != -1) && (size.y != -1)) |
158 | gtk_widget_set_usize( m_widget, m_width, m_height ); | |
159 | if ((pos.x != -1) && (pos.y != -1)) | |
160 | gtk_widget_set_uposition( m_widget, m_x, m_y ); | |
ed7a557b | 161 | |
fb1585ae RR |
162 | gtk_window_set_title( GTK_WINDOW(m_widget), title ); |
163 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); | |
ed7a557b | 164 | |
fb1585ae | 165 | gtk_widget_set( m_widget, "GtkWindow::allow_shrink", TRUE, NULL ); |
ed7a557b | 166 | |
fb1585ae RR |
167 | gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event", |
168 | GTK_SIGNAL_FUNC(gtk_frame_delete_callback), (gpointer)this ); | |
ed7a557b | 169 | |
fb1585ae RR |
170 | m_wxwindow = gtk_myfixed_new(); |
171 | gtk_widget_show( m_wxwindow ); | |
172 | GTK_WIDGET_UNSET_FLAGS( m_wxwindow, GTK_CAN_FOCUS ); | |
ed7a557b | 173 | |
b292e2f5 RR |
174 | #ifdef __WXDEBUG__ |
175 | debug_focus_in( m_wxwindow, "wxFrame::m_wxwindow", name ); | |
176 | #endif | |
177 | ||
fb1585ae | 178 | gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow ); |
ed7a557b | 179 | |
fb1585ae RR |
180 | gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate", |
181 | GTK_SIGNAL_FUNC(gtk_frame_size_callback), (gpointer)this ); | |
ed7a557b | 182 | |
fb1585ae RR |
183 | gtk_signal_connect( GTK_OBJECT(m_widget), "configure_event", |
184 | GTK_SIGNAL_FUNC(gtk_frame_configure_callback), (gpointer)this ); | |
8bbe427f | 185 | |
fb1585ae | 186 | if (m_parent) m_parent->AddChild( this ); |
8bbe427f | 187 | |
fb1585ae | 188 | PostCreation(); |
8bbe427f | 189 | |
fb1585ae | 190 | return TRUE; |
362c6693 | 191 | } |
c801d85f | 192 | |
19717c50 | 193 | wxFrame::~wxFrame() |
c801d85f | 194 | { |
fb1585ae RR |
195 | if (m_frameMenuBar) delete m_frameMenuBar; |
196 | if (m_frameStatusBar) delete m_frameStatusBar; | |
197 | if (m_frameToolBar) delete m_frameToolBar; | |
ed7a557b | 198 | |
fb1585ae | 199 | wxTopLevelWindows.DeleteObject( this ); |
0d2a2b60 RR |
200 | |
201 | if (wxTheApp->GetTopWindow() == this) | |
202 | { | |
203 | wxTheApp->SetTopWindow( (wxWindow*) NULL ); | |
204 | } | |
205 | ||
206 | if (wxTopLevelWindows.Number() == 0) | |
207 | { | |
208 | wxTheApp->ExitMainLoop(); | |
209 | } | |
362c6693 | 210 | } |
ed7a557b | 211 | |
debe6624 | 212 | bool wxFrame::Show( bool show ) |
c801d85f | 213 | { |
fb1585ae | 214 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 215 | |
35178437 | 216 | if (show && !m_sizeSet) |
fb1585ae | 217 | { |
8bbe427f VZ |
218 | // by calling GtkOnSize here, we don't have to call |
219 | // either after showing the frame, which would entail | |
220 | // much ugly flicker nor from within the size_allocate | |
221 | // handler, because GTK 1.1.X forbids that. | |
222 | ||
35178437 | 223 | GtkOnSize( m_x, m_y, m_width, m_height ); |
fb1585ae | 224 | } |
8bbe427f | 225 | |
fb1585ae | 226 | return wxWindow::Show( show ); |
362c6693 | 227 | } |
c801d85f | 228 | |
716b7364 | 229 | void wxFrame::OnCloseWindow( wxCloseEvent &event ) |
c801d85f | 230 | { |
fb1585ae | 231 | if (GetEventHandler()->OnClose() || event.GetForce()) this->Destroy(); |
362c6693 | 232 | } |
c801d85f | 233 | |
19717c50 | 234 | bool wxFrame::Destroy() |
c801d85f | 235 | { |
fb1585ae | 236 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 237 | |
fb1585ae | 238 | if (!wxPendingDelete.Member(this)) wxPendingDelete.Append(this); |
ed7a557b | 239 | |
fb1585ae | 240 | return TRUE; |
c801d85f KB |
241 | } |
242 | ||
6ca41e57 RR |
243 | wxPoint wxFrame::GetClientAreaOrigin() const |
244 | { | |
b2b3ccc5 | 245 | wxPoint pt( m_miniEdge, m_miniEdge + m_miniTitle ); |
fb1585ae RR |
246 | if (m_frameMenuBar) |
247 | { | |
248 | int h = 0; | |
249 | m_frameMenuBar->GetSize( (int*)NULL, &h ); | |
907789a0 | 250 | pt.y += h; |
fb1585ae RR |
251 | } |
252 | if (m_frameToolBar) | |
253 | { | |
254 | int h = 0; | |
255 | m_frameToolBar->GetSize( (int*)NULL, &h ); | |
256 | pt.y += h; | |
257 | } | |
258 | return pt; | |
6ca41e57 RR |
259 | } |
260 | ||
fb1585ae | 261 | void wxFrame::SetSize( int x, int y, int width, int height, int sizeFlags ) |
903f689b | 262 | { |
fb1585ae | 263 | wxASSERT_MSG( (m_widget != NULL), "invalid window" ); |
8bbe427f | 264 | |
fb1585ae RR |
265 | // Don't do anything for children of wxMDIChildFrame |
266 | if (!m_wxwindow) return; | |
267 | ||
268 | if (m_resizing) return; // I don't like recursions | |
269 | m_resizing = TRUE; | |
270 | ||
271 | int old_x = m_x; | |
272 | int old_y = m_y; | |
273 | int old_width = m_width; | |
274 | int old_height = m_height; | |
8bbe427f | 275 | |
fb1585ae RR |
276 | if ((sizeFlags & wxSIZE_USE_EXISTING) == wxSIZE_USE_EXISTING) |
277 | { | |
278 | if (x != -1) m_x = x; | |
279 | if (y != -1) m_y = y; | |
280 | if (width != -1) m_width = width; | |
281 | if (height != -1) m_height = height; | |
282 | } | |
283 | else | |
284 | { | |
285 | m_x = x; | |
286 | m_y = y; | |
287 | m_width = width; | |
288 | m_height = height; | |
289 | } | |
290 | ||
291 | if ((sizeFlags & wxSIZE_AUTO_WIDTH) == wxSIZE_AUTO_WIDTH) | |
292 | { | |
293 | if (width == -1) m_width = 80; | |
294 | } | |
295 | ||
296 | if ((sizeFlags & wxSIZE_AUTO_HEIGHT) == wxSIZE_AUTO_HEIGHT) | |
297 | { | |
298 | if (height == -1) m_height = 26; | |
299 | } | |
8bbe427f | 300 | |
fb1585ae RR |
301 | if ((m_minWidth != -1) && (m_width < m_minWidth)) m_width = m_minWidth; |
302 | if ((m_minHeight != -1) && (m_height < m_minHeight)) m_height = m_minHeight; | |
0c77152e RR |
303 | if ((m_maxWidth != -1) && (m_width > m_maxWidth)) m_width = m_maxWidth; |
304 | if ((m_maxHeight != -1) && (m_height > m_maxHeight)) m_height = m_maxHeight; | |
fb1585ae RR |
305 | |
306 | if ((m_x != -1) || (m_y != -1)) | |
307 | { | |
8bbe427f | 308 | if ((m_x != old_x) || (m_y != old_y)) |
fb1585ae RR |
309 | gtk_widget_set_uposition( m_widget, m_x, m_y ); |
310 | } | |
8bbe427f | 311 | |
fb1585ae RR |
312 | if ((m_width != old_width) || (m_height != old_height)) |
313 | { | |
0c77152e | 314 | gtk_widget_set_usize( m_widget, m_width, m_height ); |
fb1585ae | 315 | } |
8bbe427f | 316 | |
fb1585ae RR |
317 | wxSizeEvent event( wxSize(m_width,m_height), GetId() ); |
318 | event.SetEventObject( this ); | |
e52f60e6 | 319 | GetEventHandler()->ProcessEvent( event ); |
fb1585ae RR |
320 | |
321 | m_resizing = FALSE; | |
903f689b RR |
322 | } |
323 | ||
43a18898 RR |
324 | void wxFrame::SetSize( int width, int height ) |
325 | { | |
326 | SetSize( -1, -1, width, height, wxSIZE_USE_EXISTING ); | |
327 | } | |
328 | ||
903f689b RR |
329 | void wxFrame::Centre( int direction ) |
330 | { | |
fb1585ae | 331 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 332 | |
43a18898 RR |
333 | int x = 0; |
334 | int y = 0; | |
8bbe427f | 335 | |
fb1585ae RR |
336 | if (direction & wxHORIZONTAL == wxHORIZONTAL) x = (gdk_screen_width () - m_width) / 2; |
337 | if (direction & wxVERTICAL == wxVERTICAL) y = (gdk_screen_height () - m_height) / 2; | |
8bbe427f | 338 | |
fb1585ae | 339 | Move( x, y ); |
903f689b RR |
340 | } |
341 | ||
c801d85f KB |
342 | void wxFrame::GetClientSize( int *width, int *height ) const |
343 | { | |
fb1585ae | 344 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 345 | |
fb1585ae RR |
346 | wxWindow::GetClientSize( width, height ); |
347 | if (height) | |
46dc76ba | 348 | { |
fb1585ae RR |
349 | if (m_frameMenuBar) (*height) -= wxMENU_HEIGHT; |
350 | if (m_frameStatusBar) (*height) -= wxSTATUS_HEIGHT; | |
351 | if (m_frameToolBar) | |
352 | { | |
353 | int y = 0; | |
354 | m_frameToolBar->GetSize( (int *) NULL, &y ); | |
355 | (*height) -= y; | |
356 | } | |
b2b3ccc5 RR |
357 | (*height) -= m_miniEdge*2 + m_miniTitle; |
358 | } | |
359 | if (width) | |
360 | { | |
361 | (*width) -= m_miniEdge*2; | |
46dc76ba | 362 | } |
362c6693 | 363 | } |
c801d85f | 364 | |
b593568e RR |
365 | void wxFrame::SetClientSize( int const width, int const height ) |
366 | { | |
f5368809 | 367 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 368 | |
f5368809 RR |
369 | int h = height; |
370 | if (m_frameMenuBar) h += wxMENU_HEIGHT; | |
371 | if (m_frameStatusBar) h += wxSTATUS_HEIGHT; | |
372 | if (m_frameToolBar) | |
373 | { | |
374 | int y = 0; | |
375 | m_frameToolBar->GetSize( (int *) NULL, &y ); | |
376 | h += y; | |
377 | } | |
b2b3ccc5 | 378 | wxWindow::SetClientSize( width + m_miniEdge*2, h + m_miniEdge*2 + m_miniTitle ); |
362c6693 | 379 | } |
b593568e | 380 | |
47908e25 | 381 | void wxFrame::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int height ) |
c801d85f | 382 | { |
f5368809 RR |
383 | // due to a bug in gtk, x,y are always 0 |
384 | // m_x = x; | |
385 | // m_y = y; | |
386 | ||
e52f60e6 RR |
387 | if (m_resizing) return; |
388 | m_resizing = TRUE; | |
8bbe427f | 389 | |
f5368809 | 390 | if (!m_wxwindow) return; |
8bbe427f | 391 | |
f5368809 RR |
392 | m_width = width; |
393 | m_height = height; | |
8bbe427f | 394 | |
f5368809 RR |
395 | if ((m_minWidth != -1) && (m_width < m_minWidth)) m_width = m_minWidth; |
396 | if ((m_minHeight != -1) && (m_height < m_minHeight)) m_height = m_minHeight; | |
0c77152e RR |
397 | if ((m_maxWidth != -1) && (m_width > m_maxWidth)) m_width = m_maxWidth; |
398 | if ((m_maxHeight != -1) && (m_height > m_maxHeight)) m_height = m_maxHeight; | |
f5368809 | 399 | |
7f985bd3 | 400 | gtk_widget_set_usize( m_widget, m_width, m_height ); |
8bbe427f | 401 | |
b2b3ccc5 RR |
402 | // this emulates the new wxMSW behaviour of placing all |
403 | // frame-subwindows (menu, toolbar..) on one native window | |
404 | // OK, this hurts in the eye, but I don't want to call SetSize() | |
405 | // because I don't want to call any non-native functions here. | |
8bbe427f | 406 | |
f5368809 RR |
407 | if (m_frameMenuBar) |
408 | { | |
907789a0 | 409 | int xx = m_miniEdge; |
ac57418f RR |
410 | int yy = m_miniEdge + m_miniTitle; |
411 | int ww = m_width - 2*m_miniEdge; | |
412 | int hh = wxMENU_HEIGHT; | |
b2b3ccc5 RR |
413 | m_frameMenuBar->m_x = xx; |
414 | m_frameMenuBar->m_y = yy; | |
415 | m_frameMenuBar->m_width = ww; | |
416 | m_frameMenuBar->m_height = hh; | |
8bbe427f | 417 | |
b2b3ccc5 RR |
418 | gtk_myfixed_move( GTK_MYFIXED(m_wxwindow), m_frameMenuBar->m_widget, xx, yy ); |
419 | gtk_widget_set_usize( m_frameMenuBar->m_widget, ww, hh ); | |
f5368809 RR |
420 | } |
421 | ||
422 | if (m_frameToolBar) | |
423 | { | |
907789a0 | 424 | int xx = m_miniEdge; |
ac57418f | 425 | int yy = m_miniEdge + m_miniTitle; |
b2b3ccc5 | 426 | if (m_frameMenuBar) yy += wxMENU_HEIGHT; |
ac57418f | 427 | int ww = m_width - 2*m_miniEdge; |
b2b3ccc5 | 428 | int hh = m_frameToolBar->m_height; |
8bbe427f VZ |
429 | |
430 | m_frameToolBar->m_x = xx; | |
b2b3ccc5 RR |
431 | m_frameToolBar->m_y = yy; |
432 | m_frameToolBar->m_height = hh; | |
433 | m_frameToolBar->m_width = ww; | |
8bbe427f | 434 | |
b2b3ccc5 RR |
435 | gtk_myfixed_move( GTK_MYFIXED(m_wxwindow), m_frameToolBar->m_widget, xx, yy ); |
436 | gtk_widget_set_usize( m_frameToolBar->m_widget, ww, hh ); | |
f5368809 | 437 | } |
8bbe427f | 438 | |
f5368809 RR |
439 | if (m_frameStatusBar) |
440 | { | |
b2b3ccc5 | 441 | int xx = 0 + m_miniEdge; |
ac57418f RR |
442 | int yy = m_height - wxSTATUS_HEIGHT - m_miniEdge; |
443 | int ww = m_width - 2*m_miniEdge; | |
444 | int hh = wxSTATUS_HEIGHT; | |
8bbe427f | 445 | |
b2b3ccc5 RR |
446 | m_frameStatusBar->m_x = xx; |
447 | m_frameStatusBar->m_y = yy; | |
448 | m_frameStatusBar->m_width = ww; | |
449 | m_frameStatusBar->m_height = hh; | |
8bbe427f | 450 | |
b2b3ccc5 RR |
451 | gtk_myfixed_move( GTK_MYFIXED(m_wxwindow), m_frameStatusBar->m_widget, xx, yy ); |
452 | gtk_widget_set_usize( m_frameStatusBar->m_widget, ww, hh ); | |
f5368809 | 453 | } |
8bbe427f | 454 | |
f5368809 | 455 | m_sizeSet = TRUE; |
8bbe427f | 456 | |
884470b1 RR |
457 | /* send size event to frame */ |
458 | ||
43a18898 RR |
459 | wxSizeEvent event( wxSize(m_width,m_height), GetId() ); |
460 | event.SetEventObject( this ); | |
e52f60e6 | 461 | GetEventHandler()->ProcessEvent( event ); |
8bbe427f | 462 | |
884470b1 RR |
463 | /* send size event to status bar */ |
464 | ||
5aa5e35a RR |
465 | if (m_frameStatusBar) |
466 | { | |
467 | wxSizeEvent event2( wxSize(m_frameStatusBar->m_width,m_frameStatusBar->m_height), m_frameStatusBar->GetId() ); | |
468 | event2.SetEventObject( m_frameStatusBar ); | |
469 | m_frameStatusBar->GetEventHandler()->ProcessEvent( event2 ); | |
470 | } | |
884470b1 | 471 | |
e52f60e6 RR |
472 | m_resizing = FALSE; |
473 | } | |
474 | ||
9390a202 | 475 | void wxFrame::OnInternalIdle() |
e52f60e6 RR |
476 | { |
477 | if (!m_sizeSet) | |
478 | GtkOnSize( m_x, m_y, m_width, m_height ); | |
8bbe427f | 479 | |
e52f60e6 | 480 | DoMenuUpdates(); |
362c6693 | 481 | } |
c801d85f KB |
482 | |
483 | void wxFrame::OnSize( wxSizeEvent &WXUNUSED(event) ) | |
484 | { | |
f5368809 | 485 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 486 | |
f5368809 RR |
487 | if (GetAutoLayout()) |
488 | { | |
489 | Layout(); | |
490 | } | |
8bbe427f | 491 | else |
c801d85f | 492 | { |
f5368809 | 493 | // no child: go out ! |
db1b4961 | 494 | if (!GetChildren().First()) return; |
8bbe427f | 495 | |
f5368809 RR |
496 | // do we have exactly one child? |
497 | wxWindow *child = (wxWindow *) NULL; | |
db1b4961 | 498 | for(wxNode *node = GetChildren().First(); node; node = node->Next()) |
f5368809 RR |
499 | { |
500 | wxWindow *win = (wxWindow *)node->Data(); | |
de135918 | 501 | if (!wxIS_KIND_OF(win,wxFrame) && !wxIS_KIND_OF(win,wxDialog) |
6ca41e57 | 502 | #if 0 // not in m_children anyway ? |
f5368809 RR |
503 | && (win != m_frameMenuBar) && |
504 | (win != m_frameToolBar) && | |
505 | (win != m_frameStatusBar) | |
ed7a557b | 506 | #endif |
f5368809 RR |
507 | ) |
508 | { | |
8bbe427f | 509 | // it's the second one: do nothing |
f5368809 RR |
510 | if (child) return; |
511 | child = win; | |
512 | } | |
513 | } | |
ed7a557b | 514 | |
f5368809 RR |
515 | // yes: set it's size to fill all the frame |
516 | int client_x, client_y; | |
517 | GetClientSize( &client_x, &client_y ); | |
7be4c594 | 518 | child->SetSize( 1, 1, client_x-2, client_y-2 ); |
362c6693 | 519 | } |
362c6693 | 520 | } |
c801d85f | 521 | |
716b7364 | 522 | static void SetInvokingWindow( wxMenu *menu, wxWindow *win ) |
c801d85f | 523 | { |
f5368809 RR |
524 | menu->SetInvokingWindow( win ); |
525 | wxNode *node = menu->m_items.First(); | |
526 | while (node) | |
527 | { | |
528 | wxMenuItem *menuitem = (wxMenuItem*)node->Data(); | |
529 | if (menuitem->IsSubMenu()) | |
530 | SetInvokingWindow( menuitem->GetSubMenu(), win ); | |
531 | node = node->Next(); | |
532 | } | |
362c6693 | 533 | } |
c801d85f KB |
534 | |
535 | void wxFrame::SetMenuBar( wxMenuBar *menuBar ) | |
536 | { | |
f5368809 RR |
537 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
538 | wxASSERT_MSG( (m_wxwindow != NULL), "invalid frame" ); | |
8bbe427f | 539 | |
f5368809 | 540 | m_frameMenuBar = menuBar; |
8bbe427f | 541 | |
f5368809 | 542 | if (m_frameMenuBar) |
30dea054 | 543 | { |
f5368809 RR |
544 | wxNode *node = m_frameMenuBar->m_menus.First(); |
545 | while (node) | |
546 | { | |
547 | wxMenu *menu = (wxMenu*)node->Data(); | |
548 | SetInvokingWindow( menu, this ); | |
549 | node = node->Next(); | |
550 | } | |
8bbe427f | 551 | |
f5368809 RR |
552 | if (m_frameMenuBar->m_parent != this) |
553 | { | |
554 | m_frameMenuBar->m_parent = this; | |
555 | gtk_myfixed_put( GTK_MYFIXED(m_wxwindow), | |
556 | m_frameMenuBar->m_widget, m_frameMenuBar->m_x, m_frameMenuBar->m_y ); | |
557 | } | |
716b7364 | 558 | } |
8bbe427f | 559 | |
5b077d48 | 560 | m_sizeSet = FALSE; |
362c6693 | 561 | } |
c801d85f | 562 | |
8bbe427f | 563 | wxMenuBar *wxFrame::GetMenuBar() const |
46dc76ba | 564 | { |
f5368809 | 565 | return m_frameMenuBar; |
362c6693 | 566 | } |
46dc76ba | 567 | |
342b6a2f RR |
568 | void wxFrame::OnMenuHighlight(wxMenuEvent& event) |
569 | { | |
570 | if (GetStatusBar()) | |
571 | { | |
572 | if (event.GetMenuId() == -1) | |
573 | { | |
574 | SetStatusText(""); | |
575 | } | |
576 | else | |
577 | { | |
578 | wxMenuBar *menuBar = GetMenuBar(); | |
579 | if (menuBar) | |
580 | { | |
581 | int menuId = event.GetMenuId(); | |
582 | wxString helpString; | |
583 | helpString = menuBar->GetHelpString(menuId); | |
584 | if (helpString != "") | |
585 | SetStatusText(helpString); | |
586 | } | |
587 | } | |
588 | } | |
589 | } | |
590 | ||
362c6693 | 591 | wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name) |
46dc76ba | 592 | { |
f5368809 | 593 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 594 | |
f5368809 | 595 | wxCHECK_MSG( m_frameToolBar == NULL, FALSE, "recreating toolbar in wxFrame" ); |
362c6693 | 596 | |
f5368809 | 597 | m_frameToolBar = OnCreateToolBar( style, id, name ); |
8bbe427f | 598 | |
db1b4961 | 599 | GetChildren().DeleteObject( m_frameToolBar ); |
8bbe427f | 600 | |
5b077d48 | 601 | m_sizeSet = FALSE; |
8bbe427f | 602 | |
f5368809 | 603 | return m_frameToolBar; |
362c6693 | 604 | } |
46dc76ba | 605 | |
362c6693 | 606 | wxToolBar* wxFrame::OnCreateToolBar( long style, wxWindowID id, const wxString& name ) |
46dc76ba | 607 | { |
f5368809 | 608 | return new wxToolBar( this, id, wxDefaultPosition, wxDefaultSize, style, name ); |
362c6693 RR |
609 | } |
610 | ||
8bbe427f VZ |
611 | wxToolBar *wxFrame::GetToolBar() const |
612 | { | |
613 | return m_frameToolBar; | |
362c6693 | 614 | } |
46dc76ba | 615 | |
e3e65dac | 616 | wxStatusBar* wxFrame::CreateStatusBar( int number, long style, wxWindowID id, const wxString& name ) |
c801d85f | 617 | { |
f5368809 | 618 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 619 | |
f5368809 | 620 | wxCHECK_MSG( m_frameStatusBar == NULL, FALSE, "recreating status bar in wxFrame" ); |
c801d85f | 621 | |
f5368809 | 622 | m_frameStatusBar = OnCreateStatusBar( number, style, id, name ); |
8bbe427f | 623 | |
5b077d48 | 624 | m_sizeSet = FALSE; |
8bbe427f | 625 | |
f5368809 | 626 | return m_frameStatusBar; |
362c6693 RR |
627 | } |
628 | ||
629 | wxStatusBar *wxFrame::OnCreateStatusBar( int number, long style, wxWindowID id, const wxString& name ) | |
630 | { | |
f5368809 | 631 | wxStatusBar *statusBar = (wxStatusBar *) NULL; |
8bbe427f | 632 | |
f5368809 | 633 | statusBar = new wxStatusBar(this, id, wxPoint(0, 0), wxSize(100, 20), style, name); |
8bbe427f | 634 | |
f5368809 RR |
635 | // Set the height according to the font and the border size |
636 | wxClientDC dc(statusBar); | |
8bbe427f | 637 | dc.SetFont( statusBar->GetFont() ); |
362c6693 | 638 | |
f5368809 RR |
639 | long x, y; |
640 | dc.GetTextExtent( "X", &x, &y ); | |
362c6693 | 641 | |
f5368809 | 642 | int height = (int)( (y * 1.1) + 2* statusBar->GetBorderY()); |
362c6693 | 643 | |
f5368809 | 644 | statusBar->SetSize( -1, -1, 100, height ); |
362c6693 | 645 | |
f5368809 RR |
646 | statusBar->SetFieldsCount( number ); |
647 | return statusBar; | |
362c6693 | 648 | } |
c801d85f | 649 | |
362c6693 | 650 | void wxFrame::SetStatusText(const wxString& text, int number) |
c801d85f | 651 | { |
f5368809 | 652 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 653 | |
f5368809 | 654 | wxCHECK_RET( m_frameStatusBar != NULL, "no statusbar to set text for" ); |
c801d85f | 655 | |
f5368809 | 656 | m_frameStatusBar->SetStatusText(text, number); |
362c6693 RR |
657 | } |
658 | ||
659 | void wxFrame::SetStatusWidths(int n, const int widths_field[] ) | |
c801d85f | 660 | { |
f5368809 | 661 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 662 | |
f5368809 | 663 | wxCHECK_RET( m_frameStatusBar != NULL, "no statusbar to set widths for" ); |
362c6693 | 664 | |
f5368809 | 665 | m_frameStatusBar->SetStatusWidths(n, widths_field); |
362c6693 | 666 | } |
c801d85f | 667 | |
8bbe427f | 668 | wxStatusBar *wxFrame::GetStatusBar() const |
c801d85f | 669 | { |
f5368809 | 670 | return m_frameStatusBar; |
362c6693 | 671 | } |
c801d85f | 672 | |
c801d85f KB |
673 | void wxFrame::SetTitle( const wxString &title ) |
674 | { | |
f5368809 | 675 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 676 | |
f5368809 RR |
677 | m_title = title; |
678 | if (m_title.IsNull()) m_title = ""; | |
679 | gtk_window_set_title( GTK_WINDOW(m_widget), title ); | |
362c6693 | 680 | } |
c801d85f | 681 | |
d355d3fe RR |
682 | void wxFrame::SetIcon( const wxIcon &icon ) |
683 | { | |
f5368809 | 684 | wxASSERT_MSG( (m_widget != NULL), "invalid frame" ); |
8bbe427f | 685 | |
f5368809 RR |
686 | m_icon = icon; |
687 | if (!icon.Ok()) return; | |
8bbe427f | 688 | |
f5368809 RR |
689 | wxMask *mask = icon.GetMask(); |
690 | GdkBitmap *bm = (GdkBitmap *) NULL; | |
691 | if (mask) bm = mask->GetBitmap(); | |
8bbe427f | 692 | |
f5368809 | 693 | gdk_window_set_icon( m_widget->window, (GdkWindow *) NULL, icon.GetPixmap(), bm ); |
d355d3fe | 694 | } |
b2b3ccc5 | 695 |