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/gtk/win_gtk.h"
25 const wxMENU_HEIGHT
= 28;
26 const wxSTATUS_HEIGHT
= 25;
28 extern wxList wxTopLevelWindows
;
29 extern wxList wxPendingDelete
;
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
38 void gtk_frame_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxFrame
*win
)
40 if (!win
->HasVMT()) return;
43 printf( "OnFrameResize from " );
44 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
45 printf( win->GetClassInfo()->GetClassName() );
49 win
->GtkOnSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
52 //-----------------------------------------------------------------------------
55 bool gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxFrame
*win
)
58 printf( "OnDelete from " );
59 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
60 printf( win->GetClassInfo()->GetClassName() );
69 //-----------------------------------------------------------------------------
72 gint
gtk_frame_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxFrame
*win
)
74 if (!win
->HasVMT()) return FALSE
;
82 //-----------------------------------------------------------------------------
84 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
85 EVT_SIZE(wxFrame::OnSize
)
86 EVT_CLOSE(wxFrame::OnCloseWindow
)
87 EVT_IDLE(wxFrame::OnIdle
)
90 IMPLEMENT_DYNAMIC_CLASS(wxFrame
,wxWindow
)
94 m_frameMenuBar
= NULL
;
95 m_frameStatusBar
= NULL
;
96 m_frameToolBar
= NULL
;
98 m_addPrivateChild
= FALSE
;
101 wxTopLevelWindows
.Insert( this );
104 wxFrame::wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
105 const wxPoint
&pos
, const wxSize
&size
,
106 long style
, const wxString
&name
)
108 m_frameMenuBar
= NULL
;
109 m_frameStatusBar
= NULL
;
110 m_frameToolBar
= NULL
;
112 m_addPrivateChild
= FALSE
;
115 Create( parent
, id
, title
, pos
, size
, style
, name
);
116 wxTopLevelWindows
.Insert( this );
119 bool wxFrame::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
120 const wxPoint
&pos
, const wxSize
&size
,
121 long style
, const wxString
&name
)
123 m_needParent
= FALSE
;
125 PreCreation( parent
, id
, pos
, size
, style
, name
);
129 m_widget
= gtk_window_new( GTK_WINDOW_TOPLEVEL
);
130 if ((size
.x
!= -1) && (size
.y
!= -1))
131 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
132 if ((pos
.x
!= -1) && (pos
.y
!= -1))
133 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
135 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
136 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
138 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
140 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
141 GTK_SIGNAL_FUNC(gtk_frame_delete_callback
), (gpointer
)this );
143 m_mainWindow
= gtk_myfixed_new();
144 gtk_widget_show( m_mainWindow
);
145 GTK_WIDGET_UNSET_FLAGS( m_mainWindow
, GTK_CAN_FOCUS
);
147 gtk_container_add( GTK_CONTAINER(m_widget
), m_mainWindow
);
148 gtk_widget_set_uposition( m_mainWindow
, 0, 0 );
150 m_wxwindow
= gtk_myfixed_new();
151 gtk_widget_show( m_wxwindow
);
152 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
154 gtk_container_add( GTK_CONTAINER(m_mainWindow
), m_wxwindow
);
156 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
157 GTK_SIGNAL_FUNC(gtk_frame_size_callback
), (gpointer
)this );
159 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
160 GTK_SIGNAL_FUNC(gtk_frame_configure_callback
), (gpointer
)this );
164 gtk_widget_realize( m_mainWindow
);
171 if (m_frameMenuBar
) delete m_frameMenuBar
;
172 if (m_frameStatusBar
) delete m_frameStatusBar
;
174 // if (m_mainWindow) gtk_widget_destroy( m_mainWindow );
176 wxTopLevelWindows
.DeleteObject( this );
177 if (wxTopLevelWindows
.Number() == 0) wxTheApp
->ExitMainLoop();
180 bool wxFrame::Show( bool show
)
184 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
186 ProcessEvent( event
);
188 return wxWindow::Show( show
);
191 void wxFrame::Enable( bool enable
)
193 wxWindow::Enable( enable
);
194 gtk_widget_set_sensitive( m_mainWindow
, enable
);
197 void wxFrame::OnCloseWindow( wxCloseEvent
&event
)
199 if ( GetEventHandler()->OnClose() || event
.GetForce())
205 bool wxFrame::Destroy()
207 if (!wxPendingDelete
.Member(this))
208 wxPendingDelete
.Append(this);
213 void wxFrame::GetClientSize( int *width
, int *height
) const
215 wxWindow::GetClientSize( width
, height
);
218 if (m_frameMenuBar
) (*height
) -= wxMENU_HEIGHT
;
219 if (m_frameStatusBar
) (*height
) -= wxSTATUS_HEIGHT
;
223 m_frameToolBar
->GetSize( NULL
, &y
);
229 void wxFrame::SetClientSize( int const width
, int const height
)
232 if (m_frameMenuBar
) h
+= wxMENU_HEIGHT
;
233 if (m_frameStatusBar
) h
+= wxSTATUS_HEIGHT
;
237 m_frameToolBar
->GetSize( NULL
, &y
);
240 wxWindow::SetClientSize( width
, h
);
243 void wxFrame::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
245 // due to a bug in gtk, x,y are always 0
249 if ((m_height
== height
) && (m_width
== width
) &&
251 if (!m_mainWindow
) return;
252 if (!m_wxwindow
) return;
257 gtk_widget_set_usize( m_widget
, width
, height
);
261 int main_height
= height
;
262 int main_width
= width
;
264 // This emulates Windows behaviour:
265 // The menu bar is part of the main window, but the status bar
266 // is on the implementation side in the client area. The
267 // function GetClientSize returns the size of the client area
268 // minus the status bar height. Under wxGTK, the main window
269 // is represented by m_mainWindow. The menubar is inserted
270 // into m_mainWindow whereas the statusbar is insertes into
271 // m_wxwindow just like any other window.
274 // gtk_widget_set_usize( m_mainWindow, width, height );
278 main_y
= wxMENU_HEIGHT
;
279 main_height
-= wxMENU_HEIGHT
;
282 int toolbar_height
= 0;
283 if (m_frameToolBar
) m_frameToolBar
->GetSize( NULL
, &toolbar_height
);
285 main_y
+= toolbar_height
;
286 main_height
-= toolbar_height
;
288 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_wxwindow
, main_x
, main_y
);
289 gtk_widget_set_usize( m_wxwindow
, main_width
, main_height
);
293 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_frameMenuBar
->m_widget
, 1, 1 );
294 gtk_widget_set_usize( m_frameMenuBar
->m_widget
, width
-2, wxMENU_HEIGHT
-2 );
299 gtk_myfixed_move( GTK_MYFIXED(m_mainWindow
), m_frameToolBar
->m_widget
, 1, wxMENU_HEIGHT
);
300 gtk_widget_set_usize( m_frameToolBar
->m_widget
, width
-2, toolbar_height
);
303 if (m_frameStatusBar
)
305 m_frameStatusBar
->SetSize( 0, main_height
-wxSTATUS_HEIGHT
, width
, wxSTATUS_HEIGHT
);
310 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
311 event
.SetEventObject( this );
312 ProcessEvent( event
);
315 void wxFrame::OnSize( wxSizeEvent
&WXUNUSED(event
) )
317 if ( GetAutoLayout() )
320 // no child: go out !
321 if (!GetChildren()->First())
324 // do we have exactly one child?
325 wxWindow
*child
= NULL
;
326 for(wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next())
328 wxWindow
*win
= (wxWindow
*)node
->Data();
329 if (!IS_KIND_OF(win
,wxFrame
) && !IS_KIND_OF(win
,wxDialog
)
330 #if 0 // not in m_children anyway
331 && (win
!= m_frameMenuBar
) &&
332 (win
!= m_frameToolBar
) &&
333 (win
!= m_frameStatusBar
)
337 if ( child
) // it's the second one: do nothing
344 // yes: set it's size to fill all the frame
345 int client_x
, client_y
;
346 GetClientSize(&client_x
, &client_y
);
347 child
->SetSize( 1, 1, client_x
-2, client_y
);
351 void wxFrame::AddChild( wxWindow
*child
)
353 // wxFrame and wxDialog as children aren't placed into the parents
355 if (IS_KIND_OF(child
,wxMDIChildFrame
)) printf( "wxFrame::AddChild error.\n" );
357 if ( IS_KIND_OF(child
,wxFrame
) || IS_KIND_OF(child
,wxDialog
))
359 m_children
.Append( child
);
361 if ((child
->m_x
!= -1) && (child
->m_y
!= -1))
362 gtk_widget_set_uposition( child
->m_widget
, child
->m_x
, child
->m_y
);
367 if (m_addPrivateChild
)
369 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow
), child
->m_widget
, child
->m_x
, child
->m_y
);
371 gtk_widget_set_usize( child
->m_widget
, child
->m_width
, child
->m_height
);
375 m_children
.Append( child
);
378 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
), child
->m_widget
, child
->m_x
, child
->m_y
);
380 gtk_widget_set_usize( child
->m_widget
, child
->m_width
, child
->m_height
);
384 static void SetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
386 menu
->SetInvokingWindow( win
);
387 wxNode
*node
= menu
->m_items
.First();
390 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
391 if (menuitem
->IsSubMenu())
392 SetInvokingWindow( menuitem
->GetSubMenu(), win
);
397 void wxFrame::SetMenuBar( wxMenuBar
*menuBar
)
399 m_frameMenuBar
= menuBar
;
403 wxNode
*node
= m_frameMenuBar
->m_menus
.First();
406 wxMenu
*menu
= (wxMenu
*)node
->Data();
407 SetInvokingWindow( menu
, this );
411 if (m_frameMenuBar
->m_parent
!= this)
413 m_frameMenuBar
->m_parent
= this;
414 gtk_myfixed_put( GTK_MYFIXED(m_mainWindow
),
415 m_frameMenuBar
->m_widget
, m_frameMenuBar
->m_x
, m_frameMenuBar
->m_y
);
420 wxMenuBar
*wxFrame::GetMenuBar(void)
422 return m_frameMenuBar
;
425 wxToolBar
*wxFrame::CreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
427 m_addPrivateChild
= TRUE
;
429 m_frameToolBar
= new wxToolBar( this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
431 m_addPrivateChild
= FALSE
;
433 return m_frameToolBar
;
436 wxToolBar
*wxFrame::GetToolBar(void)
438 return m_frameToolBar
;
441 wxStatusBar
* wxFrame::CreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
443 if (m_frameStatusBar
)
444 delete m_frameStatusBar
;
446 m_frameStatusBar
= new wxStatusBar( this, id
, wxPoint(0,0), wxSize(100,20), style
, name
);
448 m_frameStatusBar
->SetFieldsCount( number
);
450 return m_frameStatusBar
;
453 void wxFrame::SetStatusText( const wxString
&text
, int number
)
455 if (m_frameStatusBar
) m_frameStatusBar
->SetStatusText( text
, number
);
458 void wxFrame::SetStatusWidths( int n
, int *width
)
460 if (m_frameStatusBar
) m_frameStatusBar
->SetStatusWidths( n
, width
);
463 wxStatusBar
*wxFrame::GetStatusBar(void)
465 return m_frameStatusBar
;
468 void wxFrame::SetTitle( const wxString
&title
)
471 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
474 void wxFrame::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int WXUNUSED(incW
) )
477 gdk_window_set_hints( m_wxwindow
->window
, -1, -1,
478 minW
, minH
, maxW
, maxH
, GDK_HINT_MIN_SIZE
| GDK_HINT_MIN_SIZE
);
481 void wxFrame::SetIcon( const wxIcon
&icon
)
484 if (!icon
.Ok()) return;
486 wxMask
*mask
= icon
.GetMask();
487 GdkBitmap
*bm
= NULL
;
488 if (mask
) bm
= mask
->GetBitmap();
490 gdk_window_set_icon( m_widget
->window
, NULL
, icon
.GetPixmap(), bm
);