]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/popupwin.cpp
Don't scale 16x15 to 16x16 - fixes corruption of bookmark icons in help window
[wxWidgets.git] / src / gtk / popupwin.cpp
CommitLineData
9f41d601 1/////////////////////////////////////////////////////////////////////////////
670f9935 2// Name: src/gtk/popupwin.cpp
9f41d601
RR
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
9f41d601
RR
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
f3ecfad1
VS
12
13#if wxUSE_POPUPWIN
14
9f41d601 15#include "wx/popupwin.h"
670f9935
WS
16
17#ifndef WX_PRECOMP
670f9935
WS
18#endif // WX_PRECOMP
19
9f41d601 20#include <gtk/gtk.h>
9f41d601 21
bbd92d1d 22#include "wx/gtk/private/win_gtk.h"
9f41d601 23
f7204798
RR
24//-----------------------------------------------------------------------------
25// "button_press"
26//-----------------------------------------------------------------------------
27
865bb325 28extern "C" {
f7204798
RR
29static gint gtk_popup_button_press (GtkWidget *widget, GdkEvent *gdk_event, wxPopupWindow* win )
30{
31 GtkWidget *child = gtk_get_event_widget (gdk_event);
32
33c0d0ed
RR
33 /* Ignore events sent out before we connected to the signal */
34 if (win->m_time >= ((GdkEventButton*)gdk_event)->time)
35 return FALSE;
36
37 /* We don't ask for button press events on the grab widget, so
38 * if an event is reported directly to the grab widget, it must
39 * be on a window outside the application (and thus we remove
40 * the popup window). Otherwise, we check if the widget is a child
41 * of the grab widget, and only remove the popup window if it
42 * is not. */
f7204798
RR
43 if (child != widget)
44 {
45 while (child)
88d19775
MR
46 {
47 if (child == widget)
48 return FALSE;
385e8575 49 child = gtk_widget_get_parent(child);
f7204798
RR
50 }
51 }
52
53 wxFocusEvent event( wxEVT_KILL_FOCUS, win->GetId() );
54 event.SetEventObject( win );
55
937013e0 56 (void)win->HandleWindowEvent( event );
f7204798
RR
57
58 return TRUE;
59}
865bb325 60}
f7204798 61
9f41d601
RR
62//-----------------------------------------------------------------------------
63// "delete_event"
64//-----------------------------------------------------------------------------
65
865bb325 66extern "C" {
9f41d601
RR
67bool gtk_dialog_delete_callback( GtkWidget *WXUNUSED(widget), GdkEvent *WXUNUSED(event), wxPopupWindow *win )
68{
9f41d601
RR
69 if (win->IsEnabled())
70 win->Close();
71
72 return TRUE;
73}
865bb325 74}
9f41d601 75
9f41d601
RR
76//-----------------------------------------------------------------------------
77// wxPopupWindow
78//-----------------------------------------------------------------------------
79
8f0db49c 80#ifdef __WXUNIVERSAL__
cca410b3 81BEGIN_EVENT_TABLE(wxPopupWindow,wxPopupWindowBase)
6522713c 82 EVT_SIZE(wxPopupWindow::OnSize)
9f41d601 83END_EVENT_TABLE()
cca410b3 84#endif
9f41d601 85
ad9fb033
RR
86wxPopupWindow::~wxPopupWindow()
87{
ad9fb033
RR
88}
89
9f41d601
RR
90bool wxPopupWindow::Create( wxWindow *parent, int style )
91{
9f41d601 92 if (!PreCreation( parent, wxDefaultPosition, wxDefaultSize ) ||
2b5f62a0 93 !CreateBase( parent, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("popup") ))
9f41d601
RR
94 {
95 wxFAIL_MSG( wxT("wxPopupWindow creation failed") );
670f9935 96 return false;
9f41d601
RR
97 }
98
da19de36
RR
99 // Unlike windows, top level windows are created hidden by default.
100 m_isShown = false;
88d19775 101
9f41d601
RR
102 // All dialogs should really have this style
103 m_windowStyle |= wxTAB_TRAVERSAL;
104
9f41d601 105 m_widget = gtk_window_new( GTK_WINDOW_POPUP );
3591d10f 106 g_object_ref( m_widget );
9f41d601 107
3591d10f 108 gtk_widget_set_name( m_widget, "wxPopupWindow" );
62d934aa
RR
109 // wxPopupWindow is used for different windows as well
110 // gtk_window_set_type_hint( GTK_WINDOW(m_widget), GDK_WINDOW_TYPE_HINT_COMBO );
9f41d601 111
3591d10f
RR
112 GtkWidget *toplevel = gtk_widget_get_toplevel( parent->m_widget );
113 if (GTK_IS_WINDOW (toplevel))
114 {
451673f7
RR
115#if GTK_CHECK_VERSION(2,10,0)
116 if (!gtk_check_version(2,10,0))
117 gtk_window_group_add_window (gtk_window_get_group (GTK_WINDOW (toplevel)), GTK_WINDOW (m_widget));
118#endif
03647350 119
3591d10f
RR
120 gtk_window_set_transient_for (GTK_WINDOW (m_widget), GTK_WINDOW (toplevel));
121 }
122 gtk_window_set_resizable (GTK_WINDOW (m_widget), FALSE);
123 gtk_window_set_screen (GTK_WINDOW (m_widget), gtk_widget_get_screen (GTK_WIDGET (parent->m_widget)));
9f41d601 124
9fa72bd2
MR
125 g_signal_connect (m_widget, "delete_event",
126 G_CALLBACK (gtk_dialog_delete_callback), this);
9f41d601 127
0f52f610 128 m_wxwindow = wxPizza::New(m_windowStyle);
9f41d601 129 gtk_widget_show( m_wxwindow );
9f41d601
RR
130
131 gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow );
132
133 if (m_parent) m_parent->AddChild( this );
134
135 PostCreation();
136
33c0d0ed
RR
137 m_time = gtk_get_current_event_time();
138
9fa72bd2
MR
139 g_signal_connect (m_widget, "button_press_event",
140 G_CALLBACK (gtk_popup_button_press), this);
88d19775 141
670f9935 142 return true;
9f41d601
RR
143}
144
145void wxPopupWindow::DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(width), int WXUNUSED(height) )
146{
147 wxFAIL_MSG( wxT("DoMoveWindow called for wxPopupWindow") );
148}
149
150void wxPopupWindow::DoSetSize( int x, int y, int width, int height, int sizeFlags )
151{
152 wxASSERT_MSG( (m_widget != NULL), wxT("invalid dialog") );
153 wxASSERT_MSG( (m_wxwindow != NULL), wxT("invalid dialog") );
154
9f41d601
RR
155 int old_x = m_x;
156 int old_y = m_y;
157
158 int old_width = m_width;
159 int old_height = m_height;
160
cca410b3 161 if (x != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
9f41d601 162 m_x = x;
cca410b3 163 if (y != -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
9f41d601 164 m_y = y;
cca410b3 165 if (width != -1)
9f41d601 166 m_width = width;
cca410b3 167 if (height != -1)
9f41d601 168 m_height = height;
9f41d601 169
82008f15 170 ConstrainSize();
9f41d601
RR
171
172 if ((m_x != -1) || (m_y != -1))
173 {
174 if ((m_x != old_x) || (m_y != old_y))
175 {
cd6645a2 176 gtk_window_move( GTK_WINDOW(m_widget), m_x, m_y );
9f41d601
RR
177 }
178 }
179
180 if ((m_width != old_width) || (m_height != old_height))
181 {
cca410b3 182 // gtk_window_resize does not work for GTK_WINDOW_POPUP
370dc79c 183 gtk_widget_set_size_request( m_widget, m_width, m_height );
cca410b3
PC
184 wxSizeEvent event(GetSize(), GetId());
185 event.SetEventObject(this);
937013e0 186 HandleWindowEvent(event);
9f41d601 187 }
9f41d601
RR
188}
189
3591d10f
RR
190void wxPopupWindow::SetFocus()
191{
192 // set the focus to the first child who wants it
193 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
194 while ( node )
195 {
196 wxWindow *child = node->GetData();
197 node = node->GetNext();
198
199 if ( child->CanAcceptFocus() && !child->IsTopLevel() )
200 {
201 child->SetFocus();
202 return;
203 }
204 }
03647350 205
3591d10f
RR
206 wxPopupWindowBase::SetFocus();
207}
208
9f41d601
RR
209bool wxPopupWindow::Show( bool show )
210{
cca410b3 211 if (show && !IsShown())
9f41d601 212 {
cca410b3
PC
213 wxSizeEvent event(GetSize(), GetId());
214 event.SetEventObject(this);
937013e0 215 HandleWindowEvent(event);
9f41d601 216 }
88d19775 217
9f41d601 218 bool ret = wxWindow::Show( show );
88d19775 219
9f41d601
RR
220 return ret;
221}
222
f3ecfad1 223#endif // wxUSE_POPUPWIN