summaryrefslogtreecommitdiffstats
path: root/app/dialogs/preferences-dialog-utils.h
blob: 46f2be9533be1dff2bd2e2f154f4768e058b9aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
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__ */