/* * profiles.h - deal with profiles * Copyright (C) 2001-2003 Justin Karneges * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef PROFILES_H #define PROFILES_H #include #include #include #include"im.h" #include"proxy.h" #include"common.h" class UserAccount { public: UserAccount(); ~UserAccount(); void reset(); QDomElement toXml(QDomDocument &, const QString &tagName); void fromXml(const QDomElement &); QString name; QString jid, pass, host, resource; int port, priority; bool opt_enabled, opt_ssl, opt_pass, opt_host, opt_auto, opt_keepAlive, opt_plain, opt_log, opt_reconn, opt_ignoreSSLWarnings; bool tog_offline, tog_away, tog_agents, tog_hidden, tog_self; int proxy_index; int proxy_type, proxy_port; QString proxy_host, proxy_user, proxy_pass; QString olr_string; XMPP::Roster roster; struct GroupData { bool open; int rank; }; QMap groupState; QString pgpSecretKeyID; VarList keybind; XMPP::Jid dtProxy; }; typedef QValueList UserAccountList; class UserProfile { public: UserProfile(); void reset(); bool toFile(const QString &); bool fromFile(const QString &); QString progver; UserAccountList acc; Options prefs; QRect mwgeom; QStringList recentGCList; QStringList recentBrowseList; QString lastStatusString; bool useSound; ProxyItemList proxyList; }; QString pathToProfile(const QString &); QString pathToProfileConfig(const QString &); QStringList getProfilesList(); bool profileExists(const QString &); bool profileNew(const QString &); bool profileRename(const QString &, const QString &); bool profileDelete(const QString &); #endif