00001 00007 /* pidgin 00008 * 00009 * Pidgin is the legal property of its developers, whose names are too numerous 00010 * to list here. Please refer to the COPYRIGHT file distributed with this 00011 * source distribution. 00012 * 00013 * This program is free software; you can redistribute it and/or modify 00014 * it under the terms of the GNU General Public License as published by 00015 * the Free Software Foundation; either version 2 of the License, or 00016 * (at your option) any later version. 00017 * 00018 * This program is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 * GNU General Public License for more details. 00022 * 00023 * You should have received a copy of the GNU General Public License 00024 * along with this program; if not, write to the Free Software 00025 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 00026 */ 00027 #ifndef _PIDGINACCOUNT_H_ 00028 #define _PIDGINACCOUNT_H_ 00029 00030 #include "account.h" 00031 00032 typedef enum 00033 { 00034 PIDGIN_ADD_ACCOUNT_DIALOG, 00035 PIDGIN_MODIFY_ACCOUNT_DIALOG 00036 00037 } PidginAccountDialogType; 00038 00039 00043 void pidgin_accounts_window_show(void); 00044 00048 void pidgin_accounts_window_hide(void); 00049 00056 void pidgin_account_dialog_show(PidginAccountDialogType type, 00057 PurpleAccount *account); 00058 00064 PurpleAccountUiOps *pidgin_accounts_get_ui_ops(void); 00065 00071 void *pidgin_account_get_handle(void); 00072 00076 void pidgin_account_init(void); 00077 00081 void pidgin_account_uninit(void); 00082 00083 #endif /* _PIDGINACCOUNT_H_ */