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