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"
26 #include "wx/gtk/win_gtk.h"
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 const int wxMENU_HEIGHT
= 27;
33 const int wxSTATUS_HEIGHT
= 25;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
39 extern wxList wxTopLevelWindows
;
40 extern wxList wxPendingDelete
;
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 static void gtk_frame_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxFrame
*win
)
48 if (!win
->HasVMT()) return;
51 printf( "OnFrameResize from " );
52 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
53 printf( win->GetClassInfo()->GetClassName() );
57 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
59 win
->m_sizeSet
= FALSE
;
60 win
->m_width
= alloc
->width
;
61 win
->m_height
= alloc
->height
;
65 //-----------------------------------------------------------------------------
67 //-----------------------------------------------------------------------------
69 static gint
gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxFrame
*win
)
72 printf( "OnDelete from " );
73 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
74 printf( win->GetClassInfo()->GetClassName() );
83 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
87 static gint
gtk_frame_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxFrame
*win
)
89 if (!win
->HasVMT()) return FALSE
;
94 wxMoveEvent
mevent( wxPoint(win
->m_x
,win
->m_y
), win
->GetId() );
95 mevent
.SetEventObject( win
);
96 win
->GetEventHandler()->ProcessEvent( mevent
);
101 //-----------------------------------------------------------------------------
103 //-----------------------------------------------------------------------------
105 BEGIN_EVENT_TABLE(wxFrame
, wxWindow
)
106 EVT_SIZE(wxFrame::OnSize
)
107 EVT_CLOSE(wxFrame::OnCloseWindow
)
108 EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight
)
111 IMPLEMENT_DYNAMIC_CLASS(wxFrame
,wxWindow
)
115 m_frameMenuBar
= (wxMenuBar
*) NULL
;
116 m_mdiMenuBar
= (wxMenuBar
*) NULL
;
117 m_frameStatusBar
= (wxStatusBar
*) NULL
;
118 m_frameToolBar
= (wxToolBar
*) NULL
;
124 wxFrame::wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
125 const wxPoint
&pos
, const wxSize
&size
,
126 long style
, const wxString
&name
)
128 m_frameMenuBar
= (wxMenuBar
*) NULL
;
129 m_mdiMenuBar
= (wxMenuBar
*) NULL
;
130 m_frameStatusBar
= (wxStatusBar
*) NULL
;
131 m_frameToolBar
= (wxToolBar
*) NULL
;
135 Create( parent
, id
, title
, pos
, size
, style
, name
);
138 bool wxFrame::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
139 const wxPoint
&pos
, const wxSize
&size
,
140 long style
, const wxString
&name
)
142 wxTopLevelWindows
.Append( this );
144 m_needParent
= FALSE
;
146 PreCreation( parent
, id
, pos
, size
, style
, name
);
150 GtkWindowType win_type
= GTK_WINDOW_TOPLEVEL
;
151 if (style
& wxSIMPLE_BORDER
) win_type
= GTK_WINDOW_POPUP
;
153 m_widget
= gtk_window_new( win_type
);
155 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
156 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
158 gtk_window_set_policy( GTK_WINDOW(m_widget
), 1, 1, 0 );
160 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
161 GTK_SIGNAL_FUNC(gtk_frame_delete_callback
), (gpointer
)this );
163 m_wxwindow
= gtk_myfixed_new();
164 gtk_widget_show( m_wxwindow
);
165 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
167 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
169 if (m_parent
) m_parent
->AddChild( this );
173 gtk_widget_realize( m_widget
);
175 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
176 GTK_SIGNAL_FUNC(gtk_frame_size_callback
), (gpointer
)this );
178 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
179 GTK_SIGNAL_FUNC(gtk_frame_configure_callback
), (gpointer
)this );
186 if (m_frameMenuBar
) delete m_frameMenuBar
;
187 m_frameMenuBar
= (wxMenuBar
*) NULL
;
189 if (m_frameStatusBar
) delete m_frameStatusBar
;
190 m_frameStatusBar
= (wxStatusBar
*) NULL
;
192 if (m_frameToolBar
) delete m_frameToolBar
;
193 m_frameToolBar
= (wxToolBar
*) NULL
;
195 wxTopLevelWindows
.DeleteObject( this );
197 if (wxTheApp
->GetTopWindow() == this)
199 wxTheApp
->SetTopWindow( (wxWindow
*) NULL
);
202 if (wxTopLevelWindows
.Number() == 0)
204 wxTheApp
->ExitMainLoop();
208 bool wxFrame::Show( bool show
)
210 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
212 if (show
&& !m_sizeSet
)
214 /* by calling GtkOnSize here, we don't have to call
215 either after showing the frame, which would entail
216 much ugly flicker nor from within the size_allocate
217 handler, because GTK 1.1.X forbids that. */
219 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
222 return wxWindow::Show( show
);
225 bool wxFrame::Destroy()
227 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
229 if (!wxPendingDelete
.Member(this)) wxPendingDelete
.Append(this);
234 wxPoint
wxFrame::GetClientAreaOrigin() const
236 wxPoint
pt( m_miniEdge
, m_miniEdge
+ m_miniTitle
);
240 m_frameMenuBar
->GetSize( (int*)NULL
, &h
);
246 m_frameToolBar
->GetSize( (int*)NULL
, &h
);
252 void wxFrame::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
254 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
256 /* don't do anything for children of wxMDIChildFrame */
257 if (!m_wxwindow
) return;
259 if (m_resizing
) return; // I don't like recursions
264 int old_width
= m_width
;
265 int old_height
= m_height
;
267 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
269 if (x
!= -1) m_x
= x
;
270 if (y
!= -1) m_y
= y
;
271 if (width
!= -1) m_width
= width
;
272 if (height
!= -1) m_height
= height
;
282 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
284 if (width
== -1) m_width
= 80;
287 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
289 if (height
== -1) m_height
= 26;
292 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
293 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
294 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
295 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
297 if ((m_x
!= -1) || (m_y
!= -1))
299 if ((m_x
!= old_x
) || (m_y
!= old_y
))
301 /* m_sizeSet = FALSE; */
302 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
306 if ((m_width
!= old_width
) || (m_height
!= old_height
))
308 /* we set the size in GtkOnSize */
315 void wxFrame::Centre( int direction
)
317 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
322 if ((direction
& wxHORIZONTAL
) == wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
323 if ((direction
& wxVERTICAL
) == wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
328 void wxFrame::GetClientSize( int *width
, int *height
) const
330 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
332 wxWindow::GetClientSize( width
, height
);
335 if (m_frameMenuBar
) (*height
) -= wxMENU_HEIGHT
;
336 if (m_frameStatusBar
) (*height
) -= wxSTATUS_HEIGHT
;
340 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
343 (*height
) -= m_miniEdge
*2 + m_miniTitle
;
347 (*width
) -= m_miniEdge
*2;
351 void wxFrame::DoSetClientSize( int width
, int height
)
353 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
356 if (m_frameMenuBar
) h
+= wxMENU_HEIGHT
;
357 if (m_frameStatusBar
) h
+= wxSTATUS_HEIGHT
;
361 m_frameToolBar
->GetSize( (int *) NULL
, &y
);
364 wxWindow::DoSetClientSize( width
+ m_miniEdge
*2, h
+ m_miniEdge
*2 + m_miniTitle
);
367 void wxFrame::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
369 // due to a bug in gtk, x,y are always 0
373 if (m_resizing
) return;
376 if (!m_wxwindow
) return;
381 /* check if size is in legal range */
382 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
383 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
384 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
385 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
387 /* this emulates the new wxMSW behaviour of placing all
388 * frame-subwindows (menu, toolbar..) on one native window
389 * this hurts in the eye, but I don't want to call SetSize()
390 * because I don't want to call any non-native functions here. */
395 int yy
= m_miniEdge
+ m_miniTitle
;
396 int ww
= m_width
- 2*m_miniEdge
;
397 int hh
= wxMENU_HEIGHT
;
398 m_frameMenuBar
->m_x
= xx
;
399 m_frameMenuBar
->m_y
= yy
;
400 m_frameMenuBar
->m_width
= ww
;
401 m_frameMenuBar
->m_height
= hh
;
403 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameMenuBar
->m_widget
, xx
, yy
);
404 gtk_widget_set_usize( m_frameMenuBar
->m_widget
, ww
, hh
);
410 int yy
= m_miniEdge
+ m_miniTitle
;
411 if ((m_frameMenuBar
) || (m_mdiMenuBar
)) yy
+= wxMENU_HEIGHT
;
412 int ww
= m_width
- 2*m_miniEdge
;
413 int hh
= m_frameToolBar
->m_height
;
415 m_frameToolBar
->m_x
= xx
;
416 m_frameToolBar
->m_y
= yy
;
417 m_frameToolBar
->m_height
= hh
;
418 m_frameToolBar
->m_width
= ww
;
420 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameToolBar
->m_widget
, xx
, yy
);
421 gtk_widget_set_usize( m_frameToolBar
->m_widget
, ww
, hh
);
424 if (m_frameStatusBar
)
426 int xx
= 0 + m_miniEdge
;
427 int yy
= m_height
- wxSTATUS_HEIGHT
- m_miniEdge
;
428 int ww
= m_width
- 2*m_miniEdge
;
429 int hh
= wxSTATUS_HEIGHT
;
431 m_frameStatusBar
->m_x
= xx
;
432 m_frameStatusBar
->m_y
= yy
;
433 m_frameStatusBar
->m_width
= ww
;
434 m_frameStatusBar
->m_height
= hh
;
436 gtk_myfixed_move( GTK_MYFIXED(m_wxwindow
), m_frameStatusBar
->m_widget
, xx
, yy
);
437 gtk_widget_set_usize( m_frameStatusBar
->m_widget
, ww
, hh
);
440 /* we actually set the size of a frame here and no-where else */
441 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
445 /* send size event to frame */
446 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
447 event
.SetEventObject( this );
448 GetEventHandler()->ProcessEvent( event
);
450 /* send size event to status bar */
451 if (m_frameStatusBar
)
453 wxSizeEvent
event2( wxSize(m_frameStatusBar
->m_width
,m_frameStatusBar
->m_height
), m_frameStatusBar
->GetId() );
454 event2
.SetEventObject( m_frameStatusBar
);
455 m_frameStatusBar
->GetEventHandler()->ProcessEvent( event2
);
461 void wxFrame::OnInternalIdle()
464 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
469 void wxFrame::OnCloseWindow( wxCloseEvent
& event
)
471 // close the window if it wasn't vetoed by the application
472 // if ( !event.GetVeto() ) // No, this isn't the interpretation of GetVeto.
476 void wxFrame::OnSize( wxSizeEvent
&WXUNUSED(event
) )
478 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
486 /* no child: go out ! */
487 if (!GetChildren().First()) return;
489 /* do we have exactly one child? */
490 wxWindow
*child
= (wxWindow
*) NULL
;
491 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
493 wxWindow
*win
= (wxWindow
*)node
->Data();
494 if (!wxIS_KIND_OF(win
,wxFrame
) && !wxIS_KIND_OF(win
,wxDialog
)
495 #if 0 // not in m_children anyway ?
496 && (win
!= m_frameMenuBar
) &&
497 (win
!= m_frameToolBar
) &&
498 (win
!= m_frameStatusBar
)
502 /* it's the second one: do nothing */
508 /* yes: set it's size to fill all the frame */
509 int client_x
, client_y
;
510 GetClientSize( &client_x
, &client_y
);
511 child
->SetSize( 1, 1, client_x
-2, client_y
-2 );
515 static void SetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
517 menu
->SetInvokingWindow( win
);
518 wxNode
*node
= menu
->m_items
.First();
521 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
522 if (menuitem
->IsSubMenu())
523 SetInvokingWindow( menuitem
->GetSubMenu(), win
);
528 void wxFrame::SetMenuBar( wxMenuBar
*menuBar
)
530 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
531 wxASSERT_MSG( (m_wxwindow
!= NULL
), "invalid frame" );
533 m_frameMenuBar
= menuBar
;
537 wxNode
*node
= m_frameMenuBar
->m_menus
.First();
540 wxMenu
*menu
= (wxMenu
*)node
->Data();
541 SetInvokingWindow( menu
, this );
545 if (m_frameMenuBar
->m_parent
!= this)
547 m_frameMenuBar
->m_parent
= this;
548 gtk_myfixed_put( GTK_MYFIXED(m_wxwindow
),
549 m_frameMenuBar
->m_widget
, m_frameMenuBar
->m_x
, m_frameMenuBar
->m_y
);
551 /* an mdi child menu bar might be underneath */
552 if (m_mdiMenuBar
) m_frameMenuBar
->Show( FALSE
);
559 wxMenuBar
*wxFrame::GetMenuBar() const
561 return m_frameMenuBar
;
564 void wxFrame::OnMenuHighlight(wxMenuEvent
& event
)
568 if (event
.GetMenuId() == -1)
574 wxMenuBar
*menuBar
= GetMenuBar();
577 int menuId
= event
.GetMenuId();
579 helpString
= menuBar
->GetHelpString(menuId
);
580 if (helpString
!= "")
581 SetStatusText(helpString
);
587 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
589 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
591 wxCHECK_MSG( m_frameToolBar
== NULL
, FALSE
, "recreating toolbar in wxFrame" );
593 m_frameToolBar
= OnCreateToolBar( style
, id
, name
);
595 GetChildren().DeleteObject( m_frameToolBar
);
599 return m_frameToolBar
;
602 wxToolBar
* wxFrame::OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
)
604 return new wxToolBar( this, id
, wxDefaultPosition
, wxDefaultSize
, style
, name
);
607 wxToolBar
*wxFrame::GetToolBar() const
609 return m_frameToolBar
;
612 wxStatusBar
* wxFrame::CreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
614 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
616 wxCHECK_MSG( m_frameStatusBar
== NULL
, FALSE
, "recreating status bar in wxFrame" );
618 m_frameStatusBar
= OnCreateStatusBar( number
, style
, id
, name
);
622 return m_frameStatusBar
;
625 wxStatusBar
*wxFrame::OnCreateStatusBar( int number
, long style
, wxWindowID id
, const wxString
& name
)
627 wxStatusBar
*statusBar
= (wxStatusBar
*) NULL
;
629 statusBar
= new wxStatusBar(this, id
, wxPoint(0, 0), wxSize(100, 20), style
, name
);
631 // Set the height according to the font and the border size
632 wxClientDC
dc(statusBar
);
633 dc
.SetFont( statusBar
->GetFont() );
636 dc
.GetTextExtent( "X", &x
, &y
);
638 int height
= (int)( (y
* 1.1) + 2* statusBar
->GetBorderY());
640 statusBar
->SetSize( -1, -1, 100, height
);
642 statusBar
->SetFieldsCount( number
);
646 void wxFrame::SetStatusText(const wxString
& text
, int number
)
648 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
650 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set text for" );
652 m_frameStatusBar
->SetStatusText(text
, number
);
655 void wxFrame::SetStatusWidths(int n
, const int widths_field
[] )
657 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
659 wxCHECK_RET( m_frameStatusBar
!= NULL
, "no statusbar to set widths for" );
661 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
664 wxStatusBar
*wxFrame::GetStatusBar() const
666 return m_frameStatusBar
;
669 void wxFrame::SetTitle( const wxString
&title
)
671 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
674 if (m_title
.IsNull()) m_title
= "";
675 gtk_window_set_title( GTK_WINDOW(m_widget
), title
);
678 void wxFrame::SetIcon( const wxIcon
&icon
)
680 wxASSERT_MSG( (m_widget
!= NULL
), "invalid frame" );
683 if (!icon
.Ok()) return;
685 wxMask
*mask
= icon
.GetMask();
686 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
687 if (mask
) bm
= mask
->GetBitmap();
689 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);