comparison libpurple/pluginpref.h @ 20877:7dfb2ff2e75c

merge of '03251b6e4e7a7bf736ba0023dfe31a49e89d0f42' and 'd42511319051bcfa8adb3ed8e3f11a26cabc43f4'
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 10 Oct 2007 13:56:54 +0000
parents 4511d15a8f80
children 59c9c04879af
comparison
equal deleted inserted replaced
20872:71d0989b7c25 20877:7dfb2ff2e75c
33 /** 33 /**
34 * String format for preferences. 34 * String format for preferences.
35 */ 35 */
36 typedef enum 36 typedef enum
37 { 37 {
38 PURPLE_STRING_FORMAT_TYPE_NONE = 0, 38 PURPLE_STRING_FORMAT_TYPE_NONE = 0, /**< The string is plain text. */
39 PURPLE_STRING_FORMAT_TYPE_MULTILINE = 1 << 0, 39 PURPLE_STRING_FORMAT_TYPE_MULTILINE = 1 << 0, /**< The string can have newlines. */
40 PURPLE_STRING_FORMAT_TYPE_HTML = 1 << 1 40 PURPLE_STRING_FORMAT_TYPE_HTML = 1 << 1 /**< The string can be in HTML. */
41 } PurpleStringFormatType; 41 } PurpleStringFormatType;
42 42
43 typedef enum { 43 typedef enum {
44 PURPLE_PLUGIN_PREF_NONE, 44 PURPLE_PLUGIN_PREF_NONE,
45 PURPLE_PLUGIN_PREF_CHOICE, 45 PURPLE_PLUGIN_PREF_CHOICE,
46 PURPLE_PLUGIN_PREF_INFO, /**< no-value label */ 46 PURPLE_PLUGIN_PREF_INFO, /**< no-value label */
47 PURPLE_PLUGIN_PREF_STRING_FORMAT 47 PURPLE_PLUGIN_PREF_STRING_FORMAT /**< The preference has a string value. */
48 } PurplePluginPrefType; 48 } PurplePluginPrefType;
49 49
50 #include <glib.h> 50 #include <glib.h>
51 #include "prefs.h" 51 #include "prefs.h"
52 52