| |
1 /* |
| |
2 * @file gtkstatusbox.c GTK+ Status Selection Widget |
| |
3 * @ingroup gtkui |
| |
4 * |
| |
5 * gaim |
| |
6 * |
| |
7 * Gaim is the legal property of its developers, whose names are too numerous |
| |
8 * to list here. Please refer to the COPYRIGHT file distributed with this |
| |
9 * source distribution. |
| |
10 * |
| |
11 * This program is free software; you can redistribute it and/or modify |
| |
12 * it under the terms of the GNU General Public License as published by |
| |
13 * the Free Software Foundation; either version 2 of the License, or |
| |
14 * (at your option) any later version. |
| |
15 * |
| |
16 * This program is distributed in the hope that it will be useful, |
| |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| |
19 * GNU General Public License for more details. |
| |
20 * |
| |
21 * You should have received a copy of the GNU General Public License |
| |
22 * along with this program; if not, write to the Free Software |
| |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| |
24 */ |
| |
25 |
| |
26 |
| |
27 #ifndef __GTK_GAIM_STATUS_BOX_H__ |
| |
28 #define __GTK_GAIM_STATUS_BOX_H__ |
| |
29 |
| |
30 #include <gtk/gtk.h> |
| |
31 #include "gtkimhtml.h" |
| |
32 #include "account.h" |
| |
33 #include "savedstatuses.h" |
| |
34 #include "status.h" |
| |
35 #include <gtk/gtktreemodel.h> |
| |
36 #include <gtk/gtktreeview.h> |
| |
37 |
| |
38 G_BEGIN_DECLS |
| |
39 |
| |
40 #define GTK_GAIM_TYPE_STATUS_BOX (gtk_gaim_status_box_get_type ()) |
| |
41 #define GTK_GAIM_STATUS_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_GAIM_TYPE_STATUS_BOX, GtkGaimStatusBox)) |
| |
42 #define GTK_GAIM_STATUS_BOX_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_GAIM_TYPE_STATUS_BOX, GtkGaimStatusBoxClass)) |
| |
43 #define GTK_GAIM_IS_STATUS_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_GAIM_TYPE_STATUS_BOX)) |
| |
44 #define GTK_GAIM_IS_STATUS_BOX_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), GTK_GAIM_TYPE_STATUS_BOX)) |
| |
45 #define GTK_GAIM_STATUS_BOX_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), GTK_GAIM_TYPE_STATUS_BOX, GtkGaimStatusBoxClass)) |
| |
46 |
| |
47 /** |
| |
48 * This is a hidden field in the GtkStatusBox that identifies the |
| |
49 * item in the list store. The item could be a normal |
| |
50 * GaimStatusPrimitive, or it could be something special like the |
| |
51 * "Custom..." item, or "Saved..." or a GtkSeparator. |
| |
52 */ |
| |
53 typedef enum |
| |
54 { |
| |
55 GTK_GAIM_STATUS_BOX_TYPE_SEPARATOR, |
| |
56 GTK_GAIM_STATUS_BOX_TYPE_PRIMITIVE, |
| |
57 GTK_GAIM_STATUS_BOX_TYPE_POPULAR, |
| |
58 GTK_GAIM_STATUS_BOX_TYPE_CUSTOM, |
| |
59 GTK_GAIM_STATUS_BOX_TYPE_SAVED, |
| |
60 GTK_GAIM_STATUS_BOX_NUM_TYPES |
| |
61 } GtkGaimStatusBoxItemType; |
| |
62 |
| |
63 typedef struct _GtkGaimStatusBox GtkGaimStatusBox; |
| |
64 typedef struct _GtkGaimStatusBoxClass GtkGaimStatusBoxClass; |
| |
65 |
| |
66 struct _GtkGaimStatusBox |
| |
67 { |
| |
68 GtkContainer parent_instance; |
| |
69 |
| |
70 /** |
| |
71 * This GtkListStore contains only one row--the currently selected status. |
| |
72 */ |
| |
73 GtkListStore *store; |
| |
74 |
| |
75 /** |
| |
76 * This is the dropdown GtkListStore that contains the available statuses, |
| |
77 * plus some recently used statuses, plus the "Custom..." and "Saved..." |
| |
78 * options. |
| |
79 */ |
| |
80 GtkListStore *dropdown_store; |
| |
81 |
| |
82 GaimAccount *account; |
| |
83 |
| |
84 /* This will be non-NULL and contain a sample account |
| |
85 * when all enabled accounts use the same statuses */ |
| |
86 GaimAccount *token_status_account; |
| |
87 |
| |
88 GtkWidget *vbox, *sw; |
| |
89 GtkWidget *imhtml; |
| |
90 |
| |
91 char *buddy_icon_path; |
| |
92 GdkPixbuf *buddy_icon; |
| |
93 GdkPixbuf *buddy_icon_hover; |
| |
94 GtkWidget *buddy_icon_sel; |
| |
95 GtkWidget *icon; |
| |
96 GtkWidget *icon_box; |
| |
97 GtkWidget *icon_box_menu; |
| |
98 GdkCursor *hand_cursor; |
| |
99 GdkCursor *arrow_cursor; |
| |
100 int icon_size; |
| |
101 |
| |
102 gboolean imhtml_visible; |
| |
103 |
| |
104 GtkWidget *cell_view; |
| |
105 GtkCellRenderer *icon_rend; |
| |
106 GtkCellRenderer *text_rend; |
| |
107 |
| |
108 GdkPixbuf *error_pixbuf; |
| |
109 int connecting_index; |
| |
110 GdkPixbuf *connecting_pixbufs[4]; |
| |
111 int typing_index; |
| |
112 GdkPixbuf *typing_pixbufs[4]; |
| |
113 |
| |
114 gboolean network_available; |
| |
115 gboolean connecting; |
| |
116 guint typing; |
| |
117 |
| |
118 GtkTreeIter iter; |
| |
119 char *error; |
| |
120 |
| |
121 /* |
| |
122 * These widgets are made for renderin' |
| |
123 * That's just what they'll do |
| |
124 * One of these days these widgets |
| |
125 * Are gonna render all over you |
| |
126 */ |
| |
127 GtkWidget *hbox; |
| |
128 GtkWidget *toggle_button; |
| |
129 GtkWidget *vsep; |
| |
130 GtkWidget *arrow; |
| |
131 |
| |
132 GtkWidget *popup_window; |
| |
133 GtkWidget *popup_frame; |
| |
134 GtkWidget *scrolled_window; |
| |
135 GtkWidget *cell_view_frame; |
| |
136 GtkTreeViewColumn *column; |
| |
137 GtkWidget *tree_view; |
| |
138 gboolean popup_in_progress; |
| |
139 GtkTreeRowReference *active_row; |
| |
140 }; |
| |
141 |
| |
142 struct _GtkGaimStatusBoxClass |
| |
143 { |
| |
144 GtkContainerClass parent_class; |
| |
145 |
| |
146 /* signals */ |
| |
147 void (* changed) (GtkComboBox *combo_box); |
| |
148 |
| |
149 /* Padding for future expansion */ |
| |
150 void (*_gtk_reserved0) (void); |
| |
151 void (*_gtk_reserved1) (void); |
| |
152 void (*_gtk_reserved2) (void); |
| |
153 void (*_gtk_reserved3) (void); |
| |
154 }; |
| |
155 |
| |
156 |
| |
157 GType gtk_gaim_status_box_get_type (void) G_GNUC_CONST; |
| |
158 GtkWidget *gtk_gaim_status_box_new (void); |
| |
159 GtkWidget *gtk_gaim_status_box_new_with_account (GaimAccount *); |
| |
160 |
| |
161 void |
| |
162 gtk_gaim_status_box_add(GtkGaimStatusBox *status_box, GtkGaimStatusBoxItemType type, GdkPixbuf *pixbuf, const char *text, const char *sec_text, gpointer data); |
| |
163 |
| |
164 void |
| |
165 gtk_gaim_status_box_add_separator(GtkGaimStatusBox *status_box); |
| |
166 |
| |
167 void |
| |
168 gtk_gaim_status_box_set_network_available(GtkGaimStatusBox *status_box, gboolean available); |
| |
169 |
| |
170 void |
| |
171 gtk_gaim_status_box_set_connecting(GtkGaimStatusBox *status_box, gboolean connecting); |
| |
172 |
| |
173 void |
| |
174 gtk_gaim_status_box_pulse_connecting(GtkGaimStatusBox *status_box); |
| |
175 |
| |
176 void |
| |
177 gtk_gaim_status_box_set_buddy_icon(GtkGaimStatusBox *status_box, const char *filename); |
| |
178 |
| |
179 const char * |
| |
180 gtk_gaim_status_box_get_buddy_icon(GtkGaimStatusBox *status_box); |
| |
181 |
| |
182 char *gtk_gaim_status_box_get_message(GtkGaimStatusBox *status_box); |
| |
183 |
| |
184 G_END_DECLS |
| |
185 |
| |
186 #endif /* __GTK_GAIM_GTK_STATUS_COMBO_BOX_H__ */ |