1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "frame.h"
16 #include "wx/dialog.h"
17 #include "wx/control.h"
20 #include "wx/toolbar.h"
21 #include "wx/statusbr.h"
23 #include "wx/dcclient.h"
24 #include "wx/gtk/win_gtk.h"
26 const wxMENU_HEIGHT
= 28;
27 const wxSTATUS_HEIGHT
= 25;
29 extern wxList wxTopLevelWindows
;
30 extern wxList wxPendingDelete
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
39 void gtk_frame_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxFrame
*win
)
41 if (!win
->HasVMT()) return;
44 printf( "OnFrameResize from " );
45 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
46 printf( win->GetClassInfo()->GetClassName() );
50 win
->GtkOnSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
53 //-----------------------------------------------------------------------------
56 bool gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxFrame
*win
)
59 printf( "OnDelete from " );
60 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
61 printf( win->GetClassInfo()->GetClassName() );
70 //-----------------------------------------------------------------------------
73 gint
gtk_frame_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxFrame
*win
)
75 if (!win
->HasVMT()) return FALSE
;
83 //-----------------------------------------------------------------------------
85 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
86 EVT_SIZE(wxFrame::OnSize
)
87 EVT_CLOSE(wxFrame::OnCloseWindow
)
88 EVT_IDLE(wxFrame::OnIdle
)
91 IMPLEMENT_DYNAMIC_CLASS(wxFrame
,wxWindow
)
95 m_frameMenuBar
= NULL
;
96 m_frameStatusBar
= NULL
;
97 m_frameToolBar
= NULL
;
99 m_addPrivateChild
= FALSE
;
102 wxTopLevelWindows
.Insert( this );
105 wxFrame::wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
106 const wxPoint
&pos
, const wxSize
&size
,
107 long style
, const wxString
&name
)
109 m_frameMenuBar
= NULL
;
110 m_frameStatusBar
= NULL
;
111 m_frameToolBar
= NULL
;
113 m_addPrivateChild
= FALSE
;
116 Create( parent
, id
, title
, pos
, size
, style
, name
);
117 wxTopLevelWindows
.Insert( this );
120 bool wxFrame::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
121 const wxPoint
&pos
, const wxSize
&size
,
122 long style
, const wxString
&name
)
124 m_needParent
= FALSE
;
126 PreCreation( parent
, id
, pos
, size
, style
, name
);
130 m_widget
= gtk_window_new( GTK_WINDOW_TOPLEVEL
);
131 if ((size
.x
!= -1) && (size
.y
!= -1))
132 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
133 if ((pos
.x
!= -1) && (pos
.y
!= -1))
134 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
136 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
137 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
139 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
141 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
142 GTK_SIGNAL_FUNC(gtk_frame_delete_callback
), (gpointer
)this );
144 m_mainWindow
= gtk_myfixed_new();
145 gtk_widget_show( m_mainWindow
);
146 GTK_WIDGET_UNSET_FLAGS( m_mainWindow
, GTK_CAN_FOCUS
);
148 gtk_container_add( GTK_CONTAINER(m_widget
), m_mainWindow
);
149 gtk_widget_set_uposition( m_mainWindow
, 0, 0 );
151 m_wxwindow
= gtk_myfixed_new();
152 gtk_widget_show( m_wxwindow
);
153 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
155 gtk_container_add( GTK_CONTAINER(m_mainWindow
), m_wxwindow
);
157 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
158 GTK_SIGNAL_FUNC(gtk_frame_size_callback
), (gpointer
)this );
160 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
161 GTK_SIGNAL_FUNC(gtk_frame_configure_callback
), (gpointer
)this );
165 gtk_widget_realize( m_mainWindow
);
172 if (m_frameMenuBar
) delete m_frameMenuBar
;
173 if (m_frameStatusBar
) delete m_frameStatusBar
;
175 // if (m_mainWindow) gtk_widget_destroy( m_mainWindow );
177 wxTopLevelWindows
.DeleteObject( this );
178 if (wxTopLevelWindows
.Number() == 0) wxTheApp
->ExitMainLoop();
181 bool wxFrame::Show( bool show
)
185 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
187 ProcessEvent( event
);
189 return wxWindow::Show( show
);
192 void wxFrame::Enable( bool enable
)
194 wxWindow::Enable( enable
);
195 gtk_widget_set_sensitive( m_mainWindow
, enable
);
198 void wxFrame::OnCloseWindow( wxCloseEvent
&event
)
200 if ( GetEventHandler()->OnClose() || event
.GetForce())
206 bool wxFrame::Destroy()
208 if (!wxPendingDelete
.Member(this))
209 wxPendingDelete
.Append(this);
214 void wxFrame::ImplementSetPosition(void)
216 if ((m_x
!= -1) || (m_y
!= -1))
217 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
220 void wxFrame::Centre( int direction
)
222 if (direction
& wxHORIZONTAL
== wxHORIZONTAL
) m_x
= (gdk_screen_width () - m_width
) / 2;
223 if (direction
& wxVERTICAL
== wxVERTICAL
) m_y
= (gdk_screen_height () - m_height
) / 2;
224 ImplementSetPosition();
227 void wxFrame::GetClientSize( int *width
, int *height
) const
229 wxWindow::GetClientSize( width
, height
);
232 if (m_frameMenuBar
) (*height
) -= wxMENU_HEIGHT
;
233 if (m_frameStatusBar
) (*height
) -= wxSTATUS_HEIGHT
;
237 m_frameToolBar
->GetSize( NULL
, &y
);
243 void wxFrame::SetClientSize( int const width
, int const height
)
246 if (m_frameMenuBar
) h
+= wxMENU_HEIGHT
;
247 if (m_frameStatusBar
) h
+= wxSTATUS_HEIGHT
;
251 m_frameToolBar
->GetSize( NULL
, &y
);
254 wxWindow::SetClientSize( width
, h
);
257 void wxFrame::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
259 // due to a bug in gtk, x,y are always 0
263 if ((m_height
== height
) && (m_width
== width
) &&
265 if (!m_mainWindow
) return;
266 if (!m_wxwindow
) return;
271 gtk_widget_set_usize( m_widget
, width
, height
);
275 int main_height
= height
;
276 int main_width
= width
;
278 // This emulates Windows behaviour:
279 // The menu bar is part of the main window, but the status bar
280 // is on the implementation side in the client area. The
281 // function GetClientSize returns the size of the client area
282 // minus the status bar height. Under wxGTK, the main window
283 // is represented by m_mainWindow. The menubar is inserted
284 // into m_mainWindow whereas the statusbar is insertes into
285 // m_wxwindow just like any other window.
288 // gtk_widget_set_usize( m_mainWindow, width, height );
292 main_y
= wxMENU_HEIGHT
;
293 main_height
-= wxMENU_HEIGHT
;
296 int toolbar_height
= 0;
297 if (m_frameToolBar
) m_frameToolBar
->GetSize( NULL
, &toolbar_height
);
299 main_y
+= toolbar_height
;
300 main_height
-= toolbar_height
;
302 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_wxwindow
, main_x
, main_y
);
303 gtk_widget_set_usize( m_wxwindow
, main_width
, main_height
);
307 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_frameMenuBar
->m_widget
, 1, 1 );
308 gtk_widget_set_usize( m_frameMenuBar
->m_widget
, width
-2, wxMENU_HEIGHT
-2 );
313 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_frameToolBar
->m_widget
, 1, wxMENU_HEIGHT
);
314 gtk_widget_set_usize( m_frameToolBar
->m_widget
, width
-2, toolbar_height
);
317 if (m_frameStatusBar
)
319 m_frameStatusBar
->SetSize( 0, main_height
-wxSTATUS_HEIGHT
, width
, wxSTATUS_HEIGHT
);
324 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
325 event
.SetEventObject( this );
326 ProcessEvent( event
);
329 void wxFrame::OnSize( wxSizeEvent
&WXUNUSED(event
) )
331 if ( GetAutoLayout() )
334 // no child: go out !
335 if (!GetChildren()->First())
338 // do we have exactly one child?
339 wxWindow
*child
= NULL
;
340 for(wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next())
342 wxWindow
*win
= (wxWindow
*)node
->Data();
343 if (!IS_KIND_OF(win
,wxFrame
) && !IS_KIND_OF(win
,wxDialog
)
344 #if 0 // not in m_children anyway
345 && (win
!= m_frameMenuBar
) &&
346 (win
!= m_frameToolBar
) &&
347 (win
!= m_frameStatusBar
)
351 if ( child
) // it's the second one: do nothing
358 // yes: set it's size to fill all the frame
359 int client_x
, client_y
;
360 GetClientSize(&client_x
, &client_y
);
361 child
->SetSize( 1, 1, client_x
-2, client_y
);
365 void wxFrame::AddChild( wxWindow
*child
)
367 // wxFrame and wxDialog as children aren't placed into the parents
369 if (IS_KIND_OF(child
,wxMDIChildFrame
)) printf( "wxFrame::AddChild error.\n" );
371 if ( IS_KIND_OF(child
,wxFrame
) || IS_KIND_OF(child
,wxDialog
))
373 m_children
.Append( child
);
375 if ((child
->m_x
!= -1) && (child
->m_y
!= -1))
376 gtk_widget_set_uposition( child
->m_widget
, child
->m_x
, child
->m_y
);
381 if (m_addPrivateChild
)
383 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow
), child
->m_widget
, child
->m_x
, child
->m_y
);
385 gtk_widget_set_usize( child
->m_widget
, child
->m_width
, child
->m_height
);
389 m_children
.Append( child
);
392 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
), child
->m_widget
, child
->m_x
, child
->m_y
);
394 gtk_widget_set_usize( child
->m_widget
, child
->m_width
, child
->m_height
);
398 static void SetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
400 menu
->SetInvokingWindow( win
);
401 wxNode
*node
= menu
->m_items
.First();
404 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
405 if (menuitem
->IsSubMenu())
406 SetInvokingWindow( menuitem
->GetSubMenu(), win
);
411 void wxFrame::SetMenuBar( wxMenuBar
*menuBar
)
413 m_frameMenuBar
= menuBar
;
417 wxNode
*node
= m_frameMenuBar
->m_menus
.First();
420 wxMenu
*menu
= (wxMenu
*)node
->Data();
421 SetInvokingWindow( menu
, this );
425 if (m_frameMenuBar
->m_parent
!= this)
427 m_frameMenuBar
->m_parent
= this;
428 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow
),
429 m_frameMenuBar
->m_widget
, m_frameMenuBar
->m_x
, m_frameMenuBar
->m_y
);
434 wxMenuBar
*wxFrame::GetMenuBar(void) const
436 return m_frameMenuBar
;
439 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
441 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
, "recreating toolbar in wxFrame" );
443 m_addPrivateChild
= TRUE
;
444 m_frameToolBar
= OnCreateToolBar( style
, id
, name
);
445 m_addPrivateChild
= FALSE
;
447 return m_frameToolBar
;
450 wxToolBar
* wxFrame::OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
452 return new wxToolBar( this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
455 wxToolBar
*wxFrame::GetToolBar(void) const
457 return m_frameToolBar
;
460 wxStatusBar
* wxFrame::CreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
462 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
, "recreating status bar in wxFrame" );
464 m_frameStatusBar
= OnCreateStatusBar( number
, style
, id
, name
);
466 return m_frameStatusBar
;
469 wxStatusBar
*wxFrame::OnCreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
471 wxStatusBar
*statusBar
= NULL
;
473 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20), style
, name
);
475 // Set the height according to the font and the border size
476 wxClientDC
dc(statusBar
);
477 dc
.SetFont( *statusBar
->GetFont() );
480 dc
.GetTextExtent( "X", &x
, &y
);
482 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
484 statusBar
->SetSize( -1, -1, 100, height
);
486 statusBar
->SetFieldsCount( number
);
490 void wxFrame::SetStatusText(const wxString
& text
, int number
)
492 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
494 m_frameStatusBar
->SetStatusText(text
, number
);
497 void wxFrame::SetStatusWidths(int n
, const int widths_field
[] )
499 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
501 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
504 wxStatusBar
*wxFrame::GetStatusBar(void) const
506 return m_frameStatusBar
;
509 void wxFrame::SetTitle( const wxString
&title
)
512 if (m_title
.IsNull()) m_title
= "";
513 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
516 void wxFrame::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int WXUNUSED(incW
) )
519 gdk_window_set_hints( m_wxwindow
->window
, -1, -1,
520 minW
, minH
, maxW
, maxH
, GDK_HINT_MIN_SIZE
| GDK_HINT_MIN_SIZE
);
523 void wxFrame::SetIcon( const wxIcon
&icon
)
526 if (!icon
.Ok()) return;
528 wxMask
*mask
= icon
.GetMask();
529 GdkBitmap
*bm
= NULL
;
530 if (mask
) bm
= mask
->GetBitmap();
532 gdk_window_set_icon( m_widget
->window
, NULL
, icon
.GetPixmap(), bm
);