2007-09-27 [colin] 3.0.1cvs35
[claws.git] / src / gtk / combobox.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Andrej Kacian and the Claws Mail team
4  *
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.
9  *
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.
14  *
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/>.
17  * 
18  */
19
20 #ifndef __COMBOBOX_H__
21 #define __COMBOBOX_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25 #include <gtk/gtkcombobox.h>
26
27 enum {
28         COMBOBOX_TEXT,
29         COMBOBOX_DATA,
30         COMBOBOX_SENS
31 };
32
33
34 #define COMBOBOX_ADD(menu, label, data)                  \
35 {                                                                \
36         gtk_list_store_append(menu, &iter); \
37         gtk_list_store_set(menu, &iter, \
38                         COMBOBOX_TEXT, label, \
39                         COMBOBOX_DATA, data, \
40                         COMBOBOX_SENS, TRUE, \
41                         -1); \
42 }
43
44 #define COMBOBOX_ADD_ESCAPED(menu, label, data)                  \
45 {                                                                \
46         gchar *tmp_esc = g_markup_printf_escaped("%s", label);   \
47         gtk_list_store_append(menu, &iter);                      \
48         gtk_list_store_set(menu, &iter,                          \
49                         COMBOBOX_TEXT, (tmp_esc ? tmp_esc : ""),                 \
50                         COMBOBOX_DATA, data,                             \
51                         COMBOBOX_SENS, TRUE,                             \
52                         -1);                                     \
53         g_free(tmp_esc);                                         \
54 }
55
56 void combobox_select_by_data    (GtkComboBox            *combobox,
57                                  gint            data);
58
59 gint combobox_get_active_data   (GtkComboBox            *combobox);
60
61 void combobox_unset_popdown_strings(GtkComboBox         *combobox);
62 void combobox_set_popdown_strings(GtkComboBox           *combobox,
63                                  GList       *list);
64 gboolean combobox_set_value_from_arrow_key(GtkComboBox *combobox,
65                                  guint keyval);
66
67 #endif /* __COMBOBOX_H__ */