+ m_scale = gtk_hscale_new( NULL );
+ g_object_ref(m_scale);
+
+ if (style & wxSL_MIN_MAX_LABELS)
+ {
+ gtk_widget_show( m_scale );
+
+ if (style & wxSL_VERTICAL)
+ m_widget = gtk_hbox_new(false, 0);
+ else
+ m_widget = gtk_vbox_new(false, 0);
+ g_object_ref(m_widget);
+ gtk_widget_show( m_widget );
+ gtk_container_add( GTK_CONTAINER(m_widget), m_scale );
+
+ GtkWidget *box;
+ if (style & wxSL_VERTICAL)
+ box = gtk_vbox_new(false,0);
+ else
+ box = gtk_hbox_new(false,0);
+ g_object_ref(box);
+ gtk_widget_show(box);
+ gtk_container_add( GTK_CONTAINER(m_widget), box );
+
+ m_minLabel = gtk_label_new(NULL);
+ g_object_ref(m_minLabel);
+ gtk_widget_show( m_minLabel );
+ gtk_container_add( GTK_CONTAINER(box), m_minLabel );
+ gtk_box_set_child_packing( GTK_BOX(box), m_minLabel, FALSE, FALSE, 0, GTK_PACK_START );
+
+ // expanding empty space between the min/max labels
+ GtkWidget *space = gtk_label_new(NULL);
+ g_object_ref(space);
+ gtk_widget_show( space );
+ gtk_container_add( GTK_CONTAINER(box), space );
+ gtk_box_set_child_packing( GTK_BOX(box), space, TRUE, FALSE, 0, GTK_PACK_START );
+
+ m_maxLabel = gtk_label_new(NULL);
+ g_object_ref(m_maxLabel);
+ gtk_widget_show( m_maxLabel );
+ gtk_container_add( GTK_CONTAINER(box), m_maxLabel );
+ gtk_box_set_child_packing( GTK_BOX(box), m_maxLabel, FALSE, FALSE, 0, GTK_PACK_END );
+ }
+ else
+ {
+ m_widget = m_scale;
+ m_maxLabel = NULL;
+ m_minLabel = NULL;
+ }
+
+ const bool showValueLabel = (style & wxSL_VALUE_LABEL) != 0;
+ gtk_scale_set_draw_value(GTK_SCALE (m_scale), showValueLabel );
+ if ( showValueLabel )
+ {
+ // position the label appropriately: notice that wxSL_DIRECTION flags
+ // specify the position of the ticks, not label, under MSW and so the
+ // label is on the opposite side
+ GtkPositionType posLabel;
+ if ( style & wxSL_VERTICAL )
+ {
+ if ( style & wxSL_LEFT )
+ posLabel = GTK_POS_RIGHT;
+ else // if ( style & wxSL_RIGHT ) -- this is also the default
+ posLabel = GTK_POS_LEFT;
+ }
+ else // horizontal slider
+ {
+ if ( style & wxSL_TOP )
+ posLabel = GTK_POS_BOTTOM;
+ else // if ( style & wxSL_BOTTOM) -- this is again the default
+ posLabel = GTK_POS_TOP;
+ }
+
+ gtk_scale_set_value_pos( GTK_SCALE(m_scale), posLabel );
+ }