2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef __PREFS_GTK_H__
21 #define __PREFS_GTK_H__
27 typedef struct _PrefParam PrefParam
;
28 typedef struct _PrefsDialog PrefsDialog
;
31 #include "gtk/prefswindow.h"
33 #define PREFSBUFSIZE 32768
47 typedef void (*DataSetFunc
) (PrefParam
*pparam
);
48 typedef void (*WidgetSetFunc
) (PrefParam
*pparam
);
56 DataSetFunc data_set_func
;
57 WidgetSetFunc widget_set_func
;
66 GtkWidget
*cancel_btn
;
70 #define SET_NOTEBOOK_LABEL(notebook, str, page_num) \
75 label = gtk_label_new_with_mnemonic (str); \
76 gtk_widget_show (label); \
77 gtk_notebook_set_tab_label \
78 (GTK_NOTEBOOK (notebook), \
79 gtk_notebook_get_nth_page \
80 (GTK_NOTEBOOK (notebook), i), \
82 gtk_notebook_set_menu_label_text \
83 (GTK_NOTEBOOK (notebook), \
84 gtk_notebook_get_nth_page \
85 (GTK_NOTEBOOK (notebook), i), \
89 #define PACK_CHECK_BUTTON(box, checkbtn, label) \
91 checkbtn = gtk_check_button_new_with_label(label); \
92 gtk_widget_show(checkbtn); \
93 gtk_box_pack_start(GTK_BOX(box), checkbtn, FALSE, TRUE, 0); \
96 #define PACK_END_CHECK_BUTTON(box, checkbtn, label) \
98 checkbtn = gtk_check_button_new_with_label(label); \
99 gtk_widget_show(checkbtn); \
100 gtk_box_pack_end(GTK_BOX(box), checkbtn, FALSE, TRUE, 0); \
103 #define PACK_FRAME(box, frame, label) \
105 frame = gtk_frame_new(label); \
106 gtk_widget_show(frame); \
107 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, TRUE, 0); \
108 gtk_frame_set_label_align(GTK_FRAME(frame), 0.01, 0.5); \
111 #define PACK_VSPACER(box, vbox, spacing) \
113 vbox = gtk_vbox_new(FALSE, 0); \
114 gtk_widget_show(vbox); \
115 gtk_box_pack_start(GTK_BOX(box), vbox, FALSE, TRUE, spacing); \
118 #define SET_TOGGLE_SENSITIVITY(togglewid, targetwid) \
120 gtk_widget_set_sensitive(targetwid, gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(togglewid))); \
121 g_signal_connect(G_OBJECT(togglewid), "toggled", \
122 G_CALLBACK(prefs_button_toggled), targetwid); \
125 #define SET_TOGGLE_SENSITIVITY_REVERSE(togglewid, targetwid) \
127 gtk_widget_set_sensitive(targetwid, !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(togglewid))); \
128 g_signal_connect(G_OBJECT(togglewid), "toggled", \
129 G_CALLBACK(prefs_button_toggled_reverse), targetwid); \
132 void prefs_read_config (PrefParam
*param
,
135 const gchar
*encoding
);
136 void prefs_write_config (PrefParam
*param
,
138 const gchar
*rcfile
);
139 gint
prefs_write_param (PrefParam
*param
,
142 PrefFile
*prefs_write_open (const gchar
*path
);
144 void prefs_set_default (PrefParam
*param
);
145 void prefs_free (PrefParam
*param
);
147 void prefs_button_toggled (GtkToggleButton
*toggle_btn
,
149 void prefs_button_toggled_reverse (GtkToggleButton
*toggle_btn
,
152 void prefs_set_dialog (PrefParam
*param
);
153 void prefs_set_data_from_dialog (PrefParam
*param
);
154 void prefs_set_dialog_to_default(PrefParam
*param
);
156 void prefs_set_data_from_entry (PrefParam
*pparam
);
157 void prefs_set_escaped_data_from_entry (PrefParam
*pparam
);
158 void prefs_set_entry (PrefParam
*pparam
);
159 void prefs_set_entry_from_escaped (PrefParam
*pparam
);
160 void prefs_set_data_from_text (PrefParam
*pparam
);
161 void prefs_set_escaped_data_from_text (PrefParam
*pparam
);
162 void prefs_set_text (PrefParam
*pparam
);
163 void prefs_set_text_from_escaped(PrefParam
*pparam
);
164 void prefs_set_data_from_toggle (PrefParam
*pparam
);
165 void prefs_set_toggle (PrefParam
*pparam
);
166 void prefs_set_data_from_spinbtn(PrefParam
*pparam
);
167 void prefs_set_spinbtn (PrefParam
*pparam
);
169 void prefs_gtk_open (void);
170 void prefs_gtk_register_page (PrefsPage
*page
);
171 void prefs_gtk_unregister_page (PrefsPage
*page
);
173 void prefs_prepare_cache(void);
174 void prefs_destroy_cache(void);
176 #endif /* __PREFS_H__ */