diff options
Diffstat (limited to 'app/dialogs/preferences-dialog-utils.h')
-rw-r--r-- | app/dialogs/preferences-dialog-utils.h | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/app/dialogs/preferences-dialog-utils.h b/app/dialogs/preferences-dialog-utils.h new file mode 100644 index 0000000..46f2be9 --- /dev/null +++ b/app/dialogs/preferences-dialog-utils.h @@ -0,0 +1,134 @@ +/* GIMP - The GNU Image Manipulation Program + * Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +#ifndef __PREFERENCES_DIALOG_UTILS_H__ +#define __PREFERENCES_DIALOG_UTILS_H__ + + +#define PREFS_COLOR_BUTTON_WIDTH 40 +#define PREFS_COLOR_BUTTON_HEIGHT 24 + + +GtkWidget * prefs_frame_new (const gchar *label, + GtkContainer *parent, + gboolean expand); +GtkWidget * prefs_table_new (gint rows, + GtkContainer *parent); + +GtkWidget * prefs_hint_box_new (const gchar *icon_name, + const gchar *text); + +GtkWidget * prefs_button_add (const gchar *icon_name, + const gchar *label, + GtkBox *box); +GtkWidget * prefs_check_button_add (GObject *config, + const gchar *property_name, + const gchar *label, + GtkBox *box); +GtkWidget * prefs_check_button_add_with_icon (GObject *config, + const gchar *property_name, + const gchar *label, + const gchar *icon_name, + GtkBox *box, + GtkSizeGroup *group); + +GtkWidget * prefs_widget_add_aligned (GtkWidget *widget, + const gchar *text, + GtkTable *table, + gint table_row, + gboolean left_align, + GtkSizeGroup *group); + +GtkWidget * prefs_color_button_add (GObject *config, + const gchar *property_name, + const gchar *label, + const gchar *title, + GtkTable *table, + gint table_row, + GtkSizeGroup *group, + GimpContext *context); + +GtkWidget * prefs_entry_add (GObject *config, + const gchar *property_name, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); +GtkWidget * prefs_spin_button_add (GObject *config, + const gchar *property_name, + gdouble step_increment, + gdouble page_increment, + gint digits, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); +GtkWidget * prefs_memsize_entry_add (GObject *config, + const gchar *property_name, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); + +GtkWidget * prefs_file_chooser_button_add (GObject *config, + const gchar *property_name, + const gchar *label, + const gchar *dialog_title, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); + +GtkWidget * prefs_enum_combo_box_add (GObject *config, + const gchar *property_name, + gint minimum, + gint maximum, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); +GtkWidget * prefs_boolean_combo_box_add (GObject *config, + const gchar *property_name, + const gchar *true_text, + const gchar *false_text, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); +#ifdef HAVE_ISO_CODES +GtkWidget * prefs_language_combo_box_add (GObject *config, + const gchar *property_name, + GtkBox *vbox); +#endif +GtkWidget * prefs_profile_combo_box_add (GObject *config, + const gchar *property_name, + GtkListStore *profile_store, + const gchar *dialog_title, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group, + GObject *profile_path_config, + const gchar *profile_path_property_name); +GtkWidget * prefs_compression_combo_box_add (GObject *config, + const gchar *property_name, + const gchar *label, + GtkTable *table, + gint table_row, + GtkSizeGroup *group); + + +#endif /* __PREFERENCES_DIALOG_H__ */ |