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