pidgin/pidginprotocolstore.h

changeset 40711
3ec3eae31fe4
parent 40502
875489636847
child 40741
850137e8737c
equal deleted inserted replaced
40710:355aff4da4af 40711:3ec3eae31fe4
39 39
40 #include <gtk/gtk.h> 40 #include <gtk/gtk.h>
41 41
42 #include <purple.h> 42 #include <purple.h>
43 43
44 /**
45 * PidginProtocolStoreColumn:
46 * @PIDGIN_PROTOCOL_STORE_COLUMN_PROTOCOL: This column holds a reference to a
47 * #PurpleProtocol.
48 * @PIDGIN_PROTOCOL_STORE_COLUMN_NAME: This column holds the name of the
49 * protocol.
50 * @PIDGIN_PROTOCOL_STORE_COLUMN_ICON: This column holds a #GdkPixbuf of the
51 * logo of the protocol.
52 *
53 * Constants for accessing columns in a #PidginProtocolStore.
54 *
55 * Since: 3.0.0
56 */
44 typedef enum { 57 typedef enum {
45 PIDGIN_PROTOCOL_STORE_COLUMN_PROTOCOL, 58 PIDGIN_PROTOCOL_STORE_COLUMN_PROTOCOL,
46 PIDGIN_PROTOCOL_STORE_COLUMN_NAME, 59 PIDGIN_PROTOCOL_STORE_COLUMN_NAME,
47 PIDGIN_PROTOCOL_STORE_COLUMN_ICON, 60 PIDGIN_PROTOCOL_STORE_COLUMN_ICON,
61 /*< private >*/
48 PIDGIN_PROTOCOL_STORE_N_COLUMNS, 62 PIDGIN_PROTOCOL_STORE_N_COLUMNS,
49 } PidginProtocolStoreColumn; 63 } PidginProtocolStoreColumn;
50 64
51 G_BEGIN_DECLS 65 G_BEGIN_DECLS
52 66

mercurial