1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "frame.h"
15 #include "wx/dialog.h"
16 #include "wx/control.h"
19 #include "wx/toolbar.h"
20 #include "wx/statusbr.h"
21 #include "wx/dcclient.h"
22 #include "wx/gtk/win_gtk.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 const int wxMENU_HEIGHT
= 30;
29 const int wxSTATUS_HEIGHT
= 25;
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 extern wxList wxTopLevelWindows
;
36 extern wxList wxPendingDelete
;
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 static void gtk_frame_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxFrame
*win
)
44 if (!win
->HasVMT()) return;
47 printf( "OnFrameResize from " );
48 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
49 printf( win->GetClassInfo()->GetClassName() );
53 win
->GtkOnSize( alloc
->x
, alloc
->y
, alloc
->width
, alloc
->height
);
56 //-----------------------------------------------------------------------------
58 //-----------------------------------------------------------------------------
60 static gint
gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxFrame
*win
)
63 printf( "OnDelete from " );
64 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
65 printf( win->GetClassInfo()->GetClassName() );
74 //-----------------------------------------------------------------------------
76 //-----------------------------------------------------------------------------
78 static gint
gtk_frame_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxFrame
*win
)
80 if (!win
->HasVMT()) return FALSE
;
88 //-----------------------------------------------------------------------------
90 //-----------------------------------------------------------------------------
92 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
93 EVT_SIZE(wxFrame::OnSize
)
94 EVT_CLOSE(wxFrame::OnCloseWindow
)
95 EVT_IDLE(wxFrame::OnIdle
)
98 IMPLEMENT_DYNAMIC_CLASS(wxFrame
,wxWindow
)
102 m_frameMenuBar
= (wxMenuBar
*) NULL
;
103 m_frameStatusBar
= (wxStatusBar
*) NULL
;
104 m_frameToolBar
= (wxToolBar
*) NULL
;
106 wxTopLevelWindows
.Insert( this );
109 wxFrame::wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
110 const wxPoint
&pos
, const wxSize
&size
,
111 long style
, const wxString
&name
)
113 m_frameMenuBar
= (wxMenuBar
*) NULL
;
114 m_frameStatusBar
= (wxStatusBar
*) NULL
;
115 m_frameToolBar
= (wxToolBar
*) NULL
;
117 Create( parent
, id
, title
, pos
, size
, style
, name
);
118 wxTopLevelWindows
.Insert( this );
121 bool wxFrame::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
122 const wxPoint
&pos
, const wxSize
&size
,
123 long style
, const wxString
&name
)
125 m_needParent
= FALSE
;
127 PreCreation( parent
, id
, pos
, size
, style
, name
);
131 GtkWindowType win_type
= GTK_WINDOW_TOPLEVEL
;
132 if (style
& wxSIMPLE_BORDER
) win_type
= GTK_WINDOW_POPUP
;
134 m_widget
= gtk_window_new( win_type
);
135 if ((size
.x
!= -1) && (size
.y
!= -1))
136 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
137 if ((pos
.x
!= -1) && (pos
.y
!= -1))
138 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
140 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
141 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
143 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
145 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
146 GTK_SIGNAL_FUNC(gtk_frame_delete_callback
), (gpointer
)this );
148 m_wxwindow
= gtk_myfixed_new();
149 gtk_widget_show( m_wxwindow
);
150 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
152 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
154 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
155 GTK_SIGNAL_FUNC(gtk_frame_size_callback
), (gpointer
)this );
157 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
158 GTK_SIGNAL_FUNC(gtk_frame_configure_callback
), (gpointer
)this );
160 if (m_parent
) m_parent
->AddChild( this );
169 if (m_frameMenuBar
) delete m_frameMenuBar
;
170 if (m_frameStatusBar
) delete m_frameStatusBar
;
171 if (m_frameToolBar
) delete m_frameToolBar
;
173 wxTopLevelWindows
.DeleteObject( this );
174 if (wxTopLevelWindows
.Number() == 0) wxTheApp
->ExitMainLoop();
177 bool wxFrame::Show( bool show
)
179 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
183 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
185 ProcessEvent( event
);
187 return wxWindow::Show( show
);
190 void wxFrame::OnCloseWindow( wxCloseEvent
&event
)
192 if (GetEventHandler()->OnClose() || event
.GetForce()) this->Destroy();
195 bool wxFrame::Destroy()
197 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
199 if (!wxPendingDelete
.Member(this))
200 wxPendingDelete
.Append(this);
205 wxPoint
wxFrame::GetClientAreaOrigin() const
211 m_frameMenuBar
->GetSize( (int*)NULL
, &h
);
217 m_frameToolBar
->GetSize( (int*)NULL
, &h
);
223 void wxFrame::ImplementSetPosition(void)
225 if ((m_x
!= -1) || (m_y
!= -1))
226 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
229 void wxFrame::Centre( int direction
)
231 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
233 if (direction
& wxHORIZONTAL
== wxHORIZONTAL
) m_x
= (gdk_screen_width () - m_width
) / 2;
234 if (direction
& wxVERTICAL
== wxVERTICAL
) m_y
= (gdk_screen_height () - m_height
) / 2;
236 ImplementSetPosition();
239 void wxFrame::GetClientSize( int *width
, int *height
) const
241 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
243 wxWindow::GetClientSize( width
, height
);
246 if (m_frameMenuBar
) (*height
) -= wxMENU_HEIGHT
;
247 if (m_frameStatusBar
) (*height
) -= wxSTATUS_HEIGHT
;
251 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
257 void wxFrame::SetClientSize( int const width
, int const height
)
259 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
262 if (m_frameMenuBar
) h
+= wxMENU_HEIGHT
;
263 if (m_frameStatusBar
) h
+= wxSTATUS_HEIGHT
;
267 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
270 wxWindow::SetClientSize( width
, h
);
273 void wxFrame::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
275 // due to a bug in gtk, x,y are always 0
279 if ((m_height
== height
) && (m_width
== width
) &&
281 if (!m_wxwindow
) return;
285 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
286 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
287 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_minWidth
;
288 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_minHeight
;
290 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
292 // This emulates the new wxMSW behaviour
296 m_frameMenuBar
->m_x
= 1;
297 m_frameMenuBar
->m_y
= 1;
298 m_frameMenuBar
->m_width
= m_width
-2;
299 m_frameMenuBar
->m_height
= wxMENU_HEIGHT
-2;
300 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameMenuBar
->m_widget
, 1, 1 );
301 gtk_widget_set_usize( m_frameMenuBar
->m_widget
, m_width
-2, wxMENU_HEIGHT
-2 );
307 if (m_frameMenuBar
) y
= wxMENU_HEIGHT
;
308 int h
= m_frameToolBar
->m_height
;
310 m_frameToolBar
->m_x
= 2;
311 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameToolBar
->m_widget
, 2, y
);
312 gtk_widget_set_usize( m_frameToolBar
->m_widget
, m_width
-3, h
);
315 if (m_frameStatusBar
)
317 // OK, this hurts in the eye, but I don't want to call SetSize()
318 // because I don't want to call any non-native functions here.
319 m_frameStatusBar
->m_x
= 0;
320 m_frameStatusBar
->m_y
= m_height
-wxSTATUS_HEIGHT
;
321 m_frameStatusBar
->m_width
= m_width
;
322 m_frameStatusBar
->m_height
= wxSTATUS_HEIGHT
;
323 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameStatusBar
->m_widget
, 0, m_height
-wxSTATUS_HEIGHT
);
324 gtk_widget_set_usize( m_frameStatusBar
->m_widget
, m_width
, wxSTATUS_HEIGHT
);
329 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
330 event
.SetEventObject( this );
331 ProcessEvent( event
);
334 void wxFrame::OnSize( wxSizeEvent
&WXUNUSED(event
) )
336 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
338 if ( GetAutoLayout() )
341 // no child: go out !
342 if (!GetChildren()->First())
345 // do we have exactly one child?
346 wxWindow
*child
= (wxWindow
*) NULL
;
347 for(wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next())
349 wxWindow
*win
= (wxWindow
*)node
->Data();
350 if (!IS_KIND_OF(win
,wxFrame
) && !IS_KIND_OF(win
,wxDialog
)
351 #if 0 // not in m_children anyway ?
352 && (win
!= m_frameMenuBar
) &&
353 (win
!= m_frameToolBar
) &&
354 (win
!= m_frameStatusBar
)
358 if ( child
) // it's the second one: do nothing
365 // yes: set it's size to fill all the frame
366 int client_x
, client_y
;
367 GetClientSize(&client_x
, &client_y
);
368 child
->SetSize( 1, 1, client_x
-2, client_y
);
372 static void SetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
374 menu
->SetInvokingWindow( win
);
375 wxNode
*node
= menu
->m_items
.First();
378 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
379 if (menuitem
->IsSubMenu())
380 SetInvokingWindow( menuitem
->GetSubMenu(), win
);
385 void wxFrame::SetMenuBar( wxMenuBar
*menuBar
)
387 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
388 wxASSERT_MSG( (m_wxwindow
!= NULL
), "invalid frame" );
390 m_frameMenuBar
= menuBar
;
394 wxNode
*node
= m_frameMenuBar
->m_menus
.First();
397 wxMenu
*menu
= (wxMenu
*)node
->Data();
398 SetInvokingWindow( menu
, this );
402 if (m_frameMenuBar
->m_parent
!= this)
404 m_frameMenuBar
->m_parent
= this;
405 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
),
406 m_frameMenuBar
->m_widget
, m_frameMenuBar
->m_x
, m_frameMenuBar
->m_y
);
411 wxMenuBar
*wxFrame::GetMenuBar(void) const
413 return m_frameMenuBar
;
416 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
418 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
420 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
, "recreating toolbar in wxFrame" );
422 m_frameToolBar
= OnCreateToolBar( style
, id
, name
);
424 GetChildren()->DeleteObject( m_frameToolBar
);
426 return m_frameToolBar
;
429 wxToolBar
* wxFrame::OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
431 return new wxToolBar( this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
434 wxToolBar
*wxFrame::GetToolBar(void) const
436 return m_frameToolBar
;
439 wxStatusBar
* wxFrame::CreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
441 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
443 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
, "recreating status bar in wxFrame" );
445 m_frameStatusBar
= OnCreateStatusBar( number
, style
, id
, name
);
447 return m_frameStatusBar
;
450 wxStatusBar
*wxFrame::OnCreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
452 wxStatusBar
*statusBar
= (wxStatusBar
*) NULL
;
454 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20), style
, name
);
456 // Set the height according to the font and the border size
457 wxClientDC
dc(statusBar
);
458 dc
.SetFont( *statusBar
->GetFont() );
461 dc
.GetTextExtent( "X", &x
, &y
);
463 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
465 statusBar
->SetSize( -1, -1, 100, height
);
467 statusBar
->SetFieldsCount( number
);
471 void wxFrame::SetStatusText(const wxString
& text
, int number
)
473 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
475 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
477 m_frameStatusBar
->SetStatusText(text
, number
);
480 void wxFrame::SetStatusWidths(int n
, const int widths_field
[] )
482 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
484 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
486 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
489 wxStatusBar
*wxFrame::GetStatusBar(void) const
491 return m_frameStatusBar
;
494 void wxFrame::SetTitle( const wxString
&title
)
496 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
499 if (m_title
.IsNull()) m_title
= "";
500 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
503 void wxFrame::SetIcon( const wxIcon
&icon
)
505 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
508 if (!icon
.Ok()) return;
510 wxMask
*mask
= icon
.GetMask();
511 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
512 if (mask
) bm
= mask
->GetBitmap();
514 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);