You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/kopete/config/identity/kopeteidentityconfig.h

82 lines
2.1 KiB

/*
kopeteidentityconfig.h - Kopete identity config page
Copyright (c) 2005 by Michaël Larouche <michael.larouche@kdemail.net>
Kopete (c) 2003-2005 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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. *
* *
*************************************************************************
*/
#ifndef _IDENTITYCONFIG_H
#define _IDENTITYCONFIG_H
#include <kcmodule.h>
#include <kconfigdialog.h>
#include "kopetemetacontact.h"
namespace Kopete
{
class Contact;
}
class KopeteIdentityConfigBase;
/**
* @author Michaël Larouche <shock@shockdev.ca.tc>
*/
class KopeteIdentityConfig : public TDECModule
{
Q_OBJECT
public:
KopeteIdentityConfig(TQWidget *parent, const char *name, const TQStringList &args );
~KopeteIdentityConfig();
public slots:
virtual void save();
virtual void load();
private:
void loadIdentities();
void saveCurrentIdentity();
Kopete::MetaContact::PropertySource selectedNameSource() const;
Kopete::MetaContact::PropertySource selectedPhotoSource() const;
Kopete::Contact* selectedNameSourceContact() const;
Kopete::Contact* selectedPhotoSourceContact() const;
private slots:
void slotLoadNameSources();
void slotLoadPhotoSources();
void slotEnableAndDisableWidgets();
void slotUpdateCurrentIdentity(const TQString &selectedIdentity);
void slotNewIdentity();
void slotCopyIdentity();
void slotRenameIdentity();
void slotRemoveIdentity();
void slotChangeAddressee();
void slotChangePhoto(const TQString &photoUrl);
void slotClearPhoto();
void slotSettingsChanged();
private:
class Private;
Private *d;
};
#endif
// vim: set noet ts=4 sts=4 sw=4: