comparison src/prefs.h @ 12712:8ae981f2c9cb

[gaim-migrate @ 15056] SF Patch #1395207 from Sadrul "Gaim currently doesn't allow to have formatted/multiline string as a preference for core-plugins. It'd be great if core plugins could have formatted strings for preference (ie. have imhtml+toolbar for the preference in the Plugin-preference dialog) without actually having to worry about gtk-codes." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 04 Jan 2006 04:14:02 +0000
parents fc464a0abccc
children ff267281e882
comparison
equal deleted inserted replaced
12711:145f76e74a9f 12712:8ae981f2c9cb
25 */ 25 */
26 #ifndef _GAIM_PREFS_H_ 26 #ifndef _GAIM_PREFS_H_
27 #define _GAIM_PREFS_H_ 27 #define _GAIM_PREFS_H_
28 28
29 #include <glib.h> 29 #include <glib.h>
30
31 /**
32 * String format for preferences.
33 */
34 typedef enum
35 {
36 GAIM_STRING_FORMAT_TYPE_NONE = 0,
37 GAIM_STRING_FORMAT_TYPE_MULTILINE = 1 << 0,
38 GAIM_STRING_FORMAT_TYPE_HTML = 1 << 1
39 } GaimStringFormatType;
30 40
31 /** 41 /**
32 * Pref data types. 42 * Pref data types.
33 */ 43 */
34 typedef enum _GaimPrefType 44 typedef enum _GaimPrefType