1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "popupwin.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
19 #include "wx/popupwin.h"
22 #include "wx/cursor.h"
26 #include <gdk/gdkkeysyms.h>
28 #include "wx/gtk/win_gtk.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern void wxapp_install_idle_handler();
37 //-----------------------------------------------------------------------------
38 // "focus" from m_window
39 //-----------------------------------------------------------------------------
41 static gint
gtk_dialog_focus_callback( GtkWidget
*widget
, GtkDirectionType
WXUNUSED(d
), wxWindow
*WXUNUSED(win
) )
44 wxapp_install_idle_handler();
46 // This disables GTK's tab traversal
47 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "focus" );
51 //-----------------------------------------------------------------------------
53 //-----------------------------------------------------------------------------
55 bool gtk_dialog_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxPopupWindow
*win
)
58 wxapp_install_idle_handler();
66 //-----------------------------------------------------------------------------
68 //-----------------------------------------------------------------------------
70 static void gtk_dialog_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxPopupWindow
*win
)
73 wxapp_install_idle_handler();
75 if (!win
->m_hasVMT
) return;
77 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
79 win
->m_width
= alloc
->width
;
80 win
->m_height
= alloc
->height
;
85 //-----------------------------------------------------------------------------
86 // "realize" from m_widget
87 //-----------------------------------------------------------------------------
89 /* we cannot MWM hints and icons before the widget has been realized,
90 so we do this directly after realization */
93 gtk_dialog_realized_callback( GtkWidget
* WXUNUSED(widget
), wxPopupWindow
*win
)
96 wxapp_install_idle_handler();
98 /* all this is for Motif Window Manager "hints" and is supposed to be
99 recognized by other WM as well. not tested. */
100 long decor
= (long) GDK_DECOR_BORDER
;
101 long func
= (long) GDK_FUNC_MOVE
;
103 gdk_window_set_decorations( win
->m_widget
->window
, (GdkWMDecoration
)decor
);
104 gdk_window_set_functions( win
->m_widget
->window
, (GdkWMFunction
)func
);
106 /* GTK's shrinking/growing policy */
107 if ((win
->GetWindowStyle() & wxRESIZE_BORDER
) == 0)
108 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 0, 0, 1);
110 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 1, 1, 1);
115 //-----------------------------------------------------------------------------
116 // InsertChild for wxPopupWindow
117 //-----------------------------------------------------------------------------
119 /* Callback for wxFrame. This very strange beast has to be used because
120 * C++ has no virtual methods in a constructor. We have to emulate a
121 * virtual function here as wxWindows requires different ways to insert
122 * a child in container classes. */
124 static void wxInsertChildInDialog( wxPopupWindow
* parent
, wxWindow
* child
)
126 gtk_pizza_put( GTK_PIZZA(parent
->m_wxwindow
),
127 GTK_WIDGET(child
->m_widget
),
133 if (parent
->HasFlag(wxTAB_TRAVERSAL
))
135 /* we now allow a window to get the focus as long as it
136 doesn't have any children. */
137 GTK_WIDGET_UNSET_FLAGS( parent
->m_wxwindow
, GTK_CAN_FOCUS
);
141 //-----------------------------------------------------------------------------
143 //-----------------------------------------------------------------------------
145 BEGIN_EVENT_TABLE(wxPopupWindow
,wxPopupWindowBase
)
146 #ifdef __WXUNIVERSAL__
147 EVT_SIZE(wxPopupWindow::OnSize
)
151 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
153 wxPopupWindow::~wxPopupWindow()
157 bool wxPopupWindow::Create( wxWindow
*parent
, int style
)
159 m_needParent
= FALSE
;
161 if (!PreCreation( parent
, wxDefaultPosition
, wxDefaultSize
) ||
162 !CreateBase( parent
, -1, wxDefaultPosition
, wxDefaultSize
, style
, wxDefaultValidator
, wxT("popup") ))
164 wxFAIL_MSG( wxT("wxPopupWindow creation failed") );
168 // All dialogs should really have this style
169 m_windowStyle
|= wxTAB_TRAVERSAL
;
171 m_insertCallback
= (wxInsertChildFunction
) wxInsertChildInDialog
;
173 m_widget
= gtk_window_new( GTK_WINDOW_POPUP
);
175 if ((m_parent
) && (GTK_IS_WINDOW(m_parent
->m_widget
)))
176 gtk_window_set_transient_for( GTK_WINDOW(m_widget
), GTK_WINDOW(m_parent
->m_widget
) );
178 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
180 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
181 GTK_SIGNAL_FUNC(gtk_dialog_delete_callback
), (gpointer
)this );
183 m_wxwindow
= gtk_pizza_new();
184 gtk_widget_show( m_wxwindow
);
185 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
187 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
189 if (m_parent
) m_parent
->AddChild( this );
193 /* we cannot set MWM hints before the widget has
194 been realized, so we do this directly after realization */
195 gtk_signal_connect( GTK_OBJECT(m_widget
), "realize",
196 GTK_SIGNAL_FUNC(gtk_dialog_realized_callback
), (gpointer
) this );
198 /* the user resized the frame by dragging etc. */
199 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
200 GTK_SIGNAL_FUNC(gtk_dialog_size_callback
), (gpointer
)this );
202 /* disable native tab traversal */
203 gtk_signal_connect( GTK_OBJECT(m_widget
), "focus",
204 GTK_SIGNAL_FUNC(gtk_dialog_focus_callback
), (gpointer
)this );
209 void wxPopupWindow::DoMoveWindow(int WXUNUSED(x
), int WXUNUSED(y
), int WXUNUSED(width
), int WXUNUSED(height
) )
211 wxFAIL_MSG( wxT("DoMoveWindow called for wxPopupWindow") );
214 void wxPopupWindow::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
216 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid dialog") );
217 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid dialog") );
219 if (m_resizing
) return; /* I don't like recursions */
225 int old_width
= m_width
;
226 int old_height
= m_height
;
228 if ((sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) == 0)
230 if (x
!= -1) m_x
= x
;
231 if (y
!= -1) m_y
= y
;
232 if (width
!= -1) m_width
= width
;
233 if (height
!= -1) m_height
= height
;
244 if ((sizeFlags & wxSIZE_AUTO_WIDTH) == wxSIZE_AUTO_WIDTH)
246 if (width == -1) m_width = 80;
249 if ((sizeFlags & wxSIZE_AUTO_HEIGHT) == wxSIZE_AUTO_HEIGHT)
251 if (height == -1) m_height = 26;
255 int minWidth
= GetMinWidth(),
256 minHeight
= GetMinHeight(),
257 maxWidth
= GetMaxWidth(),
258 maxHeight
= GetMaxHeight();
260 if ((minWidth
!= -1) && (m_width
< minWidth
)) m_width
= minWidth
;
261 if ((minHeight
!= -1) && (m_height
< minHeight
)) m_height
= minHeight
;
262 if ((maxWidth
!= -1) && (m_width
> maxWidth
)) m_width
= maxWidth
;
263 if ((maxHeight
!= -1) && (m_height
> maxHeight
)) m_height
= maxHeight
;
265 if ((m_x
!= -1) || (m_y
!= -1))
267 if ((m_x
!= old_x
) || (m_y
!= old_y
))
269 /* we set the position here and when showing the dialog
270 for the first time in idle time */
271 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
275 if ((m_width
!= old_width
) || (m_height
!= old_height
))
277 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
279 /* actual resizing is deferred to GtkOnSize in idle time and
280 when showing the dialog */
288 void wxPopupWindow::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
290 // due to a bug in gtk, x,y are always 0
294 if ((m_height
== height
) && (m_width
== width
) && (m_sizeSet
)) return;
295 if (!m_wxwindow
) return;
300 int minWidth
= GetMinWidth(),
301 minHeight
= GetMinHeight(),
302 maxWidth
= GetMaxWidth(),
303 maxHeight
= GetMaxHeight();
305 if ((minWidth
!= -1) && (m_width
< minWidth
)) m_width
= minWidth
;
306 if ((minHeight
!= -1) && (m_height
< minHeight
)) m_height
= minHeight
;
307 if ((maxWidth
!= -1) && (m_width
> maxWidth
)) m_width
= maxWidth
;
308 if ((maxHeight
!= -1) && (m_height
> maxHeight
)) m_height
= maxHeight
;
311 gint flag
= 0; // GDK_HINT_POS;
312 if ((minWidth
!= -1) || (minHeight
!= -1)) flag
|= GDK_HINT_MIN_SIZE
;
313 if ((maxWidth
!= -1) || (maxHeight
!= -1)) flag
|= GDK_HINT_MAX_SIZE
;
315 geom
.min_width
= minWidth
;
316 geom
.min_height
= minHeight
;
317 geom
.max_width
= maxWidth
;
318 geom
.max_height
= maxHeight
;
319 gtk_window_set_geometry_hints( GTK_WINDOW(m_widget
),
322 (GdkWindowHints
) flag
);
326 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
327 event
.SetEventObject( this );
328 GetEventHandler()->ProcessEvent( event
);
331 void wxPopupWindow::OnInternalIdle()
333 if (!m_sizeSet
&& GTK_WIDGET_REALIZED(m_wxwindow
))
334 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
336 wxWindow::OnInternalIdle();
339 bool wxPopupWindow::Show( bool show
)
341 if (show
&& !m_sizeSet
)
343 /* by calling GtkOnSize here, we don't have to call
344 either after showing the frame, which would entail
345 much ugly flicker nor from within the size_allocate
346 handler, because GTK 1.1.X forbids that. */
348 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
351 bool ret
= wxWindow::Show( show
);
356 #endif // wxUSE_POPUPWIN