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"
21 #include "wx/gtk/private.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
)
69 wxapp_install_idle_handler();
71 if (!win
->m_hasVMT
) return;
73 // Raise the client area area
74 gdk_window_raise( win
->m_wxwindow
->window
);
76 win
->m_menuBarDetached
= true;
81 #endif // wxUSE_MENUS_NATIVE
84 //-----------------------------------------------------------------------------
85 // "child_attached" of tool bar
86 //-----------------------------------------------------------------------------
89 static void gtk_toolbar_attached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
91 if (!win
->m_hasVMT
) return;
93 win
->m_toolBarDetached
= false;
98 //-----------------------------------------------------------------------------
99 // "child_detached" of tool bar
100 //-----------------------------------------------------------------------------
103 static void gtk_toolbar_detached_callback( GtkWidget
*WXUNUSED(widget
), GtkWidget
*WXUNUSED(child
), wxFrame
*win
)
106 wxapp_install_idle_handler();
108 if (!win
->m_hasVMT
) return;
110 // Raise the client area area
111 gdk_window_raise( win
->m_wxwindow
->window
);
113 win
->m_toolBarDetached
= true;
114 win
->GtkUpdateSize();
117 #endif // wxUSE_TOOLBAR
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
124 //-----------------------------------------------------------------------------
125 // InsertChild for wxFrame
126 //-----------------------------------------------------------------------------
128 /* Callback for wxFrame. This very strange beast has to be used because
129 * C++ has no virtual methods in a constructor. We have to emulate a
130 * virtual function here as wxWidgets requires different ways to insert
131 * a child in container classes. */
133 static void wxInsertChildInFrame( wxFrame
* parent
, wxWindow
* child
)
135 wxASSERT( GTK_IS_WIDGET(child
->m_widget
) );
137 if (!parent
->m_insertInClientArea
)
139 // These are outside the client area
140 wxFrame
* frame
= (wxFrame
*) parent
;
141 gtk_pizza_put( GTK_PIZZA(frame
->m_mainWidget
),
142 GTK_WIDGET(child
->m_widget
),
148 #if wxUSE_TOOLBAR_NATIVE
149 // We connect to these events for recalculating the client area
150 // space when the toolbar is floating
151 if (wxIS_KIND_OF(child
,wxToolBar
))
153 wxToolBar
*toolBar
= (wxToolBar
*) child
;
154 if (toolBar
->GetWindowStyle() & wxTB_DOCKABLE
)
156 g_signal_connect (toolBar
->m_widget
, "child_attached",
157 G_CALLBACK (gtk_toolbar_attached_callback
),
159 g_signal_connect (toolBar
->m_widget
, "child_detached",
160 G_CALLBACK (gtk_toolbar_detached_callback
),
164 #endif // wxUSE_TOOLBAR
168 // These are inside the client area
169 gtk_pizza_put( GTK_PIZZA(parent
->m_wxwindow
),
170 GTK_WIDGET(child
->m_widget
),
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
184 m_menuBarDetached
= false;
185 m_toolBarDetached
= false;
189 bool wxFrame::Create( wxWindow
*parent
,
191 const wxString
& title
,
193 const wxSize
& sizeOrig
,
195 const wxString
&name
)
197 bool rt
= wxTopLevelWindow::Create(parent
, id
, title
, pos
, sizeOrig
,
199 m_insertCallback
= (wxInsertChildFunction
) wxInsertChildInFrame
;
206 m_isBeingDeleted
= true;
210 // ----------------------------------------------------------------------------
211 // overridden wxWindow methods
212 // ----------------------------------------------------------------------------
214 void wxFrame::DoGetClientSize( int *width
, int *height
) const
216 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
218 wxTopLevelWindow::DoGetClientSize( width
, height
);
222 #if wxUSE_MENUS_NATIVE
226 if (!m_menuBarDetached
)
227 (*height
) -= m_menuBarHeight
;
229 (*height
) -= wxPLACE_HOLDER
;
231 #endif // wxUSE_MENUS_NATIVE
235 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown())
236 (*height
) -= wxSTATUS_HEIGHT
;
237 #endif // wxUSE_STATUSBAR
242 if (m_frameToolBar
&& m_frameToolBar
->IsShown())
244 if (m_toolBarDetached
)
247 *height
-= wxPLACE_HOLDER
;
252 m_frameToolBar
->GetSize( &x
, &y
);
253 if ( m_frameToolBar
->GetWindowStyle() & wxTB_VERTICAL
)
265 #endif // wxUSE_TOOLBAR
267 if (width
!= NULL
&& *width
< 0)
269 if (height
!= NULL
&& *height
< 0)
273 void wxFrame::DoSetClientSize( int width
, int height
)
275 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
277 #if wxUSE_MENUS_NATIVE
281 if (!m_menuBarDetached
)
282 height
+= m_menuBarHeight
;
284 height
+= wxPLACE_HOLDER
;
286 #endif // wxUSE_MENUS_NATIVE
290 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown()) height
+= wxSTATUS_HEIGHT
;
295 if (m_frameToolBar
&& m_frameToolBar
->IsShown())
297 if (m_toolBarDetached
)
299 height
+= wxPLACE_HOLDER
;
304 m_frameToolBar
->GetSize( &x
, &y
);
305 if ( m_frameToolBar
->GetWindowStyle() & wxTB_VERTICAL
)
317 wxTopLevelWindow::DoSetClientSize( width
, height
);
320 void wxFrame::GtkOnSize()
323 if (m_resizing
) return;
326 // this shouldn't happen: wxFrame, wxMDIParentFrame and wxMDIChildFrame have m_wxwindow
327 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
329 // space occupied by m_frameToolBar and m_frameMenuBar
330 int client_area_x_offset
= 0,
331 client_area_y_offset
= 0;
333 /* wxMDIChildFrame derives from wxFrame but it _is_ a wxWindow as it uses
334 wxWindow::Create to create it's GTK equivalent. m_mainWidget is only
335 set in wxFrame::Create so it is used to check what kind of frame we
336 have here. if m_mainWidget is NULL it is a wxMDIChildFrame and so we
337 skip the part which handles m_frameMenuBar, m_frameToolBar and (most
338 importantly) m_mainWidget */
340 int minWidth
= GetMinWidth(),
341 minHeight
= GetMinHeight(),
342 maxWidth
= GetMaxWidth(),
343 maxHeight
= GetMaxHeight();
345 if ((minWidth
!= -1) && (m_width
< minWidth
)) m_width
= minWidth
;
346 if ((minHeight
!= -1) && (m_height
< minHeight
)) m_height
= minHeight
;
347 if ((maxWidth
!= -1) && (m_width
> maxWidth
)) m_width
= maxWidth
;
348 if ((maxHeight
!= -1) && (m_height
> maxHeight
)) m_height
= maxHeight
;
353 gint flag
= 0; // GDK_HINT_POS;
354 if ((minWidth
!= -1) || (minHeight
!= -1)) flag
|= GDK_HINT_MIN_SIZE
;
355 if ((maxWidth
!= -1) || (maxHeight
!= -1)) flag
|= GDK_HINT_MAX_SIZE
;
357 geom
.min_width
= minWidth
;
358 geom
.min_height
= minHeight
;
359 geom
.max_width
= maxWidth
;
360 geom
.max_height
= maxHeight
;
361 gtk_window_set_geometry_hints( GTK_WINDOW(m_widget
),
364 (GdkWindowHints
) flag
);
366 // Rewrite this terrible code to using GtkVBox
368 // m_mainWidget holds the menubar, the toolbar and the client
369 // area, which is represented by m_wxwindow.
371 #if wxUSE_MENUS_NATIVE
372 if (m_frameMenuBar
&& !(m_fsIsShowing
&& (m_fsSaveFlag
& wxFULLSCREEN_NOMENUBAR
!= 0)))
374 if (!GTK_WIDGET_VISIBLE(m_frameMenuBar
->m_widget
))
375 gtk_widget_show( m_frameMenuBar
->m_widget
);
377 int yy
= m_miniEdge
+ m_miniTitle
;
378 int ww
= m_width
- 2*m_miniEdge
;
381 int hh
= m_menuBarHeight
;
382 if (m_menuBarDetached
) hh
= wxPLACE_HOLDER
;
383 m_frameMenuBar
->m_x
= xx
;
384 m_frameMenuBar
->m_y
= yy
;
385 m_frameMenuBar
->m_width
= ww
;
386 m_frameMenuBar
->m_height
= hh
;
387 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
388 m_frameMenuBar
->m_widget
,
390 client_area_y_offset
+= hh
;
396 if (GTK_WIDGET_VISIBLE(m_frameMenuBar
->m_widget
))
397 gtk_widget_hide( m_frameMenuBar
->m_widget
);
400 #endif // wxUSE_MENUS_NATIVE
403 if ((m_frameToolBar
) && m_frameToolBar
->IsShown() &&
404 (m_frameToolBar
->m_widget
->parent
== m_mainWidget
))
407 int yy
= m_miniEdge
+ m_miniTitle
;
408 #if wxUSE_MENUS_NATIVE
411 if (!m_menuBarDetached
)
412 yy
+= m_menuBarHeight
;
414 yy
+= wxPLACE_HOLDER
;
416 #endif // wxUSE_MENUS_NATIVE
418 m_frameToolBar
->m_x
= xx
;
419 m_frameToolBar
->m_y
= yy
;
421 // don't change the toolbar's reported height/width
423 if ( m_frameToolBar
->GetWindowStyle() & wxTB_VERTICAL
)
425 ww
= m_toolBarDetached
? wxPLACE_HOLDER
426 : m_frameToolBar
->m_width
;
427 hh
= m_height
- 2*m_miniEdge
;
429 client_area_x_offset
+= ww
;
431 else if( m_frameToolBar
->GetWindowStyle() & wxTB_BOTTOM
)
434 yy
= GetClientSize().y
;
435 #if wxUSE_MENUS_NATIVE
436 yy
+= m_menuBarHeight
;
437 #endif // wxUSE_MENU_NATIVE
438 m_frameToolBar
->m_x
= xx
;
439 m_frameToolBar
->m_y
= yy
;
440 ww
= m_width
- 2*m_miniEdge
;
441 hh
= m_toolBarDetached
? wxPLACE_HOLDER
442 : m_frameToolBar
->m_height
;
446 ww
= m_width
- 2*m_miniEdge
;
447 hh
= m_toolBarDetached
? wxPLACE_HOLDER
448 : m_frameToolBar
->m_height
;
450 client_area_y_offset
+= hh
;
457 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
458 m_frameToolBar
->m_widget
,
461 #endif // wxUSE_TOOLBAR
463 int client_x
= client_area_x_offset
+ m_miniEdge
;
464 int client_y
= client_area_y_offset
+ m_miniEdge
+ m_miniTitle
;
465 int client_w
= m_width
- client_area_x_offset
- 2*m_miniEdge
;
466 int client_h
= m_height
- client_area_y_offset
- 2*m_miniEdge
- m_miniTitle
;
471 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
473 client_x
, client_y
, client_w
, client_h
);
477 // If there is no m_mainWidget between m_widget and m_wxwindow there
478 // is no need to set the size or position of m_wxwindow.
482 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown())
484 int xx
= 0 + m_miniEdge
;
485 int yy
= m_height
- wxSTATUS_HEIGHT
- m_miniEdge
- client_area_y_offset
;
486 int ww
= m_width
- 2*m_miniEdge
;
489 int hh
= wxSTATUS_HEIGHT
;
490 m_frameStatusBar
->m_x
= xx
;
491 m_frameStatusBar
->m_y
= yy
;
492 m_frameStatusBar
->m_width
= ww
;
493 m_frameStatusBar
->m_height
= hh
;
494 gtk_pizza_set_size( GTK_PIZZA(m_wxwindow
),
495 m_frameStatusBar
->m_widget
,
498 #endif // wxUSE_STATUSBAR
502 // send size event to frame
503 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
504 event
.SetEventObject( this );
505 GetEventHandler()->ProcessEvent( event
);
508 // send size event to status bar
509 if (m_frameStatusBar
)
511 wxSizeEvent
event2( wxSize(m_frameStatusBar
->m_width
,m_frameStatusBar
->m_height
), m_frameStatusBar
->GetId() );
512 event2
.SetEventObject( m_frameStatusBar
);
513 m_frameStatusBar
->GetEventHandler()->ProcessEvent( event2
);
515 #endif // wxUSE_STATUSBAR
520 void wxFrame::OnInternalIdle()
522 wxFrameBase::OnInternalIdle();
524 #if wxUSE_MENUS_NATIVE
525 if (m_frameMenuBar
) m_frameMenuBar
->OnInternalIdle();
526 #endif // wxUSE_MENUS_NATIVE
528 if (m_frameToolBar
) m_frameToolBar
->OnInternalIdle();
531 if (m_frameStatusBar
)
533 m_frameStatusBar
->OnInternalIdle();
535 // There may be controls in the status bar that
536 // need to be updated
537 for ( wxWindowList::compatibility_iterator node
= m_frameStatusBar
->GetChildren().GetFirst();
539 node
= node
->GetNext() )
541 wxWindow
*child
= node
->GetData();
542 child
->OnInternalIdle();
548 // ----------------------------------------------------------------------------
549 // menu/tool/status bar stuff
550 // ----------------------------------------------------------------------------
552 #if wxUSE_MENUS_NATIVE
554 void wxFrame::DetachMenuBar()
556 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
557 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
559 if ( m_frameMenuBar
)
561 m_frameMenuBar
->UnsetInvokingWindow( this );
563 if (m_frameMenuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
565 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
566 (gpointer
) gtk_menu_attached_callback
,
569 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
570 (gpointer
) gtk_menu_detached_callback
,
574 gtk_widget_ref( m_frameMenuBar
->m_widget
);
576 gtk_container_remove( GTK_CONTAINER(m_mainWidget
), m_frameMenuBar
->m_widget
);
579 wxFrameBase::DetachMenuBar();
582 void wxFrame::AttachMenuBar( wxMenuBar
*menuBar
)
584 wxFrameBase::AttachMenuBar(menuBar
);
588 m_frameMenuBar
->SetInvokingWindow( this );
590 m_frameMenuBar
->SetParent(this);
591 gtk_pizza_put( GTK_PIZZA(m_mainWidget
),
592 m_frameMenuBar
->m_widget
,
595 m_frameMenuBar
->m_width
,
596 m_frameMenuBar
->m_height
);
598 if (menuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
600 g_signal_connect (menuBar
->m_widget
, "child_attached",
601 G_CALLBACK (gtk_menu_attached_callback
),
603 g_signal_connect (menuBar
->m_widget
, "child_detached",
604 G_CALLBACK (gtk_menu_detached_callback
),
608 gtk_widget_show( m_frameMenuBar
->m_widget
);
615 GtkUpdateSize(); // resize window in OnInternalIdle
619 void wxFrame::UpdateMenuBarSize()
626 // this is called after Remove with a NULL m_frameMenuBar
627 if ( m_frameMenuBar
)
628 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_frameMenuBar
->m_widget
) )->size_request
)
629 (m_frameMenuBar
->m_widget
, &req
);
631 m_menuBarHeight
= req
.height
;
633 // resize window in OnInternalIdle
638 #endif // wxUSE_MENUS_NATIVE
642 wxToolBar
* wxFrame::CreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
644 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
646 m_insertInClientArea
= false;
648 m_frameToolBar
= wxFrameBase::CreateToolBar( style
, id
, name
);
650 m_insertInClientArea
= true;
654 return m_frameToolBar
;
657 void wxFrame::SetToolBar(wxToolBar
*toolbar
)
659 bool hadTbar
= m_frameToolBar
!= NULL
;
661 wxFrameBase::SetToolBar(toolbar
);
663 if ( m_frameToolBar
)
665 // insert into toolbar area if not already there
666 if ((m_frameToolBar
->m_widget
->parent
) &&
667 (m_frameToolBar
->m_widget
->parent
!= m_mainWidget
))
669 GetChildren().DeleteObject( m_frameToolBar
);
671 gtk_widget_reparent( m_frameToolBar
->m_widget
, m_mainWidget
);
675 else // toolbar unset
677 // still need to update size if it had been there before
685 #endif // wxUSE_TOOLBAR
689 wxStatusBar
* wxFrame::CreateStatusBar(int number
,
692 const wxString
& name
)
694 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
696 // because it will change when toolbar is added
699 return wxFrameBase::CreateStatusBar( number
, style
, id
, name
);
702 void wxFrame::SetStatusBar(wxStatusBar
*statbar
)
704 bool hadStatBar
= m_frameStatusBar
!= NULL
;
706 wxFrameBase::SetStatusBar(statbar
);
708 if (hadStatBar
&& !m_frameStatusBar
)
712 void wxFrame::PositionStatusBar()
714 if ( !m_frameStatusBar
)
719 #endif // wxUSE_STATUSBAR