2007-05-03 [wwp] 2.9.1cvs41
[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 2 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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 #define COMBOBOX_ADD(menu, label, data)                  \
28 {                                                                \
29         gtk_list_store_append(menu, &iter); \
30         gtk_list_store_set(menu, &iter, \
31                         0, (label ? label : ""), \
32                         1, data, \
33                         -1); \
34 }
35
36 #define COMBOBOX_ADD_ESCAPED(menu, label, data)                  \
37 {                                                                \
38         gchar *tmp_esc = g_markup_printf_escaped("%s", label);   \
39         gtk_list_store_append(menu, &iter);                      \
40         gtk_list_store_set(menu, &iter,                          \
41                         0, (tmp_esc ? tmp_esc : ""),             \
42                         1, data,                                 \
43                         -1);                                     \
44         g_free(tmp_esc);                                         \
45 }
46
47 void combobox_select_by_data    (GtkComboBox            *combobox,
48                                  gint            data);
49
50 gint combobox_get_active_data   (GtkComboBox            *combobox);
51
52 void combobox_unset_popdown_strings(GtkComboBox         *combobox);
53 void combobox_set_popdown_strings(GtkComboBox           *combobox,
54                                  GList       *list);
55 gboolean combobox_set_value_from_arrow_key(GtkComboBox *combobox,
56                                  guint keyval);
57
58 #endif /* __COMBOBOX_H__ */