1 /*                    Configure dialog UI                                 */
2 /*             Copyright (C) 2001-2003 William Tompkins                   */
3 
4 /* This plugin is free software, distributed under the GNU General Public */
5 /* License.                                                               */
6 /* Please see the file "COPYING" distributed with this source code        */
7 /* for more details                                                       */
8 /*                                                                        */
9 /*                                                                        */
10 /*    This software is distributed in the hope that it will be useful,    */
11 /*   but WITHOUT ANY WARRANTY; without even the implied warranty of       */
12 /*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    */
13 /*   General Public License for more details.                             */
14 
15 /*   To compile and use:                                                  */
16 /*     See INSTALL file.                                                  */
17 
18 #ifndef CONFIG_UI_H
19 #define CONFIG_UI_H
20 
21 #include <plugin.h>
22 
23 extern GtkWidget* PE_get_config_frame(PurplePlugin *plugin);
24 extern void PE_config_cancel_regen(void);
25 extern void PE_config_update();
callboost::fusion::detail::replacer_helper26 extern void PE_config_unload(void);
27 extern void PE_config_show_invalid_keypath();
28 extern void PE_config_show_nonabsolute_keypath();
29 #endif
30