mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
Fix up exported symbols
Only GtkColorChooser* is public for now.
This commit is contained in:
parent
43ffb8521d
commit
6ed16b5b41
@ -605,6 +605,15 @@ gtk_color_button_set_color
|
||||
gtk_color_button_set_rgba
|
||||
gtk_color_button_set_title
|
||||
gtk_color_button_set_use_alpha
|
||||
gtk_color_chooser_dialog_get_type
|
||||
gtk_color_chooser_dialog_new
|
||||
gtk_color_chooser_get_color
|
||||
gtk_color_chooser_get_show_alpha
|
||||
gtk_color_chooser_get_type
|
||||
gtk_color_chooser_set_color
|
||||
gtk_color_chooser_set_show_alpha
|
||||
gtk_color_chooser_widget_get_type
|
||||
gtk_color_chooser_widget_new
|
||||
gtk_color_selection_dialog_get_color_selection
|
||||
gtk_color_selection_dialog_get_type
|
||||
gtk_color_selection_dialog_new
|
||||
|
@ -59,8 +59,10 @@ struct _GtkColorEditorClass
|
||||
};
|
||||
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GType gtk_color_editor_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GtkWidget * gtk_color_editor_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
@ -59,8 +59,10 @@ struct _GtkColorPlaneClass
|
||||
};
|
||||
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GType gtk_color_plane_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GtkWidget * gtk_color_plane_new (GtkAdjustment *h_adj,
|
||||
GtkAdjustment *s_adj,
|
||||
GtkAdjustment *v_adj);
|
||||
|
@ -64,11 +64,15 @@ typedef enum
|
||||
GTK_COLOR_SCALE_ALPHA
|
||||
} GtkColorScaleType;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GType gtk_color_scale_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GtkWidget * gtk_color_scale_new (void);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_scale_set_type (GtkColorScale *scale,
|
||||
GtkColorScaleType type);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_scale_set_color (GtkColorScale *scale,
|
||||
const GdkRGBA *color);
|
||||
|
||||
|
@ -63,24 +63,33 @@ struct _GtkColorSwatchClass
|
||||
};
|
||||
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GType gtk_color_swatch_get_type (void) G_GNUC_CONST;
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GtkWidget * gtk_color_swatch_new (void);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_corner_radii (GtkColorSwatch *swatch,
|
||||
gdouble top_left,
|
||||
gdouble top_right,
|
||||
gdouble bottom_right,
|
||||
gdouble bottom_left);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_color (GtkColorSwatch *swatch,
|
||||
const GdkRGBA *color);
|
||||
G_GNUC_INTERNAL
|
||||
gboolean gtk_color_swatch_get_color (GtkColorSwatch *swatch,
|
||||
GdkRGBA *color);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_selected (GtkColorSwatch *swatch,
|
||||
gboolean selected);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_can_drop (GtkColorSwatch *swatch,
|
||||
gboolean can_drop);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_icon (GtkColorSwatch *swatch,
|
||||
const gchar *icon);
|
||||
G_GNUC_INTERNAL
|
||||
void gtk_color_swatch_set_show_alpha (GtkColorSwatch *swatch,
|
||||
gboolean show_alpha);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user