]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/frame.cpp
added option to hide page controls
[wxWidgets.git] / src / gtk / frame.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.cpp
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
19717c50 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11#ifdef __GNUG__
12#pragma implementation "frame.h"
13#endif
14
15#include "wx/frame.h"
16#include "wx/dialog.h"
17#include "wx/control.h"
18#include "wx/app.h"
cf4219e7
RR
19#include "wx/menu.h"
20#include "wx/toolbar.h"
21#include "wx/statusbr.h"
d4c99d6f 22#include "wx/mdi.h"
362c6693 23#include "wx/dcclient.h"
c801d85f
KB
24#include "wx/gtk/win_gtk.h"
25
26const wxMENU_HEIGHT = 28;
27const wxSTATUS_HEIGHT = 25;
28
29extern wxList wxTopLevelWindows;
30extern wxList wxPendingDelete;
31
32//-----------------------------------------------------------------------------
33// wxFrame
34//-----------------------------------------------------------------------------
35
36//-----------------------------------------------------------------------------
47908e25 37// set size
c801d85f
KB
38
39void gtk_frame_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxFrame *win )
ed7a557b 40{
c801d85f
KB
41 if (!win->HasVMT()) return;
42
43/*
44 printf( "OnFrameResize from " );
45 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
46 printf( win->GetClassInfo()->GetClassName() );
47 printf( ".\n" );
48*/
ed7a557b 49
219f895a 50 win->GtkOnSize( alloc->x, alloc->y, alloc->width, alloc->height );
362c6693 51}
c801d85f
KB
52
53//-----------------------------------------------------------------------------
54// delete
55
56bool gtk_frame_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxFrame *win )
ed7a557b 57{
c801d85f
KB
58/*
59 printf( "OnDelete from " );
60 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
61 printf( win->GetClassInfo()->GetClassName() );
62 printf( ".\n" );
63*/
ed7a557b 64
c801d85f
KB
65 win->Close();
66
67 return TRUE;
362c6693 68}
c801d85f 69
47908e25
RR
70//-----------------------------------------------------------------------------
71// configure
72
73gint gtk_frame_configure_callback( GtkWidget *WXUNUSED(widget), GdkEventConfigure *event, wxFrame *win )
74{
75 if (!win->HasVMT()) return FALSE;
76
77 win->m_x = event->x;
78 win->m_y = event->y;
79
80 return FALSE;
362c6693 81}
47908e25 82
c801d85f
KB
83//-----------------------------------------------------------------------------
84
85BEGIN_EVENT_TABLE(wxFrame, wxWindow)
c801d85f 86 EVT_SIZE(wxFrame::OnSize)
716b7364 87 EVT_CLOSE(wxFrame::OnCloseWindow)
e2414cbe 88 EVT_IDLE(wxFrame::OnIdle)
c801d85f
KB
89END_EVENT_TABLE()
90
91IMPLEMENT_DYNAMIC_CLASS(wxFrame,wxWindow)
92
19717c50 93wxFrame::wxFrame()
c801d85f 94{
c801d85f
KB
95 m_frameMenuBar = NULL;
96 m_frameStatusBar = NULL;
46dc76ba 97 m_frameToolBar = NULL;
c801d85f 98 m_sizeSet = FALSE;
46dc76ba 99 m_addPrivateChild = FALSE;
cf4219e7
RR
100 m_wxwindow = NULL;
101 m_mainWindow = NULL;
c801d85f 102 wxTopLevelWindows.Insert( this );
362c6693 103}
c801d85f 104
ed7a557b 105wxFrame::wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
debe6624
JS
106 const wxPoint &pos, const wxSize &size,
107 long style, const wxString &name )
c801d85f 108{
46dc76ba
RR
109 m_frameMenuBar = NULL;
110 m_frameStatusBar = NULL;
111 m_frameToolBar = NULL;
c801d85f 112 m_sizeSet = FALSE;
46dc76ba 113 m_addPrivateChild = FALSE;
cf4219e7
RR
114 m_wxwindow = NULL;
115 m_mainWindow = NULL;
c801d85f
KB
116 Create( parent, id, title, pos, size, style, name );
117 wxTopLevelWindows.Insert( this );
362c6693 118}
c801d85f 119
debe6624 120bool wxFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title,
c801d85f 121 const wxPoint &pos, const wxSize &size,
debe6624 122 long style, const wxString &name )
c801d85f
KB
123{
124 m_needParent = FALSE;
ed7a557b 125
c801d85f
KB
126 PreCreation( parent, id, pos, size, style, name );
127
c801d85f 128 m_title = title;
ed7a557b 129
c801d85f 130 m_widget = gtk_window_new( GTK_WINDOW_TOPLEVEL );
ed7a557b 131 if ((size.x != -1) && (size.y != -1))
c801d85f 132 gtk_widget_set_usize( m_widget, m_width, m_height );
ed7a557b 133 if ((pos.x != -1) && (pos.y != -1))
c801d85f 134 gtk_widget_set_uposition( m_widget, m_x, m_y );
ed7a557b 135
c801d85f
KB
136 gtk_window_set_title( GTK_WINDOW(m_widget), title );
137 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
ed7a557b 138
c801d85f 139 gtk_widget_set( m_widget, "GtkWindow::allow_shrink", TRUE, NULL);
ed7a557b
VZ
140
141 gtk_signal_connect( GTK_OBJECT(m_widget), "delete_event",
c801d85f 142 GTK_SIGNAL_FUNC(gtk_frame_delete_callback), (gpointer)this );
ed7a557b 143
c801d85f
KB
144 m_mainWindow = gtk_myfixed_new();
145 gtk_widget_show( m_mainWindow );
146 GTK_WIDGET_UNSET_FLAGS( m_mainWindow, GTK_CAN_FOCUS );
ed7a557b 147
c801d85f
KB
148 gtk_container_add( GTK_CONTAINER(m_widget), m_mainWindow );
149 gtk_widget_set_uposition( m_mainWindow, 0, 0 );
ed7a557b 150
c801d85f
KB
151 m_wxwindow = gtk_myfixed_new();
152 gtk_widget_show( m_wxwindow );
153 GTK_WIDGET_UNSET_FLAGS( m_wxwindow, GTK_CAN_FOCUS );
ed7a557b 154
c801d85f 155 gtk_container_add( GTK_CONTAINER(m_mainWindow), m_wxwindow );
ed7a557b 156
ed7a557b 157 gtk_signal_connect( GTK_OBJECT(m_widget), "size_allocate",
c801d85f 158 GTK_SIGNAL_FUNC(gtk_frame_size_callback), (gpointer)this );
ed7a557b 159
47908e25
RR
160 gtk_signal_connect( GTK_OBJECT(m_widget), "configure_event",
161 GTK_SIGNAL_FUNC(gtk_frame_configure_callback), (gpointer)this );
162
c801d85f 163 PostCreation();
ed7a557b 164
c801d85f 165 gtk_widget_realize( m_mainWindow );
ed7a557b 166
c801d85f 167 return TRUE;
362c6693 168}
c801d85f 169
19717c50 170wxFrame::~wxFrame()
c801d85f
KB
171{
172 if (m_frameMenuBar) delete m_frameMenuBar;
173 if (m_frameStatusBar) delete m_frameStatusBar;
ed7a557b 174
c801d85f
KB
175// if (m_mainWindow) gtk_widget_destroy( m_mainWindow );
176
177 wxTopLevelWindows.DeleteObject( this );
178 if (wxTopLevelWindows.Number() == 0) wxTheApp->ExitMainLoop();
362c6693 179}
ed7a557b 180
debe6624 181bool wxFrame::Show( bool show )
c801d85f
KB
182{
183 if (show)
184 {
185 wxSizeEvent event( wxSize(m_width,m_height), GetId() );
186 m_sizeSet = FALSE;
187 ProcessEvent( event );
362c6693 188 }
c801d85f 189 return wxWindow::Show( show );
362c6693 190}
c801d85f 191
debe6624 192void wxFrame::Enable( bool enable )
c801d85f
KB
193{
194 wxWindow::Enable( enable );
195 gtk_widget_set_sensitive( m_mainWindow, enable );
362c6693 196}
c801d85f 197
716b7364 198void wxFrame::OnCloseWindow( wxCloseEvent &event )
c801d85f 199{
716b7364
RR
200 if ( GetEventHandler()->OnClose() || event.GetForce())
201 {
202 this->Destroy();
203 }
362c6693 204}
c801d85f 205
19717c50 206bool wxFrame::Destroy()
c801d85f
KB
207{
208 if (!wxPendingDelete.Member(this))
209 wxPendingDelete.Append(this);
ed7a557b 210
c801d85f
KB
211 return TRUE;
212}
213
214void wxFrame::GetClientSize( int *width, int *height ) const
215{
216 wxWindow::GetClientSize( width, height );
217 if (height)
218 {
219 if (m_frameMenuBar) (*height) -= wxMENU_HEIGHT;
220 if (m_frameStatusBar) (*height) -= wxSTATUS_HEIGHT;
46dc76ba
RR
221 if (m_frameToolBar)
222 {
223 int y = 0;
224 m_frameToolBar->GetSize( NULL, &y );
225 (*height) -= y;
226 }
362c6693
RR
227 }
228}
c801d85f 229
b593568e
RR
230void wxFrame::SetClientSize( int const width, int const height )
231{
232 int h = height;
233 if (m_frameMenuBar) h += wxMENU_HEIGHT;
234 if (m_frameStatusBar) h += wxSTATUS_HEIGHT;
235 if (m_frameToolBar)
236 {
237 int y = 0;
238 m_frameToolBar->GetSize( NULL, &y );
239 h += y;
240 }
241 wxWindow::SetClientSize( width, h );
362c6693 242}
b593568e 243
47908e25 244void wxFrame::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int height )
c801d85f 245{
47908e25
RR
246 // due to a bug in gtk, x,y are always 0
247 // m_x = x;
248 // m_y = y;
219f895a 249
c801d85f
KB
250 if ((m_height == height) && (m_width == width) &&
251 (m_sizeSet)) return;
252 if (!m_mainWindow) return;
253 if (!m_wxwindow) return;
254
255 m_width = width;
256 m_height = height;
ed7a557b 257
c801d85f 258 gtk_widget_set_usize( m_widget, width, height );
ed7a557b 259
c801d85f
KB
260 int main_x = 0;
261 int main_y = 0;
262 int main_height = height;
263 int main_width = width;
ed7a557b 264
c801d85f
KB
265 // This emulates Windows behaviour:
266 // The menu bar is part of the main window, but the status bar
267 // is on the implementation side in the client area. The
268 // function GetClientSize returns the size of the client area
269 // minus the status bar height. Under wxGTK, the main window
270 // is represented by m_mainWindow. The menubar is inserted
271 // into m_mainWindow whereas the statusbar is insertes into
272 // m_wxwindow just like any other window.
ed7a557b 273
c801d85f 274// not really needed
47908e25 275// gtk_widget_set_usize( m_mainWindow, width, height );
ed7a557b 276
c801d85f
KB
277 if (m_frameMenuBar)
278 {
279 main_y = wxMENU_HEIGHT;
280 main_height -= wxMENU_HEIGHT;
362c6693 281 }
ed7a557b 282
46dc76ba
RR
283 int toolbar_height = 0;
284 if (m_frameToolBar) m_frameToolBar->GetSize( NULL, &toolbar_height );
285
286 main_y += toolbar_height;
287 main_height -= toolbar_height;
288
d4c99d6f
RR
289 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow), m_wxwindow, main_x, main_y );
290 gtk_widget_set_usize( m_wxwindow, main_width, main_height );
ed7a557b 291
c801d85f
KB
292 if (m_frameMenuBar)
293 {
d4c99d6f 294 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow), m_frameMenuBar->m_widget, 1, 1 );
c801d85f 295 gtk_widget_set_usize( m_frameMenuBar->m_widget, width-2, wxMENU_HEIGHT-2 );
362c6693 296 }
ed7a557b 297
46dc76ba
RR
298 if (m_frameToolBar)
299 {
d4c99d6f 300 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow), m_frameToolBar->m_widget, 1, wxMENU_HEIGHT );
46dc76ba 301 gtk_widget_set_usize( m_frameToolBar->m_widget, width-2, toolbar_height );
362c6693 302 }
46dc76ba 303
c801d85f
KB
304 if (m_frameStatusBar)
305 {
306 m_frameStatusBar->SetSize( 0, main_height-wxSTATUS_HEIGHT, width, wxSTATUS_HEIGHT );
362c6693 307 }
c801d85f
KB
308
309 m_sizeSet = TRUE;
ed7a557b 310
c801d85f
KB
311 wxSizeEvent event( wxSize(m_width,m_height), GetId() );
312 event.SetEventObject( this );
313 ProcessEvent( event );
362c6693 314}
c801d85f
KB
315
316void wxFrame::OnSize( wxSizeEvent &WXUNUSED(event) )
317{
ed7a557b
VZ
318 if ( GetAutoLayout() )
319 Layout();
320 else {
cf5f9c9c
GL
321 // no child: go out !
322 if (!GetChildren()->First())
323 return;
46dc76ba 324
ed7a557b
VZ
325 // do we have exactly one child?
326 wxWindow *child = NULL;
327 for(wxNode *node = GetChildren()->First(); node; node = node->Next())
c801d85f 328 {
ed7a557b 329 wxWindow *win = (wxWindow *)node->Data();
e3e65dac 330 if (!IS_KIND_OF(win,wxFrame) && !IS_KIND_OF(win,wxDialog)
46dc76ba 331#if 0 // not in m_children anyway
ed7a557b 332 && (win != m_frameMenuBar) &&
46dc76ba 333 (win != m_frameToolBar) &&
ed7a557b
VZ
334 (win != m_frameStatusBar)
335#endif
336 )
337 {
338 if ( child ) // it's the second one: do nothing
339 return;
340
341 child = win;
362c6693
RR
342 }
343 }
c801d85f 344
ed7a557b 345 // yes: set it's size to fill all the frame
c801d85f 346 int client_x, client_y;
c801d85f 347 GetClientSize(&client_x, &client_y);
c801d85f
KB
348 child->SetSize( 1, 1, client_x-2, client_y);
349 }
362c6693 350}
c801d85f 351
46dc76ba
RR
352void wxFrame::AddChild( wxWindow *child )
353{
e3e65dac
RR
354 // wxFrame and wxDialog as children aren't placed into the parents
355
d4c99d6f
RR
356 if (IS_KIND_OF(child,wxMDIChildFrame)) printf( "wxFrame::AddChild error.\n" );
357
358 if ( IS_KIND_OF(child,wxFrame) || IS_KIND_OF(child,wxDialog))
e3e65dac
RR
359 {
360 m_children.Append( child );
361
362 if ((child->m_x != -1) && (child->m_y != -1))
363 gtk_widget_set_uposition( child->m_widget, child->m_x, child->m_y );
364
365 return;
366 }
367
46dc76ba
RR
368 if (m_addPrivateChild)
369 {
370 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow), child->m_widget, child->m_x, child->m_y );
371
372 gtk_widget_set_usize( child->m_widget, child->m_width, child->m_height );
373 }
374 else
375 {
376 m_children.Append( child );
377
378 if (m_wxwindow)
379 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow), child->m_widget, child->m_x, child->m_y );
380
381 gtk_widget_set_usize( child->m_widget, child->m_width, child->m_height );
382 }
362c6693 383}
46dc76ba 384
716b7364 385static void SetInvokingWindow( wxMenu *menu, wxWindow *win )
c801d85f
KB
386{
387 menu->SetInvokingWindow( win );
388 wxNode *node = menu->m_items.First();
389 while (node)
390 {
391 wxMenuItem *menuitem = (wxMenuItem*)node->Data();
19717c50
VZ
392 if (menuitem->IsSubMenu())
393 SetInvokingWindow( menuitem->GetSubMenu(), win );
c801d85f 394 node = node->Next();
362c6693
RR
395 }
396}
c801d85f
KB
397
398void wxFrame::SetMenuBar( wxMenuBar *menuBar )
399{
400 m_frameMenuBar = menuBar;
716b7364
RR
401
402 if (m_frameMenuBar)
c801d85f 403 {
30dea054
RR
404 wxNode *node = m_frameMenuBar->m_menus.First();
405 while (node)
406 {
407 wxMenu *menu = (wxMenu*)node->Data();
408 SetInvokingWindow( menu, this );
409 node = node->Next();
362c6693 410 }
30dea054 411
716b7364
RR
412 if (m_frameMenuBar->m_parent != this)
413 {
716b7364
RR
414 m_frameMenuBar->m_parent = this;
415 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow),
416 m_frameMenuBar->m_widget, m_frameMenuBar->m_x, m_frameMenuBar->m_y );
417 }
418 }
362c6693 419}
c801d85f 420
362c6693 421wxMenuBar *wxFrame::GetMenuBar(void) const
46dc76ba
RR
422{
423 return m_frameMenuBar;
362c6693 424}
46dc76ba 425
362c6693 426wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name)
46dc76ba 427{
362c6693
RR
428 wxCHECK_MSG( m_frameToolBar == NULL, FALSE, "recreating toolbar in wxFrame" );
429
46dc76ba 430 m_addPrivateChild = TRUE;
362c6693 431 m_frameToolBar = OnCreateToolBar( style, id, name );
46dc76ba
RR
432 m_addPrivateChild = FALSE;
433
434 return m_frameToolBar;
362c6693 435}
46dc76ba 436
362c6693 437wxToolBar* wxFrame::OnCreateToolBar( long style, wxWindowID id, const wxString& name )
46dc76ba 438{
362c6693
RR
439 return new wxToolBar( this, id, wxDefaultPosition, wxDefaultSize, style, name );
440}
441
442wxToolBar *wxFrame::GetToolBar(void) const
443{
444 return m_frameToolBar;
445}
46dc76ba 446
e3e65dac 447wxStatusBar* wxFrame::CreateStatusBar( int number, long style, wxWindowID id, const wxString& name )
c801d85f 448{
362c6693 449 wxCHECK_MSG( m_frameStatusBar == NULL, FALSE, "recreating status bar in wxFrame" );
c801d85f 450
362c6693 451 m_frameStatusBar = OnCreateStatusBar( number, style, id, name );
e3e65dac
RR
452
453 return m_frameStatusBar;
362c6693
RR
454}
455
456wxStatusBar *wxFrame::OnCreateStatusBar( int number, long style, wxWindowID id, const wxString& name )
457{
458 wxStatusBar *statusBar = NULL;
459
460 statusBar = new wxStatusBar(this, id, wxPoint(0, 0), wxSize(100, 20), style, name);
461
462 // Set the height according to the font and the border size
463 wxClientDC dc(statusBar);
464 dc.SetFont( *statusBar->GetFont() );
465
466 long x, y;
467 dc.GetTextExtent( "X", &x, &y );
468
469 int height = (int)( (y * 1.1) + 2* statusBar->GetBorderY());
470
471 statusBar->SetSize( -1, -1, 100, height );
472
473 statusBar->SetFieldsCount( number );
474 return statusBar;
475}
c801d85f 476
362c6693 477void wxFrame::SetStatusText(const wxString& text, int number)
c801d85f 478{
362c6693 479 wxCHECK_RET( m_frameStatusBar != NULL, "no statusbar to set text for" );
c801d85f 480
362c6693
RR
481 m_frameStatusBar->SetStatusText(text, number);
482}
483
484void wxFrame::SetStatusWidths(int n, const int widths_field[] )
c801d85f 485{
362c6693
RR
486 wxCHECK_RET( m_frameStatusBar != NULL, "no statusbar to set widths for" );
487
488 m_frameStatusBar->SetStatusWidths(n, widths_field);
489}
c801d85f 490
362c6693 491wxStatusBar *wxFrame::GetStatusBar(void) const
c801d85f
KB
492{
493 return m_frameStatusBar;
362c6693 494}
c801d85f 495
c801d85f
KB
496void wxFrame::SetTitle( const wxString &title )
497{
498 m_title = title;
362c6693 499 if (m_title.IsNull()) m_title = "";
c801d85f 500 gtk_window_set_title( GTK_WINDOW(m_widget), title );
362c6693 501}
c801d85f 502
46dc76ba 503void wxFrame::SetSizeHints(int minW, int minH, int maxW, int maxH, int WXUNUSED(incW) )
c801d85f 504{
46dc76ba
RR
505 if (m_wxwindow)
506 gdk_window_set_hints( m_wxwindow->window, -1, -1,
507 minW, minH, maxW, maxH, GDK_HINT_MIN_SIZE | GDK_HINT_MIN_SIZE );
e2414cbe 508}
d355d3fe
RR
509
510void wxFrame::SetIcon( const wxIcon &icon )
511{
512 m_icon = icon;
513 if (!icon.Ok()) return;
514
515 wxMask *mask = icon.GetMask();
516 GdkBitmap *bm = NULL;
517 if (mask) bm = mask->GetBitmap();
518
519 gdk_window_set_icon( m_widget->window, NULL, icon.GetPixmap(), bm );
520}
521