Thu, 14 May 2020 03:20:38 -0500
fix a use after free by making sure to reference an old smiley image if it is not null.
| 10643 | 1 | /* |
| 2 | * @file gtkstatusbox.c GTK+ Status Selection Widget | |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* pidgin |
| 10643 | 7 | * |
| 15572 | 8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 10643 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
| 11 | * | |
| 12 | * This program is free software; you can redistribute it and/or modify | |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16538
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 10643 | 25 | */ |
| 26 | ||
| 27 | ||
| 15577 | 28 | #ifndef __PIDGIN_STATUS_BOX_H__ |
| 29 | #define __PIDGIN_STATUS_BOX_H__ | |
| 10643 | 30 | |
| 31 | #include <gtk/gtk.h> | |
| 32 | #include "gtkimhtml.h" | |
| 11499 | 33 | #include "account.h" |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
16376
diff
changeset
|
34 | #include "imgstore.h" |
|
11677
89c2ab8d2ebf
[gaim-migrate @ 13963]
Mark Doliner <markdoliner@pidgin.im>
parents:
11638
diff
changeset
|
35 | #include "savedstatuses.h" |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
36 | #include "status.h" |
| 10643 | 37 | |
| 38 | G_BEGIN_DECLS | |
| 39 | ||
| 15577 | 40 | #define PIDGIN_TYPE_STATUS_BOX (pidgin_status_box_get_type ()) |
| 41 | #define PIDGIN_STATUS_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PIDGIN_TYPE_STATUS_BOX, PidginStatusBox)) | |
| 42 | #define PIDGIN_STATUS_BOX_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), PIDGIN_TYPE_STATUS_BOX, PidginStatusBoxClass)) | |
| 43 | #define PIDGIN_IS_STATUS_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_STATUS_BOX)) | |
| 44 | #define PIDGIN_IS_STATUS_BOX_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), PIDGIN_TYPE_STATUS_BOX)) | |
| 45 | #define PIDGIN_STATUS_BOX_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), PIDGIN_TYPE_STATUS_BOX, PidginStatusBoxClass)) | |
| 10643 | 46 | |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
47 | /** |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
48 | * This is a hidden field in the GtkStatusBox that identifies the |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
49 | * item in the list store. The item could be a normal |
| 15884 | 50 | * PurpleStatusPrimitive, or it could be something special like the |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
51 | * "Custom..." item, or "Saved..." or a GtkSeparator. |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
52 | */ |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
53 | typedef enum |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
54 | { |
| 15577 | 55 | PIDGIN_STATUS_BOX_TYPE_SEPARATOR, |
| 56 | PIDGIN_STATUS_BOX_TYPE_PRIMITIVE, | |
| 57 | PIDGIN_STATUS_BOX_TYPE_POPULAR, | |
|
16376
04b7b529b7b0
Saved icon for saved statuses in statusbox
Sean Egan <seanegan@pidgin.im>
parents:
16254
diff
changeset
|
58 | PIDGIN_STATUS_BOX_TYPE_SAVED_POPULAR, |
| 15577 | 59 | PIDGIN_STATUS_BOX_TYPE_CUSTOM, |
| 60 | PIDGIN_STATUS_BOX_TYPE_SAVED, | |
| 61 | PIDGIN_STATUS_BOX_NUM_TYPES | |
| 62 | } PidginStatusBoxItemType; | |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
63 | |
| 15577 | 64 | typedef struct _PidginStatusBox PidginStatusBox; |
| 65 | typedef struct _PidginStatusBoxClass PidginStatusBoxClass; | |
| 10643 | 66 | |
| 15577 | 67 | struct _PidginStatusBox |
| 10643 | 68 | { |
| 15141 | 69 | GtkContainer parent_instance; |
| 10643 | 70 | |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
71 | /** |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
72 | * This GtkListStore contains only one row--the currently selected status. |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
73 | */ |
| 10643 | 74 | GtkListStore *store; |
|
11739
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
75 | |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
76 | /** |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
77 | * This is the dropdown GtkListStore that contains the available statuses, |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
78 | * plus some recently used statuses, plus the "Custom..." and "Saved..." |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
79 | * options. |
|
cc15987b3937
[gaim-migrate @ 14030]
Mark Doliner <markdoliner@pidgin.im>
parents:
11738
diff
changeset
|
80 | */ |
| 10643 | 81 | GtkListStore *dropdown_store; |
| 82 | ||
| 15884 | 83 | PurpleAccount *account; |
| 11499 | 84 | |
|
14725
39980ddc0b9a
[gaim-migrate @ 17409]
Daniel Atallah <datallah@pidgin.im>
parents:
14253
diff
changeset
|
85 | /* This will be non-NULL and contain a sample account |
|
39980ddc0b9a
[gaim-migrate @ 17409]
Daniel Atallah <datallah@pidgin.im>
parents:
14253
diff
changeset
|
86 | * when all enabled accounts use the same statuses */ |
| 15884 | 87 | PurpleAccount *token_status_account; |
|
14725
39980ddc0b9a
[gaim-migrate @ 17409]
Daniel Atallah <datallah@pidgin.im>
parents:
14253
diff
changeset
|
88 | |
| 10643 | 89 | GtkWidget *vbox, *sw; |
| 90 | GtkWidget *imhtml; | |
| 14195 | 91 | |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
16376
diff
changeset
|
92 | PurpleStoredImage *buddy_icon_img; |
|
14203
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
93 | GdkPixbuf *buddy_icon; |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
94 | GdkPixbuf *buddy_icon_hover; |
| 14195 | 95 | GtkWidget *buddy_icon_sel; |
|
14203
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
96 | GtkWidget *icon; |
| 14195 | 97 | GtkWidget *icon_box; |
|
15079
835ed45157ce
[gaim-migrate @ 17799]
Daniel Atallah <datallah@pidgin.im>
parents:
14865
diff
changeset
|
98 | GtkWidget *icon_box_menu; |
| 14195 | 99 | GdkCursor *hand_cursor; |
| 100 | GdkCursor *arrow_cursor; | |
| 15474 | 101 | int icon_size; |
| 102 | gboolean icon_opaque; | |
| 14195 | 103 | |
| 10643 | 104 | gboolean imhtml_visible; |
| 105 | ||
| 106 | GtkWidget *cell_view; | |
| 107 | GtkCellRenderer *icon_rend; | |
| 108 | GtkCellRenderer *text_rend; | |
| 109 | ||
| 110 | GdkPixbuf *error_pixbuf; | |
| 111 | int connecting_index; | |
| 24434 | 112 | GdkPixbuf *connecting_pixbufs[9]; |
| 10643 | 113 | int typing_index; |
| 15730 | 114 | GdkPixbuf *typing_pixbufs[6]; |
| 10643 | 115 | |
| 14767 | 116 | gboolean network_available; |
| 10643 | 117 | gboolean connecting; |
|
13124
1750c1be8e81
[gaim-migrate @ 15485]
Mark Doliner <markdoliner@pidgin.im>
parents:
13123
diff
changeset
|
118 | guint typing; |
| 10643 | 119 | |
| 120 | GtkTreeIter iter; | |
| 121 | char *error; | |
| 11960 | 122 | |
|
13122
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
123 | /* |
|
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
124 | * These widgets are made for renderin' |
|
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
125 | * That's just what they'll do |
|
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
126 | * One of these days these widgets |
|
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
127 | * Are gonna render all over you |
|
85136c011157
[gaim-migrate @ 15483]
Mark Doliner <markdoliner@pidgin.im>
parents:
12779
diff
changeset
|
128 | */ |
| 12262 | 129 | GtkWidget *hbox; |
| 130 | GtkWidget *toggle_button; | |
| 131 | GtkWidget *vsep; | |
| 132 | GtkWidget *arrow; | |
| 15141 | 133 | |
| 134 | GtkWidget *popup_window; | |
| 135 | GtkWidget *popup_frame; | |
| 136 | GtkWidget *scrolled_window; | |
| 137 | GtkWidget *cell_view_frame; | |
| 138 | GtkTreeViewColumn *column; | |
| 139 | GtkWidget *tree_view; | |
| 140 | gboolean popup_in_progress; | |
| 141 | GtkTreeRowReference *active_row; | |
| 10643 | 142 | }; |
| 143 | ||
| 15577 | 144 | struct _PidginStatusBoxClass |
| 10643 | 145 | { |
| 15141 | 146 | GtkContainerClass parent_class; |
| 10643 | 147 | |
|
14203
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
148 | /* signals */ |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
149 | void (* changed) (GtkComboBox *combo_box); |
| 10643 | 150 | |
|
14203
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
151 | /* Padding for future expansion */ |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
152 | void (*_gtk_reserved0) (void); |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
153 | void (*_gtk_reserved1) (void); |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
154 | void (*_gtk_reserved2) (void); |
|
f3a50c328ddc
[gaim-migrate @ 16783]
Mark Doliner <markdoliner@pidgin.im>
parents:
14195
diff
changeset
|
155 | void (*_gtk_reserved3) (void); |
| 10643 | 156 | }; |
| 157 | ||
| 158 | ||
| 15577 | 159 | GType pidgin_status_box_get_type (void) G_GNUC_CONST; |
| 160 | GtkWidget *pidgin_status_box_new (void); | |
| 15884 | 161 | GtkWidget *pidgin_status_box_new_with_account (PurpleAccount *); |
| 10643 | 162 | |
| 163 | void | |
| 15577 | 164 | pidgin_status_box_add(PidginStatusBox *status_box, PidginStatusBoxItemType type, GdkPixbuf *pixbuf, const char *text, const char *sec_text, gpointer data); |
| 10643 | 165 | |
| 166 | void | |
| 15577 | 167 | pidgin_status_box_add_separator(PidginStatusBox *status_box); |
|
11738
207d5519a4d0
[gaim-migrate @ 14029]
Mark Doliner <markdoliner@pidgin.im>
parents:
11732
diff
changeset
|
168 | |
|
207d5519a4d0
[gaim-migrate @ 14029]
Mark Doliner <markdoliner@pidgin.im>
parents:
11732
diff
changeset
|
169 | void |
| 15577 | 170 | pidgin_status_box_set_network_available(PidginStatusBox *status_box, gboolean available); |
| 14767 | 171 | |
| 172 | void | |
| 15577 | 173 | pidgin_status_box_set_connecting(PidginStatusBox *status_box, gboolean connecting); |
| 10643 | 174 | |
| 175 | void | |
| 15577 | 176 | pidgin_status_box_pulse_connecting(PidginStatusBox *status_box); |
| 10643 | 177 | |
| 14195 | 178 | void |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
16376
diff
changeset
|
179 | pidgin_status_box_set_buddy_icon(PidginStatusBox *status_box, PurpleStoredImage *img); |
| 14195 | 180 | |
| 15577 | 181 | char *pidgin_status_box_get_message(PidginStatusBox *status_box); |
| 10649 | 182 | |
| 10643 | 183 | G_END_DECLS |
| 184 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15474
diff
changeset
|
185 | #endif /* __GTK_PIDGIN_STATUS_COMBO_BOX_H__ */ |