summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/config/identity/kopeteidentityconfig.h
blob: 37f4e7df33be5a0c789d7959c3d002e9d68e7fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
    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 <tdecmodule.h>
#include <tdeconfigdialog.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: