1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/win_gtk.cpp
3 // Purpose: native GTK+ widget for wxWindow
4 // Author: Paul Cornett
6 // Copyright: (c) 2007 Paul Cornett
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
11 #include "wx/gtk/private.h"
12 #include "wx/gtk/private/win_gtk.h"
15 wxPizza is a custom GTK+ widget derived from GtkFixed. A custom widget
16 is needed to adapt GTK+ to wxWidgets needs in 3 areas: scrolling, window
19 For scrolling, the "set_scroll_adjustments" signal is implemented
20 to make wxPizza appear scrollable to GTK+, allowing it to be put in a
21 GtkScrolledWindow. Child widget positions are adjusted for the scrolling
22 position in size_allocate.
24 For borders, space is reserved in realize and size_allocate. The border is
25 drawn on wxPizza's parent GdkWindow.
27 For RTL, child widget positions are mirrored in size_allocate.
30 static GtkWidgetClass
* parent_class
;
37 void (*set_scroll_adjustments
)(GtkWidget
*, GtkAdjustment
*, GtkAdjustment
*);
40 static void size_allocate(GtkWidget
* widget
, GtkAllocation
* alloc
)
42 wxPizza
* pizza
= WX_PIZZA(widget
);
43 int border_x
, border_y
;
44 pizza
->get_border_widths(border_x
, border_y
);
45 int w
= alloc
->width
- 2 * border_x
;
48 if (gtk_widget_get_realized(widget
))
50 int h
= alloc
->height
- 2 * border_y
;
52 const int x
= alloc
->x
+ border_x
;
53 const int y
= alloc
->y
+ border_y
;
55 GdkWindow
* window
= gtk_widget_get_window(widget
);
57 gdk_window_get_position(window
, &old_x
, &old_y
);
59 if (x
!= old_x
|| y
!= old_y
||
60 w
!= gdk_window_get_width(window
) || h
!= gdk_window_get_height(window
))
62 gdk_window_move_resize(window
, x
, y
, w
, h
);
64 if (border_x
+ border_y
)
66 // old and new border areas need to be invalidated,
67 // otherwise they will not be erased/redrawn properly
68 GdkWindow
* parent
= gtk_widget_get_parent_window(widget
);
69 gdk_window_invalidate_rect(parent
, &widget
->allocation
, false);
70 gdk_window_invalidate_rect(parent
, alloc
, false);
75 widget
->allocation
= *alloc
;
77 // adjust child positions
78 for (const GList
* list
= pizza
->m_fixed
.children
; list
; list
= list
->next
)
80 const GtkFixedChild
* child
= static_cast<GtkFixedChild
*>(list
->data
);
81 if (gtk_widget_get_visible(child
->widget
))
83 GtkAllocation child_alloc
;
84 // note that child positions do not take border into
85 // account, they need to be relative to widget->window,
86 // which has already been adjusted
87 child_alloc
.x
= child
->x
- pizza
->m_scroll_x
;
88 child_alloc
.y
= child
->y
- pizza
->m_scroll_y
;
90 gtk_widget_get_child_requisition(child
->widget
, &req
);
91 child_alloc
.width
= req
.width
;
92 child_alloc
.height
= req
.height
;
93 if (gtk_widget_get_direction(widget
) == GTK_TEXT_DIR_RTL
)
94 child_alloc
.x
= w
- child_alloc
.x
- child_alloc
.width
;
95 gtk_widget_size_allocate(child
->widget
, &child_alloc
);
100 static void realize(GtkWidget
* widget
)
102 parent_class
->realize(widget
);
104 wxPizza
* pizza
= WX_PIZZA(widget
);
105 if (pizza
->m_border_style
)
107 int border_x
, border_y
;
108 pizza
->get_border_widths(border_x
, border_y
);
109 int x
= widget
->allocation
.x
+ border_x
;
110 int y
= widget
->allocation
.y
+ border_y
;
111 int w
= widget
->allocation
.width
- 2 * border_x
;
112 int h
= widget
->allocation
.height
- 2 * border_y
;
115 gdk_window_move_resize(widget
->window
, x
, y
, w
, h
);
119 static void show(GtkWidget
* widget
)
121 if (widget
->parent
&& WX_PIZZA(widget
)->m_border_style
)
123 // invalidate whole allocation so borders will be drawn properly
124 const GtkAllocation
& a
= widget
->allocation
;
125 gtk_widget_queue_draw_area(widget
->parent
, a
.x
, a
.y
, a
.width
, a
.height
);
128 parent_class
->show(widget
);
131 static void hide(GtkWidget
* widget
)
133 if (widget
->parent
&& WX_PIZZA(widget
)->m_border_style
)
135 // invalidate whole allocation so borders will be erased properly
136 const GtkAllocation
& a
= widget
->allocation
;
137 gtk_widget_queue_draw_area(widget
->parent
, a
.x
, a
.y
, a
.width
, a
.height
);
140 parent_class
->hide(widget
);
143 // not used, but needs to exist so gtk_widget_set_scroll_adjustments will work
144 static void set_scroll_adjustments(GtkWidget
*, GtkAdjustment
*, GtkAdjustment
*)
148 // Marshaller needed for set_scroll_adjustments signal,
149 // generated with GLib-2.4.6 glib-genmarshal
150 #define g_marshal_value_peek_object(v) g_value_get_object (v)
152 g_cclosure_user_marshal_VOID__OBJECT_OBJECT (GClosure
*closure
,
153 GValue
* /*return_value*/,
154 guint n_param_values
,
155 const GValue
*param_values
,
156 gpointer
/*invocation_hint*/,
157 gpointer marshal_data
)
159 typedef void (*GMarshalFunc_VOID__OBJECT_OBJECT
) (gpointer data1
,
163 register GMarshalFunc_VOID__OBJECT_OBJECT callback
;
164 register GCClosure
*cc
= (GCClosure
*) closure
;
165 register gpointer data1
, data2
;
167 g_return_if_fail (n_param_values
== 3);
169 if (G_CCLOSURE_SWAP_DATA (closure
))
171 data1
= closure
->data
;
172 data2
= g_value_peek_pointer (param_values
+ 0);
176 data1
= g_value_peek_pointer (param_values
+ 0);
177 data2
= closure
->data
;
179 callback
= (GMarshalFunc_VOID__OBJECT_OBJECT
) (marshal_data
? marshal_data
: cc
->callback
);
182 g_marshal_value_peek_object (param_values
+ 1),
183 g_marshal_value_peek_object (param_values
+ 2),
187 static void class_init(void* g_class
, void*)
189 GtkWidgetClass
* widget_class
= (GtkWidgetClass
*)g_class
;
190 widget_class
->size_allocate
= size_allocate
;
191 widget_class
->realize
= realize
;
192 widget_class
->show
= show
;
193 widget_class
->hide
= hide
;
194 wxPizzaClass
* klass
= (wxPizzaClass
*)g_class
;
196 // needed to make widget appear scrollable to GTK+
197 klass
->set_scroll_adjustments
= set_scroll_adjustments
;
198 widget_class
->set_scroll_adjustments_signal
=
200 "set_scroll_adjustments",
201 G_TYPE_FROM_CLASS(g_class
),
203 G_STRUCT_OFFSET(wxPizzaClass
, set_scroll_adjustments
),
205 g_cclosure_user_marshal_VOID__OBJECT_OBJECT
,
206 G_TYPE_NONE
, 2, GTK_TYPE_ADJUSTMENT
, GTK_TYPE_ADJUSTMENT
);
208 parent_class
= GTK_WIDGET_CLASS(g_type_class_peek_parent(g_class
));
213 GType
wxPizza::type()
218 const GTypeInfo info
= {
219 sizeof(wxPizzaClass
),
226 type
= g_type_register_static(
227 GTK_TYPE_FIXED
, "wxPizza", &info
, GTypeFlags(0));
232 GtkWidget
* wxPizza::New(long windowStyle
)
234 GtkWidget
* widget
= GTK_WIDGET(g_object_new(type(), NULL
));
235 wxPizza
* pizza
= WX_PIZZA(widget
);
236 pizza
->m_scroll_x
= 0;
237 pizza
->m_scroll_y
= 0;
238 pizza
->m_is_scrollable
= (windowStyle
& (wxHSCROLL
| wxVSCROLL
)) != 0;
239 // mask off border styles not useable with wxPizza
240 pizza
->m_border_style
= int(windowStyle
& BORDER_STYLES
);
241 #if GTK_CHECK_VERSION(3,0,0) || defined(GTK_DISABLE_DEPRECATED)
242 gtk_widget_set_has_window(widget
, true);
244 gtk_fixed_set_has_window(GTK_FIXED(widget
), true);
246 gtk_widget_add_events(widget
,
249 GDK_POINTER_MOTION_MASK
|
250 GDK_POINTER_MOTION_HINT_MASK
|
251 GDK_BUTTON_MOTION_MASK
|
252 GDK_BUTTON1_MOTION_MASK
|
253 GDK_BUTTON2_MOTION_MASK
|
254 GDK_BUTTON3_MOTION_MASK
|
255 GDK_BUTTON_PRESS_MASK
|
256 GDK_BUTTON_RELEASE_MASK
|
258 GDK_KEY_RELEASE_MASK
|
259 GDK_ENTER_NOTIFY_MASK
|
260 GDK_LEAVE_NOTIFY_MASK
|
261 GDK_FOCUS_CHANGE_MASK
);
265 // gtk_fixed_move does not check for a change before issuing a queue_resize,
266 // we need to avoid that to prevent endless sizing loops, so check first
267 void wxPizza::move(GtkWidget
* widget
, int x
, int y
)
269 GtkFixed
* fixed
= &m_fixed
;
270 for (const GList
* list
= fixed
->children
; list
; list
= list
->next
)
272 const GtkFixedChild
* child
= static_cast<GtkFixedChild
*>(list
->data
);
273 if (child
->widget
== widget
)
275 if (child
->x
!= x
|| child
->y
!= y
)
276 gtk_fixed_move(fixed
, widget
, x
, y
);
282 void wxPizza::put(GtkWidget
* widget
, int x
, int y
)
284 gtk_fixed_put(&m_fixed
, widget
, x
, y
);
292 // Adjust allocations for all widgets using the GdkWindow which was just scrolled
294 static void scroll_adjust(GtkWidget
* widget
, void* data
)
296 const AdjustData
* p
= static_cast<AdjustData
*>(data
);
297 widget
->allocation
.x
+= p
->dx
;
298 widget
->allocation
.y
+= p
->dy
;
300 if (widget
->window
== p
->window
)
302 // GtkFrame requires a queue_resize, otherwise parts of
303 // the frame newly exposed by the scroll are not drawn.
304 // To be safe, do it for all widgets.
305 gtk_widget_queue_resize_no_redraw(widget
);
306 if (GTK_IS_CONTAINER(widget
))
307 gtk_container_forall(GTK_CONTAINER(widget
), scroll_adjust
, data
);
312 void wxPizza::scroll(int dx
, int dy
)
314 GtkWidget
* widget
= GTK_WIDGET(this);
315 if (gtk_widget_get_direction(widget
) == GTK_TEXT_DIR_RTL
)
321 gdk_window_scroll(widget
->window
, dx
, dy
);
322 // Adjust child allocations. Doing a queue_resize on the children is not
323 // enough, sometimes they redraw in the wrong place during fast scrolling.
324 AdjustData data
= { widget
->window
, dx
, dy
};
325 gtk_container_forall(GTK_CONTAINER(widget
), scroll_adjust
, &data
);
329 void wxPizza::get_border_widths(int& x
, int& y
)
332 if (m_border_style
== 0)
335 #ifndef __WXUNIVERSAL__
336 if (m_border_style
& wxBORDER_SIMPLE
)
338 else if (m_is_scrollable
/* || (m_border_style & wxBORDER_THEME) */)
340 GtkWidget
*style_widget
= wxGTKPrivate::GetTreeWidget();
342 if (style_widget
->style
)
344 x
= style_widget
->style
->xthickness
;
345 y
= style_widget
->style
->ythickness
;
350 GtkWidget
*style_widget
= wxGTKPrivate::GetEntryWidget();
352 if (style_widget
->style
)
354 x
= style_widget
->style
->xthickness
;
355 y
= style_widget
->style
->ythickness
;