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 //-----------------------------------------------------------------------------
124 /* Callback for wxFrame. This very strange beast has to be used because
125 * C++ has no virtual methods in a constructor. We have to emulate a
126 * virtual function here as wxWidgets requires different ways to insert
127 * a child in container classes. */
129 static void wxInsertChildInFrame(wxWindow
* parent
, wxWindow
* child
)
131 wxASSERT( GTK_IS_WIDGET(child
->m_widget
) );
133 // These are outside the client area
134 wxFrame
* frame
= wx_static_cast(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 if (child
->HasFlag(wxTB_DOCKABLE
))
149 g_signal_connect (child
->m_widget
, "child_attached",
150 G_CALLBACK (gtk_toolbar_attached_callback
),
152 g_signal_connect (child
->m_widget
, "child_detached",
153 G_CALLBACK (gtk_toolbar_detached_callback
),
157 #endif // wxUSE_TOOLBAR_NATIVE
160 #endif // wxUSE_TOOLBAR
162 // ----------------------------------------------------------------------------
164 // ----------------------------------------------------------------------------
168 m_menuBarDetached
= false;
169 m_toolBarDetached
= false;
174 bool wxFrame::Create( wxWindow
*parent
,
176 const wxString
& title
,
178 const wxSize
& sizeOrig
,
180 const wxString
&name
)
182 return wxFrameBase::Create(parent
, id
, title
, pos
, sizeOrig
, style
, name
);
187 m_isBeingDeleted
= true;
191 // ----------------------------------------------------------------------------
192 // overridden wxWindow methods
193 // ----------------------------------------------------------------------------
195 void wxFrame::DoGetClientSize( int *width
, int *height
) const
197 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
199 wxFrameBase::DoGetClientSize(width
, height
);
203 #if wxUSE_MENUS_NATIVE
205 if (HasVisibleMenubar() && !m_menuBarDetached
)
207 *height
-= m_menuBarHeight
;
209 #endif // wxUSE_MENUS_NATIVE
213 if (m_frameStatusBar
&& GTK_WIDGET_VISIBLE(m_frameStatusBar
->m_widget
))
214 *height
-= wxSTATUS_HEIGHT
;
215 #endif // wxUSE_STATUSBAR
220 if (m_frameToolBar
&&
221 GTK_WIDGET_VISIBLE(m_frameToolBar
->m_widget
) && !m_toolBarDetached
)
223 if (m_frameToolBar
->IsVertical())
226 *width
-= m_frameToolBar
->GetSize().x
;
231 *height
-= m_frameToolBar
->GetSize().y
;
234 #endif // wxUSE_TOOLBAR
236 if (width
!= NULL
&& *width
< 0)
238 if (height
!= NULL
&& *height
< 0)
242 bool wxFrame::ShowFullScreen(bool show
, long style
)
244 if (!wxFrameBase::ShowFullScreen(show
, style
))
247 wxWindow
* const bar
[] = {
264 const long fsNoBar
[] = {
265 wxFULLSCREEN_NOMENUBAR
, wxFULLSCREEN_NOTOOLBAR
, wxFULLSCREEN_NOSTATUSBAR
267 for (int i
= 0; i
< 3; i
++)
271 if (bar
[i
] && (style
& fsNoBar
[i
]))
273 if (bar
[i
]->IsShown())
276 style
&= ~fsNoBar
[i
];
281 if (bar
[i
] && (m_fsSaveFlag
& fsNoBar
[i
]))
286 m_fsSaveFlag
= style
;
291 void wxFrame::GtkOnSize()
294 if (m_resizing
) return;
297 // this shouldn't happen: wxFrame, wxMDIParentFrame and wxMDIChildFrame have m_wxwindow
298 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
300 // space occupied by m_frameToolBar and m_frameMenuBar
301 int client_area_x_offset
= 0,
302 client_area_y_offset
= 0;
304 /* wxMDIChildFrame derives from wxFrame but it _is_ a wxWindow as it uses
305 wxWindow::Create to create it's GTK equivalent. m_mainWidget is only
306 set in wxFrame::Create so it is used to check what kind of frame we
307 have here. if m_mainWidget is NULL it is a wxMDIChildFrame and so we
308 skip the part which handles m_frameMenuBar, m_frameToolBar and (most
309 importantly) m_mainWidget */
316 // Rewrite this terrible code to using GtkVBox
318 // m_mainWidget holds the menubar, the toolbar and the client
319 // area, which is represented by m_wxwindow.
321 #if wxUSE_MENUS_NATIVE
322 int menubarHeight
= 0;
325 #if wxUSE_MENUS_NATIVE
326 if (HasVisibleMenubar())
329 int yy
= m_miniEdge
+ m_miniTitle
;
330 int ww
= m_width
- 2*m_miniEdge
;
333 menubarHeight
= m_menuBarHeight
;
334 if (m_menuBarDetached
) menubarHeight
= wxPLACE_HOLDER
;
335 m_frameMenuBar
->m_x
= xx
;
336 m_frameMenuBar
->m_y
= yy
;
337 m_frameMenuBar
->m_width
= ww
;
338 m_frameMenuBar
->m_height
= menubarHeight
;
339 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
340 m_frameMenuBar
->m_widget
,
341 xx
, yy
, ww
, menubarHeight
);
342 client_area_y_offset
+= menubarHeight
;
344 #endif // wxUSE_MENUS_NATIVE
347 if ((m_frameToolBar
) && m_frameToolBar
->IsShown() &&
348 (m_frameToolBar
->m_widget
->parent
== m_mainWidget
))
351 int yy
= m_miniEdge
+ m_miniTitle
352 #if wxUSE_MENUS_NATIVE
357 m_frameToolBar
->m_x
= xx
;
358 m_frameToolBar
->m_y
= yy
;
360 // don't change the toolbar's reported height/width
362 if ( m_frameToolBar
->GetWindowStyle() & wxTB_VERTICAL
)
364 ww
= m_toolBarDetached
? wxPLACE_HOLDER
365 : m_frameToolBar
->m_width
;
366 hh
= m_height
- 2*m_miniEdge
;
368 client_area_x_offset
+= ww
;
370 else if( m_frameToolBar
->HasFlag(wxTB_RIGHT
) )
373 ww
= m_toolBarDetached
? wxPLACE_HOLDER
374 : m_frameToolBar
->m_width
;
375 xx
= GetClientSize().x
- 1;
376 hh
= m_height
- 2*m_miniEdge
;
381 else if( m_frameToolBar
->GetWindowStyle() & wxTB_BOTTOM
)
384 yy
= GetClientSize().y
;
385 #if wxUSE_MENUS_NATIVE
386 yy
+= m_menuBarHeight
;
387 #endif // wxUSE_MENUS_NATIVE
388 m_frameToolBar
->m_x
= xx
;
389 m_frameToolBar
->m_y
= yy
;
390 ww
= m_width
- 2*m_miniEdge
;
391 hh
= m_toolBarDetached
? wxPLACE_HOLDER
392 : m_frameToolBar
->m_height
;
396 ww
= m_width
- 2*m_miniEdge
;
397 hh
= m_toolBarDetached
? wxPLACE_HOLDER
398 : m_frameToolBar
->m_height
;
400 client_area_y_offset
+= hh
;
407 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
408 m_frameToolBar
->m_widget
,
411 #endif // wxUSE_TOOLBAR
413 int client_x
= client_area_x_offset
+ m_miniEdge
;
414 int client_y
= client_area_y_offset
+ m_miniEdge
+ m_miniTitle
;
415 int client_w
= m_width
- client_area_x_offset
- 2*m_miniEdge
;
416 int client_h
= m_height
- client_area_y_offset
- 2*m_miniEdge
- m_miniTitle
;
421 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
423 client_x
, client_y
, client_w
, client_h
);
427 // If there is no m_mainWidget between m_widget and m_wxwindow there
428 // is no need to set the size or position of m_wxwindow.
432 if (m_frameStatusBar
&& m_frameStatusBar
->IsShown())
434 int xx
= 0 + m_miniEdge
;
435 int yy
= m_height
- wxSTATUS_HEIGHT
- m_miniEdge
- client_area_y_offset
;
436 int ww
= m_width
- 2*m_miniEdge
;
439 int hh
= wxSTATUS_HEIGHT
;
440 m_frameStatusBar
->m_x
= xx
;
441 m_frameStatusBar
->m_y
= yy
;
442 m_frameStatusBar
->m_width
= ww
;
443 m_frameStatusBar
->m_height
= hh
;
444 gtk_pizza_set_size( GTK_PIZZA(m_wxwindow
),
445 m_frameStatusBar
->m_widget
,
448 #endif // wxUSE_STATUSBAR
452 // send size event to frame
453 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
454 event
.SetEventObject( this );
455 GetEventHandler()->ProcessEvent( event
);
458 // send size event to status bar
459 if (m_frameStatusBar
)
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
);
465 #endif // wxUSE_STATUSBAR
470 void wxFrame::OnInternalIdle()
472 wxFrameBase::OnInternalIdle();
474 #if wxUSE_MENUS_NATIVE
475 if (m_frameMenuBar
) m_frameMenuBar
->OnInternalIdle();
476 #endif // wxUSE_MENUS_NATIVE
478 if (m_frameToolBar
) m_frameToolBar
->OnInternalIdle();
481 if (m_frameStatusBar
)
483 m_frameStatusBar
->OnInternalIdle();
485 // There may be controls in the status bar that
486 // need to be updated
487 for ( wxWindowList::compatibility_iterator node
= m_frameStatusBar
->GetChildren().GetFirst();
489 node
= node
->GetNext() )
491 wxWindow
*child
= node
->GetData();
492 child
->OnInternalIdle();
498 // ----------------------------------------------------------------------------
499 // menu/tool/status bar stuff
500 // ----------------------------------------------------------------------------
502 #if wxUSE_MENUS_NATIVE
504 void wxFrame::DetachMenuBar()
506 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
507 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
509 if ( m_frameMenuBar
)
511 m_frameMenuBar
->UnsetInvokingWindow( this );
513 if (m_frameMenuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
515 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
516 (gpointer
) gtk_menu_attached_callback
,
519 g_signal_handlers_disconnect_by_func (m_frameMenuBar
->m_widget
,
520 (gpointer
) gtk_menu_detached_callback
,
524 gtk_widget_ref( m_frameMenuBar
->m_widget
);
526 gtk_container_remove( GTK_CONTAINER(m_mainWidget
), m_frameMenuBar
->m_widget
);
529 wxFrameBase::DetachMenuBar();
532 void wxFrame::AttachMenuBar( wxMenuBar
*menuBar
)
534 wxFrameBase::AttachMenuBar(menuBar
);
538 m_frameMenuBar
->SetInvokingWindow( this );
540 m_frameMenuBar
->SetParent(this);
541 gtk_pizza_put( GTK_PIZZA(m_mainWidget
),
542 m_frameMenuBar
->m_widget
,
545 m_frameMenuBar
->m_width
,
546 m_frameMenuBar
->m_height
);
548 if (menuBar
->GetWindowStyle() & wxMB_DOCKABLE
)
550 g_signal_connect (menuBar
->m_widget
, "child_attached",
551 G_CALLBACK (gtk_menu_attached_callback
),
553 g_signal_connect (menuBar
->m_widget
, "child_detached",
554 G_CALLBACK (gtk_menu_detached_callback
),
558 gtk_widget_show( m_frameMenuBar
->m_widget
);
565 GtkUpdateSize(); // resize window in OnInternalIdle
569 void wxFrame::UpdateMenuBarSize()
573 // this is called after Remove with a NULL m_frameMenuBar
574 if ( m_frameMenuBar
)
577 gtk_widget_ensure_style(m_frameMenuBar
->m_widget
);
578 // have to call class method directly because
579 // "size_request" signal is overridden by wx
580 GTK_WIDGET_GET_CLASS(m_frameMenuBar
->m_widget
)->size_request(
581 m_frameMenuBar
->m_widget
, &req
);
583 m_menuBarHeight
= req
.height
;
586 // resize window in OnInternalIdle
590 bool wxFrame::HasVisibleMenubar() const
592 return m_frameMenuBar
&& m_frameMenuBar
->IsShown();
594 #endif // wxUSE_MENUS_NATIVE
598 wxToolBar
* wxFrame::CreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
600 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
602 InsertChildFunction save
= m_insertCallback
;
603 m_insertCallback
= wxInsertChildInFrame
;
604 m_frameToolBar
= wxFrameBase::CreateToolBar( style
, id
, name
);
605 m_insertCallback
= save
;
609 return m_frameToolBar
;
612 void wxFrame::SetToolBar(wxToolBar
*toolbar
)
614 bool hadTbar
= m_frameToolBar
!= NULL
;
616 wxFrameBase::SetToolBar(toolbar
);
618 if ( m_frameToolBar
)
620 // insert into toolbar area if not already there
621 if ((m_frameToolBar
->m_widget
->parent
) &&
622 (m_frameToolBar
->m_widget
->parent
!= m_mainWidget
))
624 GetChildren().DeleteObject( m_frameToolBar
);
626 gtk_widget_reparent( m_frameToolBar
->m_widget
, m_mainWidget
);
630 else // toolbar unset
632 // still need to update size if it had been there before
640 #endif // wxUSE_TOOLBAR
644 wxStatusBar
* wxFrame::CreateStatusBar(int number
,
647 const wxString
& name
)
649 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
651 // because it will change when toolbar is added
654 return wxFrameBase::CreateStatusBar( number
, style
, id
, name
);
657 void wxFrame::SetStatusBar(wxStatusBar
*statbar
)
659 bool hadStatBar
= m_frameStatusBar
!= NULL
;
661 wxFrameBase::SetStatusBar(statbar
);
663 if (hadStatBar
&& !m_frameStatusBar
)
667 void wxFrame::PositionStatusBar()
669 if ( !m_frameStatusBar
)
674 #endif // wxUSE_STATUSBAR