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 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
55 win
->m_sizeSet
= FALSE
;
56 win
->m_width
= alloc
->width
;
57 win
->m_height
= alloc
->height
;
61 //-----------------------------------------------------------------------------
63 //-----------------------------------------------------------------------------
65 static gint
gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxFrame
*win
)
68 printf( "OnDelete from " );
69 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
70 printf( win->GetClassInfo()->GetClassName() );
79 //-----------------------------------------------------------------------------
81 //-----------------------------------------------------------------------------
83 static gint
gtk_frame_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxFrame
*win
)
85 if (!win
->HasVMT()) return FALSE
;
93 //-----------------------------------------------------------------------------
95 //-----------------------------------------------------------------------------
97 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
98 EVT_SIZE(wxFrame::OnSize
)
99 EVT_CLOSE(wxFrame::OnCloseWindow
)
100 EVT_IDLE(wxFrame::OnIdle
)
103 IMPLEMENT_DYNAMIC_CLASS(wxFrame
,wxWindow
)
107 m_frameMenuBar
= (wxMenuBar
*) NULL
;
108 m_frameStatusBar
= (wxStatusBar
*) NULL
;
109 m_frameToolBar
= (wxToolBar
*) NULL
;
111 wxTopLevelWindows
.Insert( this );
114 wxFrame::wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
115 const wxPoint
&pos
, const wxSize
&size
,
116 long style
, const wxString
&name
)
118 m_frameMenuBar
= (wxMenuBar
*) NULL
;
119 m_frameStatusBar
= (wxStatusBar
*) NULL
;
120 m_frameToolBar
= (wxToolBar
*) NULL
;
122 Create( parent
, id
, title
, pos
, size
, style
, name
);
123 wxTopLevelWindows
.Insert( this );
126 bool wxFrame::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
127 const wxPoint
&pos
, const wxSize
&size
,
128 long style
, const wxString
&name
)
130 m_needParent
= FALSE
;
132 PreCreation( parent
, id
, pos
, size
, style
, name
);
136 GtkWindowType win_type
= GTK_WINDOW_TOPLEVEL
;
137 if (style
& wxSIMPLE_BORDER
) win_type
= GTK_WINDOW_POPUP
;
139 m_widget
= gtk_window_new( win_type
);
141 if ((size
.x
!= -1) && (size
.y
!= -1))
142 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
143 if ((pos
.x
!= -1) && (pos
.y
!= -1))
144 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
146 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
147 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
149 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
151 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
152 GTK_SIGNAL_FUNC(gtk_frame_delete_callback
), (gpointer
)this );
154 m_wxwindow
= gtk_myfixed_new();
155 gtk_widget_show( m_wxwindow
);
156 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
158 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
160 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
161 GTK_SIGNAL_FUNC(gtk_frame_size_callback
), (gpointer
)this );
163 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
164 GTK_SIGNAL_FUNC(gtk_frame_configure_callback
), (gpointer
)this );
166 if (m_parent
) m_parent
->AddChild( this );
175 if (m_frameMenuBar
) delete m_frameMenuBar
;
176 if (m_frameStatusBar
) delete m_frameStatusBar
;
177 if (m_frameToolBar
) delete m_frameToolBar
;
179 wxTopLevelWindows
.DeleteObject( this );
180 if (wxTopLevelWindows
.Number() == 0) wxTheApp
->ExitMainLoop();
183 bool wxFrame::Show( bool show
)
185 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
187 if (show
&& !m_sizeSet
)
189 // this yield call is required for a configure event
190 // to be sent by GTK to its windows. this will among
191 // others prompt all GtkScrolledWidgets to calculate
192 // if they need scrollbars which in turn is required
193 // for wxWindows to calculate the client size of its
198 // by calling GtkOnSize here, we don't have to call
199 // either after showing the frame, which would entail
200 // much ugly flicker nor from within the size_allocate
201 // handler, because GTK 1.1.X forbids that.
203 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
206 return wxWindow::Show( show
);
209 void wxFrame::OnCloseWindow( wxCloseEvent
&event
)
211 if (GetEventHandler()->OnClose() || event
.GetForce()) this->Destroy();
214 bool wxFrame::Destroy()
216 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
218 if (!wxPendingDelete
.Member(this)) wxPendingDelete
.Append(this);
223 wxPoint
wxFrame::GetClientAreaOrigin() const
229 m_frameMenuBar
->GetSize( (int*)NULL
, &h
);
235 m_frameToolBar
->GetSize( (int*)NULL
, &h
);
241 void wxFrame::SetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
243 wxASSERT_MSG( (m_widget
!= NULL
), "invalid window" );
245 // Don't do anything for children of wxMDIChildFrame
246 if (!m_wxwindow
) return;
248 if (m_resizing
) return; // I don't like recursions
253 int old_width
= m_width
;
254 int old_height
= m_height
;
256 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
258 if (x
!= -1) m_x
= x
;
259 if (y
!= -1) m_y
= y
;
260 if (width
!= -1) m_width
= width
;
261 if (height
!= -1) m_height
= height
;
271 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
273 if (width
== -1) m_width
= 80;
276 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
278 if (height
== -1) m_height
= 26;
281 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
282 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
283 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_minWidth
;
284 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_minHeight
;
286 if ((m_x
!= -1) || (m_y
!= -1))
288 if ((m_x
!= old_x
) || (m_y
!= old_y
))
289 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
292 if ((m_width
!= old_width
) || (m_height
!= old_height
))
294 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
299 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
300 event
.SetEventObject( this );
301 GetEventHandler()->ProcessEvent( event
);
306 void wxFrame::SetSize( int width
, int height
)
308 SetSize( -1, -1, width
, height
, wxSIZE_USE_EXISTING
);
311 void wxFrame::Centre( int direction
)
313 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
318 if (direction
& wxHORIZONTAL
== wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
319 if (direction
& wxVERTICAL
== wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
324 void wxFrame::GetClientSize( int *width
, int *height
) const
326 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
328 wxWindow::GetClientSize( width
, height
);
331 if (m_frameMenuBar
) (*height
) -= wxMENU_HEIGHT
;
332 if (m_frameStatusBar
) (*height
) -= wxSTATUS_HEIGHT
;
336 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
342 void wxFrame::SetClientSize( int const width
, int const height
)
344 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
347 if (m_frameMenuBar
) h
+= wxMENU_HEIGHT
;
348 if (m_frameStatusBar
) h
+= wxSTATUS_HEIGHT
;
352 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
355 wxWindow::SetClientSize( width
, h
);
358 void wxFrame::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
360 // due to a bug in gtk, x,y are always 0
364 if (m_resizing
) return;
367 if (!m_wxwindow
) return;
372 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
373 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
374 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_minWidth
;
375 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_minHeight
;
377 // gtk_widget_set_usize( m_widget, m_width, m_height );
379 // This emulates the new wxMSW behaviour
383 m_frameMenuBar
->m_x
= 1;
384 m_frameMenuBar
->m_y
= 1;
385 m_frameMenuBar
->m_width
= m_width
-2;
386 m_frameMenuBar
->m_height
= wxMENU_HEIGHT
-2;
387 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameMenuBar
->m_widget
, 1, 1 );
388 gtk_widget_set_usize( m_frameMenuBar
->m_widget
, m_width
-2, wxMENU_HEIGHT
-2 );
394 if (m_frameMenuBar
) y
= wxMENU_HEIGHT
;
395 int h
= m_frameToolBar
->m_height
;
397 m_frameToolBar
->m_x
= 2;
398 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameToolBar
->m_widget
, 2, y
);
399 gtk_widget_set_usize( m_frameToolBar
->m_widget
, m_width
-3, h
);
402 if (m_frameStatusBar
)
404 // OK, this hurts in the eye, but I don't want to call SetSize()
405 // because I don't want to call any non-native functions here.
406 m_frameStatusBar
->m_x
= 0;
407 m_frameStatusBar
->m_y
= m_height
-wxSTATUS_HEIGHT
;
408 m_frameStatusBar
->m_width
= m_width
;
409 m_frameStatusBar
->m_height
= wxSTATUS_HEIGHT
;
410 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameStatusBar
->m_widget
, 0, m_height
-wxSTATUS_HEIGHT
);
411 gtk_widget_set_usize( m_frameStatusBar
->m_widget
, m_width
, wxSTATUS_HEIGHT
);
416 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
417 event
.SetEventObject( this );
418 GetEventHandler()->ProcessEvent( event
);
423 void wxFrame::OnIdle(wxIdleEvent
& WXUNUSED(event
) )
426 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
431 void wxFrame::OnSize( wxSizeEvent
&WXUNUSED(event
) )
433 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
441 // no child: go out !
442 if (!GetChildren()->First()) return;
444 // do we have exactly one child?
445 wxWindow
*child
= (wxWindow
*) NULL
;
446 for(wxNode
*node
= GetChildren()->First(); node
; node
= node
->Next())
448 wxWindow
*win
= (wxWindow
*)node
->Data();
449 if (!IS_KIND_OF(win
,wxFrame
) && !IS_KIND_OF(win
,wxDialog
)
450 #if 0 // not in m_children anyway ?
451 && (win
!= m_frameMenuBar
) &&
452 (win
!= m_frameToolBar
) &&
453 (win
!= m_frameStatusBar
)
457 // it's the second one: do nothing
463 // yes: set it's size to fill all the frame
464 int client_x
, client_y
;
465 GetClientSize( &client_x
, &client_y
);
466 child
->SetSize( 1, 1, client_x
-2, client_y
);
470 static void SetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
472 menu
->SetInvokingWindow( win
);
473 wxNode
*node
= menu
->m_items
.First();
476 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
477 if (menuitem
->IsSubMenu())
478 SetInvokingWindow( menuitem
->GetSubMenu(), win
);
483 void wxFrame::SetMenuBar( wxMenuBar
*menuBar
)
485 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
486 wxASSERT_MSG( (m_wxwindow
!= NULL
), "invalid frame" );
488 m_frameMenuBar
= menuBar
;
492 wxNode
*node
= m_frameMenuBar
->m_menus
.First();
495 wxMenu
*menu
= (wxMenu
*)node
->Data();
496 SetInvokingWindow( menu
, this );
500 if (m_frameMenuBar
->m_parent
!= this)
502 m_frameMenuBar
->m_parent
= this;
503 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
),
504 m_frameMenuBar
->m_widget
, m_frameMenuBar
->m_x
, m_frameMenuBar
->m_y
);
509 wxMenuBar
*wxFrame::GetMenuBar(void) const
511 return m_frameMenuBar
;
514 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
516 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
518 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
, "recreating toolbar in wxFrame" );
520 m_frameToolBar
= OnCreateToolBar( style
, id
, name
);
522 GetChildren()->DeleteObject( m_frameToolBar
);
524 return m_frameToolBar
;
527 wxToolBar
* wxFrame::OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
529 return new wxToolBar( this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
532 wxToolBar
*wxFrame::GetToolBar(void) const
534 return m_frameToolBar
;
537 wxStatusBar
* wxFrame::CreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
539 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
541 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
, "recreating status bar in wxFrame" );
543 m_frameStatusBar
= OnCreateStatusBar( number
, style
, id
, name
);
545 return m_frameStatusBar
;
548 wxStatusBar
*wxFrame::OnCreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
550 wxStatusBar
*statusBar
= (wxStatusBar
*) NULL
;
552 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20), style
, name
);
554 // Set the height according to the font and the border size
555 wxClientDC
dc(statusBar
);
556 dc
.SetFont( *statusBar
->GetFont() );
559 dc
.GetTextExtent( "X", &x
, &y
);
561 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
563 statusBar
->SetSize( -1, -1, 100, height
);
565 statusBar
->SetFieldsCount( number
);
569 void wxFrame::SetStatusText(const wxString
& text
, int number
)
571 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
573 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
575 m_frameStatusBar
->SetStatusText(text
, number
);
578 void wxFrame::SetStatusWidths(int n
, const int widths_field
[] )
580 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
582 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
584 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
587 wxStatusBar
*wxFrame::GetStatusBar(void) const
589 return m_frameStatusBar
;
592 void wxFrame::SetTitle( const wxString
&title
)
594 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
597 if (m_title
.IsNull()) m_title
= "";
598 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
601 void wxFrame::SetIcon( const wxIcon
&icon
)
603 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
606 if (!icon
.Ok()) return;
608 wxMask
*mask
= icon
.GetMask();
609 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
610 if (mask
) bm
= mask
->GetBitmap();
612 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);