mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-28 22:41:43 +00:00
widgetbowl: Add some more widget types
This commit is contained in:
parent
78832732c4
commit
1ed364a000
@ -36,6 +36,24 @@ create_level_bar (void)
|
|||||||
return w;
|
return w;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GtkWidget *
|
||||||
|
create_spinner (void)
|
||||||
|
{
|
||||||
|
GtkWidget *w = gtk_spinner_new ();
|
||||||
|
|
||||||
|
gtk_spinner_start (GTK_SPINNER (w));
|
||||||
|
|
||||||
|
return w;
|
||||||
|
}
|
||||||
|
|
||||||
|
static GtkWidget *
|
||||||
|
create_spinbutton (void)
|
||||||
|
{
|
||||||
|
GtkWidget *w = gtk_spin_button_new_with_range (0, 10, 1);
|
||||||
|
|
||||||
|
return w;
|
||||||
|
}
|
||||||
|
|
||||||
static GtkWidget *
|
static GtkWidget *
|
||||||
create_label (void)
|
create_label (void)
|
||||||
{
|
{
|
||||||
@ -55,6 +73,8 @@ static const struct {
|
|||||||
{ "Fontbutton", create_font_button },
|
{ "Fontbutton", create_font_button },
|
||||||
{ "Levelbar" , create_level_bar },
|
{ "Levelbar" , create_level_bar },
|
||||||
{ "Label" , create_label },
|
{ "Label" , create_label },
|
||||||
|
{ "Spinner" , create_spinner },
|
||||||
|
{ "Spinbutton", create_spinbutton },
|
||||||
};
|
};
|
||||||
|
|
||||||
static int selected_widget_type = -1;
|
static int selected_widget_type = -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user