mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Make all style properties readonly.
2004-04-14 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcombobox.c: * gtk/gtkwidget.c: Make all style properties readonly.
This commit is contained in:
parent
321cedab98
commit
a1fd4e4bac
@ -1,7 +1,13 @@
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcombobox.c:
|
||||
* gtk/gtkwidget.c:
|
||||
Make all style properties readonly.
|
||||
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcolorsel.c: Add a11y relations between the color
|
||||
wheel and the spin buttons. (#132745)
|
||||
wheel and the spin buttons. (#132745, Padraig, O'Briain)
|
||||
|
||||
* gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
|
||||
the meaning of size == -1.
|
||||
|
@ -1,7 +1,13 @@
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcombobox.c:
|
||||
* gtk/gtkwidget.c:
|
||||
Make all style properties readonly.
|
||||
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcolorsel.c: Add a11y relations between the color
|
||||
wheel and the spin buttons. (#132745)
|
||||
wheel and the spin buttons. (#132745, Padraig, O'Briain)
|
||||
|
||||
* gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
|
||||
the meaning of size == -1.
|
||||
|
@ -1,7 +1,13 @@
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcombobox.c:
|
||||
* gtk/gtkwidget.c:
|
||||
Make all style properties readonly.
|
||||
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcolorsel.c: Add a11y relations between the color
|
||||
wheel and the spin buttons. (#132745)
|
||||
wheel and the spin buttons. (#132745, Padraig, O'Briain)
|
||||
|
||||
* gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
|
||||
the meaning of size == -1.
|
||||
|
@ -1,7 +1,13 @@
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcombobox.c:
|
||||
* gtk/gtkwidget.c:
|
||||
Make all style properties readonly.
|
||||
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcolorsel.c: Add a11y relations between the color
|
||||
wheel and the spin buttons. (#132745)
|
||||
wheel and the spin buttons. (#132745, Padraig, O'Briain)
|
||||
|
||||
* gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
|
||||
the meaning of size == -1.
|
||||
|
@ -1,7 +1,13 @@
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcombobox.c:
|
||||
* gtk/gtkwidget.c:
|
||||
Make all style properties readonly.
|
||||
|
||||
2004-04-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcolorsel.c: Add a11y relations between the color
|
||||
wheel and the spin buttons. (#132745)
|
||||
wheel and the spin buttons. (#132745, Padraig, O'Briain)
|
||||
|
||||
* gtk/gtkiconfactory.c (gtk_icon_set_render_icon): Document
|
||||
the meaning of size == -1.
|
||||
|
@ -509,7 +509,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
P_("Appears as list"),
|
||||
P_("Whether combobox dropdowns should look like lists rather than menus"),
|
||||
FALSE,
|
||||
G_PARAM_READWRITE));
|
||||
G_PARAM_READABLE));
|
||||
|
||||
g_type_class_add_private (object_class, sizeof (GtkComboBoxPrivate));
|
||||
}
|
||||
|
@ -1384,20 +1384,20 @@ gtk_widget_class_init (GtkWidgetClass *klass)
|
||||
P_("Focus linewidth"),
|
||||
P_("Width, in pixels, of the focus indicator line"),
|
||||
0, G_MAXINT, 1,
|
||||
G_PARAM_READWRITE));
|
||||
G_PARAM_READABLE));
|
||||
|
||||
gtk_widget_class_install_style_property (klass,
|
||||
g_param_spec_string ("focus-line-pattern",
|
||||
P_("Focus line dash pattern"),
|
||||
P_("Dash pattern used to draw the focus indicator"),
|
||||
"\1\1",
|
||||
G_PARAM_READWRITE));
|
||||
G_PARAM_READABLE));
|
||||
gtk_widget_class_install_style_property (klass,
|
||||
g_param_spec_int ("focus-padding",
|
||||
P_("Focus padding"),
|
||||
P_("Width, in pixels, between focus indicator and the widget 'box'"),
|
||||
0, G_MAXINT, 1,
|
||||
G_PARAM_READWRITE));
|
||||
G_PARAM_READABLE));
|
||||
gtk_widget_class_install_style_property (klass,
|
||||
g_param_spec_boxed ("cursor-color",
|
||||
P_("Cursor color"),
|
||||
|
Loading…
Reference in New Issue
Block a user