Mercurial > pidgin
annotate libgaim/pluginpref.h @ 15113:4a8c368df4ea
[gaim-migrate @ 17899]
Some touchups:
* If one of the parallel connection attempts fails immediately (i.e.
does not time out) then don't cancel the other one.
* Make sure we don't continue on to step 2 of the peer connection
process after we kick off the parallel gaim_proxy_connects(). It
looks like this would happen most of the time, because the
connect_timeout_timer would be added for the verified ip, so it
would NOT be added for the client ip, and so we wouldn't hit the
"return" call because it happens to be in the same block as the
second gaim_timeout_add() call.
* Add the connection timeout timer even if the gaim_proxy_connect() to
the verified ip returns NULL for some crazy reason.
I didn't actually test any of this. I should probably do that when
I get home.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Wed, 06 Dec 2006 01:29:59 +0000 |
| parents | e68e20e6a653 |
| children |
| rev | line source |
|---|---|
| 14192 | 1 /** |
| 2 * @file pluginpref.h Plugin Preferences API | |
| 3 * @ingroup core | |
| 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 #ifndef _GAIM_PLUGINPREF_H_ | |
| 27 #define _GAIM_PLUGINPREF_H_ | |
| 28 | |
| 29 typedef struct _GaimPluginPrefFrame GaimPluginPrefFrame; | |
| 30 typedef struct _GaimPluginPref GaimPluginPref; | |
| 31 | |
|
14720
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
32 /** |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
33 * String format for preferences. |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
34 */ |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
35 typedef enum |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
36 { |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
37 GAIM_STRING_FORMAT_TYPE_NONE = 0, |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
38 GAIM_STRING_FORMAT_TYPE_MULTILINE = 1 << 0, |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
39 GAIM_STRING_FORMAT_TYPE_HTML = 1 << 1 |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
40 } GaimStringFormatType; |
|
e68e20e6a653
[gaim-migrate @ 17474]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14192
diff
changeset
|
41 |
| 14192 | 42 typedef enum { |
| 43 GAIM_PLUGIN_PREF_NONE, | |
| 44 GAIM_PLUGIN_PREF_CHOICE, | |
| 45 GAIM_PLUGIN_PREF_INFO, /**< no-value label */ | |
| 46 GAIM_PLUGIN_PREF_STRING_FORMAT | |
| 47 } GaimPluginPrefType; | |
| 48 | |
| 49 #include <glib.h> | |
| 50 #include "prefs.h" | |
| 51 | |
| 52 #ifdef __cplusplus | |
| 53 extern "C" { | |
| 54 #endif | |
| 55 | |
| 56 /**************************************************************************/ | |
| 57 /** @name Plugin Preference API */ | |
| 58 /**************************************************************************/ | |
| 59 /*@{*/ | |
| 60 | |
| 61 /** | |
| 62 * Create a new plugin preference frame | |
| 63 * | |
| 64 * @return a new GaimPluginPrefFrame | |
| 65 */ | |
| 66 GaimPluginPrefFrame *gaim_plugin_pref_frame_new(void); | |
| 67 | |
| 68 /** | |
| 69 * Destroy a plugin preference frame | |
| 70 * | |
| 71 * @param frame The plugin frame to destroy | |
| 72 */ | |
| 73 void gaim_plugin_pref_frame_destroy(GaimPluginPrefFrame *frame); | |
| 74 | |
| 75 /** | |
| 76 * Adds a plugin preference to a plugin preference frame | |
| 77 * | |
| 78 * @param frame The plugin frame to add the preference to | |
| 79 * @param pref The preference to add to the frame | |
| 80 */ | |
| 81 void gaim_plugin_pref_frame_add(GaimPluginPrefFrame *frame, GaimPluginPref *pref); | |
| 82 | |
| 83 /** | |
| 84 * Get the plugin preferences from a plugin preference frame | |
| 85 * | |
| 86 * @param frame The plugin frame to get the plugin preferences from | |
| 87 * @return a GList of plugin preferences | |
| 88 */ | |
| 89 GList *gaim_plugin_pref_frame_get_prefs(GaimPluginPrefFrame *frame); | |
| 90 | |
| 91 /** | |
| 92 * Create a new plugin preference | |
| 93 * | |
| 94 * @return a new GaimPluginPref | |
| 95 */ | |
| 96 GaimPluginPref *gaim_plugin_pref_new(void); | |
| 97 | |
| 98 /** | |
| 99 * Create a new plugin preference with name | |
| 100 * | |
| 101 * @param name The name of the pref | |
| 102 * @return a new GaimPluginPref | |
| 103 */ | |
| 104 GaimPluginPref *gaim_plugin_pref_new_with_name(const char *name); | |
| 105 | |
| 106 /** | |
| 107 * Create a new plugin preference with label | |
| 108 * | |
| 109 * @param label The label to be displayed | |
| 110 * @return a new GaimPluginPref | |
| 111 */ | |
| 112 GaimPluginPref *gaim_plugin_pref_new_with_label(const char *label); | |
| 113 | |
| 114 /** | |
| 115 * Create a new plugin preference with name and label | |
| 116 * | |
| 117 * @param name The name of the pref | |
| 118 * @param label The label to be displayed | |
| 119 * @return a new GaimPluginPref | |
| 120 */ | |
| 121 GaimPluginPref *gaim_plugin_pref_new_with_name_and_label(const char *name, const char *label); | |
| 122 | |
| 123 /** | |
| 124 * Destroy a plugin preference | |
| 125 * | |
| 126 * @param pref The preference to destroy | |
| 127 */ | |
| 128 void gaim_plugin_pref_destroy(GaimPluginPref *pref); | |
| 129 | |
| 130 /** | |
| 131 * Set a plugin pref name | |
| 132 * | |
| 133 * @param pref The plugin pref | |
| 134 * @param name The name of the pref | |
| 135 */ | |
| 136 void gaim_plugin_pref_set_name(GaimPluginPref *pref, const char *name); | |
| 137 | |
| 138 /** | |
| 139 * Get a plugin pref name | |
| 140 * | |
| 141 * @param pref The plugin pref | |
| 142 * @return The name of the pref | |
| 143 */ | |
| 144 const char *gaim_plugin_pref_get_name(GaimPluginPref *pref); | |
| 145 | |
| 146 /** | |
| 147 * Set a plugin pref label | |
| 148 * | |
| 149 * @param pref The plugin pref | |
| 150 * @param label The label for the plugin pref | |
| 151 */ | |
| 152 void gaim_plugin_pref_set_label(GaimPluginPref *pref, const char *label); | |
| 153 | |
| 154 /** | |
| 155 * Get a plugin pref label | |
| 156 * | |
| 157 * @param pref The plugin pref | |
| 158 * @return The label for the plugin pref | |
| 159 */ | |
| 160 const char *gaim_plugin_pref_get_label(GaimPluginPref *pref); | |
| 161 | |
| 162 /** | |
| 163 * Set the bounds for an integer pref | |
| 164 * | |
| 165 * @param pref The plugin pref | |
| 166 * @param min The min value | |
| 167 * @param max The max value | |
| 168 */ | |
| 169 void gaim_plugin_pref_set_bounds(GaimPluginPref *pref, int min, int max); | |
| 170 | |
| 171 /** | |
| 172 * Get the bounds for an integer pref | |
| 173 * | |
| 174 * @param pref The plugin pref | |
| 175 * @param min The min value | |
| 176 * @param max The max value | |
| 177 */ | |
| 178 void gaim_plugin_pref_get_bounds(GaimPluginPref *pref, int *min, int *max); | |
| 179 | |
| 180 /** | |
| 181 * Set the type of a plugin pref | |
| 182 * | |
| 183 * @param pref The plugin pref | |
| 184 * @param type The type | |
| 185 */ | |
| 186 void gaim_plugin_pref_set_type(GaimPluginPref *pref, GaimPluginPrefType type); | |
| 187 | |
| 188 /** | |
| 189 * Get the type of a plugin pref | |
| 190 * | |
| 191 * @param pref The plugin pref | |
| 192 * @return The type | |
| 193 */ | |
| 194 GaimPluginPrefType gaim_plugin_pref_get_type(GaimPluginPref *pref); | |
| 195 | |
| 196 /** | |
| 197 * Set the choices for a choices plugin pref | |
| 198 * | |
| 199 * @param pref The plugin pref | |
| 200 * @param label The label for the choice | |
| 201 * @param choice A gpointer of the choice | |
| 202 */ | |
| 203 void gaim_plugin_pref_add_choice(GaimPluginPref *pref, const char *label, gpointer choice); | |
| 204 | |
| 205 /** | |
| 206 * Get the choices for a choices plugin pref | |
| 207 * | |
| 208 * @param pref The plugin pref | |
| 209 * @return GList of the choices | |
| 210 */ | |
| 211 GList *gaim_plugin_pref_get_choices(GaimPluginPref *pref); | |
| 212 | |
| 213 /** | |
| 214 * Set the max length for a string plugin pref | |
| 215 * | |
| 216 * @param pref The plugin pref | |
| 217 * @param max_length The max length of the string | |
| 218 */ | |
| 219 void gaim_plugin_pref_set_max_length(GaimPluginPref *pref, unsigned int max_length); | |
| 220 | |
| 221 /** | |
| 222 * Get the max length for a string plugin pref | |
| 223 * | |
| 224 * @param pref The plugin pref | |
| 225 * @return the max length | |
| 226 */ | |
| 227 unsigned int gaim_plugin_pref_get_max_length(GaimPluginPref *pref); | |
| 228 | |
| 229 /** | |
| 230 * Sets the masking of a string plugin pref | |
| 231 * | |
| 232 * @param pref The plugin pref | |
| 233 * @param mask The value to set | |
| 234 */ | |
| 235 void gaim_plugin_pref_set_masked(GaimPluginPref *pref, gboolean mask); | |
| 236 | |
| 237 /** | |
| 238 * Gets the masking of a string plugin pref | |
| 239 * | |
| 240 * @param pref The plugin pref | |
| 241 * @return The masking | |
| 242 */ | |
| 243 gboolean gaim_plugin_pref_get_masked(GaimPluginPref *pref); | |
| 244 | |
| 245 /** | |
| 246 * Sets the format type for a formattable-string plugin pref. You need to set the | |
| 247 * pref type to GAIM_PLUGIN_PREF_STRING_FORMAT first before setting the format. | |
| 248 * | |
| 249 * @param pref The plugin pref | |
| 250 * @param format The format of the string | |
| 251 */ | |
| 252 void gaim_plugin_pref_set_format_type(GaimPluginPref *pref, GaimStringFormatType format); | |
| 253 | |
| 254 /** | |
| 255 * Gets the format type of the formattable-string plugin pref. | |
| 256 * | |
| 257 * @param pref The plugin pref | |
| 258 * @return The format of the pref | |
| 259 */ | |
| 260 GaimStringFormatType gaim_plugin_pref_get_format_type(GaimPluginPref *pref); | |
| 261 | |
| 262 /*@}*/ | |
| 263 | |
| 264 #ifdef __cplusplus | |
| 265 } | |
| 266 #endif | |
| 267 | |
| 268 #endif /* _GAIM_PLUGINPREF_H_ */ |
