2008-05-22 [colin] 3.4.0cvs63
[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 GtkWidget *combobox_text_new(const gboolean with_entry, const gchar *text, ...);
57
58 void combobox_select_by_data    (GtkComboBox            *combobox,
59                                  gint                    data);
60 void combobox_select_by_text    (GtkComboBox            *combobox,
61                                  const gchar            *data);
62
63 gint combobox_get_active_data   (GtkComboBox            *combobox);
64
65 void combobox_unset_popdown_strings(GtkComboBox         *combobox);
66 void combobox_set_popdown_strings(GtkComboBox           *combobox,
67                                  GList       *list);
68 gboolean combobox_set_value_from_arrow_key(GtkComboBox *combobox,
69                                  guint keyval);
70 void combobox_set_sensitive     (GtkComboBox *combobox,
71                                  const guint index,
72                                  const gboolean sensitive);
73
74 #endif /* __COMBOBOX_H__ */