1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/frame.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
17 #include "wx/toolbar.h"
18 #include "wx/statusbr.h"
22 #include "wx/gtk/win_gtk.h"
24 // ----------------------------------------------------------------------------
26 // ----------------------------------------------------------------------------
28 static const int wxSTATUS_HEIGHT
= 25;
29 static const int wxPLACE_HOLDER
= 0;
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxTopLevelWindow
)
37 // ============================================================================
39 // ============================================================================
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
45 #if wxUSE_MENUS_NATIVE
47 //-----------------------------------------------------------------------------
48 // "child_attached" of menu bar
49 //-----------------------------------------------------------------------------
52 static void gtk_menu_attached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
54 if (!win
->m_hasVMT
) return;
56 win
->m_menuBarDetached
= false;
61 //-----------------------------------------------------------------------------
62 // "child_detached" of menu bar
63 //-----------------------------------------------------------------------------
66 static void gtk_menu_detached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
68 if (!win
->m_hasVMT
) return;
70 // Raise the client area area
71 gdk_window_raise( win
->m_wxwindow
->window
);
73 win
->m_menuBarDetached
= true;
78 #endif // wxUSE_MENUS_NATIVE
81 //-----------------------------------------------------------------------------
82 // "child_attached" of tool bar
83 //-----------------------------------------------------------------------------
86 static void gtk_toolbar_attached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
88 if (!win
->m_hasVMT
) return;
90 win
->m_toolBarDetached
= false;
95 //-----------------------------------------------------------------------------
96 // "child_detached" of tool bar
97 //-----------------------------------------------------------------------------
100 static void gtk_toolbar_detached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
102 if (!win
->m_hasVMT
) return;
104 // Raise the client area area
105 gdk_window_raise( win
->m_wxwindow
->window
);
107 win
->m_toolBarDetached
= true;
108 win
->GtkUpdateSize();
111 #endif // wxUSE_TOOLBAR
114 // ----------------------------------------------------------------------------
116 // ----------------------------------------------------------------------------
118 //-----------------------------------------------------------------------------
119 // InsertChild for wxFrame
120 //-----------------------------------------------------------------------------
122 /* Callback for wxFrame. This very strange beast has to be used because
123 * C++ has no virtual methods in a constructor. We have to emulate a
124 * virtual function here as wxWidgets requires different ways to insert
125 * a child in container classes. */
127 static void wxInsertChildInFrame( wxFrame
* parent
, wxWindow
* child
)
129 wxASSERT( GTK_IS_WIDGET(child
->m_widget
) );
131 if (!parent
->m_insertInClientArea
)
133 // These are outside the client area
134 wxFrame
* frame
= (wxFrame
*) parent
;
135 gtk_pizza_put( GTK_PIZZA(frame
->m_mainWidget
),
142 #if wxUSE_TOOLBAR_NATIVE
143 // We connect to these events for recalculating the client area
144 // space when the toolbar is floating
145 if (wxIS_KIND_OF(child
,wxToolBar
))
147 wxToolBar
*toolBar
= (wxToolBar
*) child
;
148 if (toolBar
->GetWindowStyle() & wxTB_DOCKABLE
)
150 g_signal_connect (toolBar
->m_widget
, "child_attached",
151 G_CALLBACK (gtk_toolbar_attached_callback
),
153 g_signal_connect (toolBar
->m_widget
, "child_detached",
154 G_CALLBACK (gtk_toolbar_detached_callback
),
158 #endif // wxUSE_TOOLBAR
162 // These are inside the client area
163 gtk_pizza_put( GTK_PIZZA(parent
->m_wxwindow
),
172 // ----------------------------------------------------------------------------
174 // ----------------------------------------------------------------------------
178 m_menuBarDetached
= false;
179 m_toolBarDetached
= false;
183 bool wxFrame::Create( wxWindow
*parent
,
185 const wxString
& title
,
187 const wxSize
& sizeOrig
,
189 const wxString
&name
)
191 bool rt
= wxTopLevelWindow::Create(parent
, id
, title
, pos
, sizeOrig
,
193 m_insertCallback
= (wxInsertChildFunction
) wxInsertChildInFrame
;
200 m_isBeingDeleted
= true;
204 // ----------------------------------------------------------------------------
205 // overridden wxWindow methods
206 // ----------------------------------------------------------------------------
208 void wxFrame::DoGetClientSize( int *width
, int *height
) const
210 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
212 wxTopLevelWindow::DoGetClientSize( width
, height
);
216 #if wxUSE_MENUS_NATIVE
218 if (m_frameMenuBar
&& !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOMENUBAR
) != 0))
220 if (!m_menuBarDetached
)
221 (*height
) -= m_menuBarHeight
;
223 (*height
) -= wxPLACE_HOLDER
;
225 #endif // wxUSE_MENUS_NATIVE
229 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown() &&
230 !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOSTATUSBAR
) != 0))
231 (*height
) -= wxSTATUS_HEIGHT
;
232 #endif // wxUSE_STATUSBAR
237 if (m_frameToolBar
&& m_frameToolBar
->IsShown())
239 if (m_toolBarDetached
)
242 *height
-= wxPLACE_HOLDER
;
247 m_frameToolBar
->GetSize( &x
, &y
);
248 if ( m_frameToolBar
->IsVertical() )
260 #endif // wxUSE_TOOLBAR
262 if (width
!= NULL
&& *width
< 0)
264 if (height
!= NULL
&& *height
< 0)
268 void wxFrame::DoSetClientSize( int width
, int height
)
270 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
272 #if wxUSE_MENUS_NATIVE
274 if (m_frameMenuBar
&& !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOMENUBAR
) != 0))
276 if (!m_menuBarDetached
)
277 height
+= m_menuBarHeight
;
279 height
+= wxPLACE_HOLDER
;
281 #endif // wxUSE_MENUS_NATIVE
285 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown() &&
286 !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOSTATUSBAR
) != 0))
287 height
+= wxSTATUS_HEIGHT
;
292 if (m_frameToolBar
&& m_frameToolBar
->IsShown())
294 if (m_toolBarDetached
)
296 height
+= wxPLACE_HOLDER
;
301 m_frameToolBar
->GetSize( &x
, &y
);
302 if ( m_frameToolBar
->IsVertical() )
314 wxTopLevelWindow::DoSetClientSize( width
, height
);
317 void wxFrame::GtkOnSize()
320 if (m_resizing
) return;
323 // this shouldn't happen: wxFrame, wxMDIParentFrame and wxMDIChildFrame have m_wxwindow
324 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
326 // space occupied by m_frameToolBar and m_frameMenuBar
327 int client_area_x_offset
= 0,
328 client_area_y_offset
= 0;
330 /* wxMDIChildFrame derives from wxFrame but it _is_ a wxWindow as it uses
331 wxWindow::Create to create it's GTK equivalent. m_mainWidget is only
332 set in wxFrame::Create so it is used to check what kind of frame we
333 have here. if m_mainWidget is NULL it is a wxMDIChildFrame and so we
334 skip the part which handles m_frameMenuBar, m_frameToolBar and (most
335 importantly) m_mainWidget */
342 // Rewrite this terrible code to using GtkVBox
344 // m_mainWidget holds the menubar, the toolbar and the client
345 // area, which is represented by m_wxwindow.
347 #if wxUSE_MENUS_NATIVE
348 if (m_frameMenuBar
&& !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOMENUBAR
) != 0))
350 if (!GTK_WIDGET_VISIBLE(m_frameMenuBar
->m_widget
))
351 gtk_widget_show( m_frameMenuBar
->m_widget
);
353 int yy
= m_miniEdge
+ m_miniTitle
;
354 int ww
= m_width
- 2*m_miniEdge
;
357 int hh
= m_menuBarHeight
;
358 if (m_menuBarDetached
) hh
= wxPLACE_HOLDER
;
359 m_frameMenuBar
->m_x
= xx
;
360 m_frameMenuBar
->m_y
= yy
;
361 m_frameMenuBar
->m_width
= ww
;
362 m_frameMenuBar
->m_height
= hh
;
363 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
364 m_frameMenuBar
->m_widget
,
366 client_area_y_offset
+= hh
;
372 if (GTK_WIDGET_VISIBLE(m_frameMenuBar
->m_widget
))
373 gtk_widget_hide( m_frameMenuBar
->m_widget
);
376 #endif // wxUSE_MENUS_NATIVE
379 if ((m_frameToolBar
) && m_frameToolBar
->IsShown() &&
380 (m_frameToolBar
->m_widget
->parent
== m_mainWidget
))
383 int yy
= m_miniEdge
+ m_miniTitle
;
384 #if wxUSE_MENUS_NATIVE
387 if (!m_menuBarDetached
)
388 yy
+= m_menuBarHeight
;
390 yy
+= wxPLACE_HOLDER
;
392 #endif // wxUSE_MENUS_NATIVE
394 m_frameToolBar
->m_x
= xx
;
395 m_frameToolBar
->m_y
= yy
;
397 // don't change the toolbar's reported height/width
399 if ( m_frameToolBar
->GetWindowStyle() & wxTB_VERTICAL
)
401 ww
= m_toolBarDetached
? wxPLACE_HOLDER
402 : m_frameToolBar
->m_width
;
403 hh
= m_height
- 2*m_miniEdge
;
405 client_area_x_offset
+= ww
;
407 else if( m_frameToolBar
->HasFlag(wxTB_RIGHT
) )
410 ww
= m_toolBarDetached
? wxPLACE_HOLDER
411 : m_frameToolBar
->m_width
;
412 xx
= GetClientSize().x
- 1;
413 hh
= m_height
- 2*m_miniEdge
;
418 else if( m_frameToolBar
->GetWindowStyle() & wxTB_BOTTOM
)
421 yy
= GetClientSize().y
;
422 #if wxUSE_MENUS_NATIVE
423 yy
+= m_menuBarHeight
;
424 #endif // wxUSE_MENU_NATIVE
425 m_frameToolBar
->m_x
= xx
;
426 m_frameToolBar
->m_y
= yy
;
427 ww
= m_width
- 2*m_miniEdge
;
428 hh
= m_toolBarDetached
? wxPLACE_HOLDER
429 : m_frameToolBar
->m_height
;
433 ww
= m_width
- 2*m_miniEdge
;
434 hh
= m_toolBarDetached
? wxPLACE_HOLDER
435 : m_frameToolBar
->m_height
;
437 client_area_y_offset
+= hh
;
444 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
445 m_frameToolBar
->m_widget
,
448 #endif // wxUSE_TOOLBAR
450 int client_x
= client_area_x_offset
+ m_miniEdge
;
451 int client_y
= client_area_y_offset
+ m_miniEdge
+ m_miniTitle
;
452 int client_w
= m_width
- client_area_x_offset
- 2*m_miniEdge
;
453 int client_h
= m_height
- client_area_y_offset
- 2*m_miniEdge
- m_miniTitle
;
458 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
460 client_x
, client_y
, client_w
, client_h
);
464 // If there is no m_mainWidget between m_widget and m_wxwindow there
465 // is no need to set the size or position of m_wxwindow.
469 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown() &&
470 !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOSTATUSBAR
) != 0))
472 if (!GTK_WIDGET_VISIBLE(m_frameStatusBar
->m_widget
))
473 gtk_widget_show( m_frameStatusBar
->m_widget
);
475 int xx
= 0 + m_miniEdge
;
476 int yy
= m_height
- wxSTATUS_HEIGHT
- m_miniEdge
- client_area_y_offset
;
477 int ww
= m_width
- 2*m_miniEdge
;
480 int hh
= wxSTATUS_HEIGHT
;
481 m_frameStatusBar
->m_x
= xx
;
482 m_frameStatusBar
->m_y
= yy
;
483 m_frameStatusBar
->m_width
= ww
;
484 m_frameStatusBar
->m_height
= hh
;
485 gtk_pizza_set_size( GTK_PIZZA(m_wxwindow
),
486 m_frameStatusBar
->m_widget
,
491 if (m_frameStatusBar
)
493 if (GTK_WIDGET_VISIBLE(m_frameStatusBar
->m_widget
))
494 gtk_widget_hide( m_frameStatusBar
->m_widget
);
497 #endif // wxUSE_STATUSBAR
501 // send size event to frame
502 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
503 event
.SetEventObject( this );
504 GetEventHandler()->ProcessEvent( event
);
507 // send size event to status bar
508 if (m_frameStatusBar
)
510 wxSizeEvent
event2( wxSize(m_frameStatusBar
->m_width
,m_frameStatusBar
->m_height
), m_frameStatusBar
->GetId() );
511 event2
.SetEventObject( m_frameStatusBar
);
512 m_frameStatusBar
->GetEventHandler()->ProcessEvent( event2
);
514 #endif // wxUSE_STATUSBAR
519 void wxFrame::OnInternalIdle()
521 wxFrameBase::OnInternalIdle();
523 #if wxUSE_MENUS_NATIVE
524 if (m_frameMenuBar
) m_frameMenuBar
->OnInternalIdle();
525 #endif // wxUSE_MENUS_NATIVE
527 if (m_frameToolBar
) m_frameToolBar
->OnInternalIdle();
530 if (m_frameStatusBar
)
532 m_frameStatusBar
->OnInternalIdle();
534 // There may be controls in the status bar that
535 // need to be updated
536 for ( wxWindowList::compatibility_iterator node
= m_frameStatusBar
->GetChildren().GetFirst();
538 node
= node
->GetNext() )
540 wxWindow
*child
= node
->GetData();
541 child
->OnInternalIdle();
547 // ----------------------------------------------------------------------------
548 // menu/tool/status bar stuff
549 // ----------------------------------------------------------------------------
551 #if wxUSE_MENUS_NATIVE
553 void wxFrame::DetachMenuBar()
555 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
556 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
558 if ( m_frameMenuBar
)
560 m_frameMenuBar
->UnsetInvokingWindow( this );
562 if (m_frameMenuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
564 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
565 (gpointer
) gtk_menu_attached_callback
,
568 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
569 (gpointer
) gtk_menu_detached_callback
,
573 gtk_widget_ref( m_frameMenuBar
->m_widget
);
575 gtk_container_remove( GTK_CONTAINER(m_mainWidget
), m_frameMenuBar
->m_widget
);
578 wxFrameBase::DetachMenuBar();
581 void wxFrame::AttachMenuBar( wxMenuBar
*menuBar
)
583 wxFrameBase::AttachMenuBar(menuBar
);
587 m_frameMenuBar
->SetInvokingWindow( this );
589 m_frameMenuBar
->SetParent(this);
590 gtk_pizza_put( GTK_PIZZA(m_mainWidget
),
591 m_frameMenuBar
->m_widget
,
594 m_frameMenuBar
->m_width
,
595 m_frameMenuBar
->m_height
);
597 if (menuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
599 g_signal_connect (menuBar
->m_widget
, "child_attached",
600 G_CALLBACK (gtk_menu_attached_callback
),
602 g_signal_connect (menuBar
->m_widget
, "child_detached",
603 G_CALLBACK (gtk_menu_detached_callback
),
607 gtk_widget_show( m_frameMenuBar
->m_widget
);
614 GtkUpdateSize(); // resize window in OnInternalIdle
618 void wxFrame::UpdateMenuBarSize()
622 // this is called after Remove with a NULL m_frameMenuBar
623 if ( m_frameMenuBar
)
626 gtk_widget_ensure_style(m_frameMenuBar
->m_widget
);
627 // have to call class method directly because
628 // "size_request" signal is overridden by wx
629 GTK_WIDGET_GET_CLASS(m_frameMenuBar
->m_widget
)->size_request(
630 m_frameMenuBar
->m_widget
, &req
);
632 m_menuBarHeight
= req
.height
;
635 // resize window in OnInternalIdle
639 #endif // wxUSE_MENUS_NATIVE
643 wxToolBar
* wxFrame::CreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
645 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
647 m_insertInClientArea
= false;
649 m_frameToolBar
= wxFrameBase::CreateToolBar( style
, id
, name
);
651 m_insertInClientArea
= true;
655 return m_frameToolBar
;
658 void wxFrame::SetToolBar(wxToolBar
*toolbar
)
660 bool hadTbar
= m_frameToolBar
!= NULL
;
662 wxFrameBase::SetToolBar(toolbar
);
664 if ( m_frameToolBar
)
666 // insert into toolbar area if not already there
667 if ((m_frameToolBar
->m_widget
->parent
) &&
668 (m_frameToolBar
->m_widget
->parent
!= m_mainWidget
))
670 GetChildren().DeleteObject( m_frameToolBar
);
672 gtk_widget_reparent( m_frameToolBar
->m_widget
, m_mainWidget
);
676 else // toolbar unset
678 // still need to update size if it had been there before
686 #endif // wxUSE_TOOLBAR
690 wxStatusBar
* wxFrame::CreateStatusBar(int number
,
693 const wxString
& name
)
695 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
697 // because it will change when toolbar is added
700 return wxFrameBase::CreateStatusBar( number
, style
, id
, name
);
703 void wxFrame::SetStatusBar(wxStatusBar
*statbar
)
705 bool hadStatBar
= m_frameStatusBar
!= NULL
;
707 wxFrameBase::SetStatusBar(statbar
);
709 if (hadStatBar
&& !m_frameStatusBar
)
713 void wxFrame::PositionStatusBar()
715 if ( !m_frameStatusBar
)
720 #endif // wxUSE_STATUSBAR