+ combo->GetEventHandler()->ProcessEvent(event);
+};
+
+//-----------------------------------------------------------------------------
+// size
+
+/*
+static gint gtk_combo_size_callback( GtkCombo *widget, GtkAllocation* alloc, wxComboBox *win )
+{
+ if (!win->HasVMT()) return FALSE;
+ if (g_blockEventsOnDrag) return FALSE;
+ if (!widget->button) return FALSE;
+
+ widget->button->allocation.x =
+ alloc->width - widget->button->allocation.width;
+
+ return FALSE;