mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 18:00:09 +00:00
Remove deprecated GtkRcStyle functions
This commit is contained in:
parent
2e1b3abad3
commit
956a5c47ed
58
gtk/gtkrc.c
58
gtk/gtkrc.c
@ -1304,22 +1304,6 @@ _gtk_rc_style_unset_rc_property (GtkRcStyle *rc_style,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
gtk_rc_style_ref (GtkRcStyle *rc_style)
|
|
||||||
{
|
|
||||||
g_return_if_fail (GTK_IS_RC_STYLE (rc_style));
|
|
||||||
|
|
||||||
g_object_ref (rc_style);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
gtk_rc_style_unref (GtkRcStyle *rc_style)
|
|
||||||
{
|
|
||||||
g_return_if_fail (GTK_IS_RC_STYLE (rc_style));
|
|
||||||
|
|
||||||
g_object_unref (rc_style);
|
|
||||||
}
|
|
||||||
|
|
||||||
static GtkRcStyle *
|
static GtkRcStyle *
|
||||||
gtk_rc_style_real_create_rc_style (GtkRcStyle *style)
|
gtk_rc_style_real_create_rc_style (GtkRcStyle *style)
|
||||||
{
|
{
|
||||||
@ -2200,48 +2184,6 @@ gtk_rc_add_rc_sets (GSList *slist,
|
|||||||
return g_slist_prepend (slist, rc_set);
|
return g_slist_prepend (slist, rc_set);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
gtk_rc_add_widget_name_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern)
|
|
||||||
{
|
|
||||||
GtkRcContext *context;
|
|
||||||
|
|
||||||
g_return_if_fail (rc_style != NULL);
|
|
||||||
g_return_if_fail (pattern != NULL);
|
|
||||||
|
|
||||||
context = gtk_rc_context_get (gtk_settings_get_default ());
|
|
||||||
|
|
||||||
context->rc_sets_widget = gtk_rc_add_rc_sets (context->rc_sets_widget, rc_style, pattern, GTK_PATH_WIDGET);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
gtk_rc_add_widget_class_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern)
|
|
||||||
{
|
|
||||||
GtkRcContext *context;
|
|
||||||
|
|
||||||
g_return_if_fail (rc_style != NULL);
|
|
||||||
g_return_if_fail (pattern != NULL);
|
|
||||||
|
|
||||||
context = gtk_rc_context_get (gtk_settings_get_default ());
|
|
||||||
|
|
||||||
context->rc_sets_widget_class = gtk_rc_add_rc_sets (context->rc_sets_widget_class, rc_style, pattern, GTK_PATH_WIDGET_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
gtk_rc_add_class_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern)
|
|
||||||
{
|
|
||||||
GtkRcContext *context;
|
|
||||||
|
|
||||||
g_return_if_fail (rc_style != NULL);
|
|
||||||
g_return_if_fail (pattern != NULL);
|
|
||||||
|
|
||||||
context = gtk_rc_context_get (gtk_settings_get_default ());
|
|
||||||
|
|
||||||
context->rc_sets_class = gtk_rc_add_rc_sets (context->rc_sets_class, rc_style, pattern, GTK_PATH_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
GScanner*
|
GScanner*
|
||||||
gtk_rc_scanner_new (void)
|
gtk_rc_scanner_new (void)
|
||||||
{
|
{
|
||||||
|
15
gtk/gtkrc.h
15
gtk/gtkrc.h
@ -159,25 +159,10 @@ void gtk_rc_parse (const gchar *filename);
|
|||||||
void gtk_rc_parse_string (const gchar *rc_string);
|
void gtk_rc_parse_string (const gchar *rc_string);
|
||||||
gboolean gtk_rc_reparse_all (void);
|
gboolean gtk_rc_reparse_all (void);
|
||||||
|
|
||||||
#ifndef GTK_DISABLE_DEPRECATED
|
|
||||||
void gtk_rc_add_widget_name_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern);
|
|
||||||
void gtk_rc_add_widget_class_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern);
|
|
||||||
void gtk_rc_add_class_style (GtkRcStyle *rc_style,
|
|
||||||
const gchar *pattern);
|
|
||||||
#endif /* GTK_DISABLE_DEPRECATED */
|
|
||||||
|
|
||||||
|
|
||||||
GType gtk_rc_style_get_type (void) G_GNUC_CONST;
|
GType gtk_rc_style_get_type (void) G_GNUC_CONST;
|
||||||
GtkRcStyle* gtk_rc_style_new (void);
|
GtkRcStyle* gtk_rc_style_new (void);
|
||||||
GtkRcStyle* gtk_rc_style_copy (GtkRcStyle *orig);
|
GtkRcStyle* gtk_rc_style_copy (GtkRcStyle *orig);
|
||||||
|
|
||||||
#ifndef GTK_DISABLE_DEPRECATED
|
|
||||||
void gtk_rc_style_ref (GtkRcStyle *rc_style);
|
|
||||||
void gtk_rc_style_unref (GtkRcStyle *rc_style);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
gchar* gtk_rc_find_module_in_path (const gchar *module_file);
|
gchar* gtk_rc_find_module_in_path (const gchar *module_file);
|
||||||
gchar* gtk_rc_get_theme_dir (void);
|
gchar* gtk_rc_get_theme_dir (void);
|
||||||
gchar* gtk_rc_get_module_dir (void);
|
gchar* gtk_rc_get_module_dir (void);
|
||||||
|
Loading…
Reference in New Issue
Block a user