kopete/kopete
identitydialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __KOPETEIDENTITYDIALOG_H
00019 #define __KOPETEIDENTITYDIALOG_H
00020
00021 #include <kopeteinfodialog.h>
00022 #include <kopete_export.h>
00023
00024 namespace Kopete
00025 {
00026 class Identity;
00027 }
00028
00029 class KOPETE_IDENTITY_EXPORT IdentityDialog : public Kopete::UI::InfoDialog
00030 {
00031 Q_OBJECT
00032 public:
00033 explicit IdentityDialog(Kopete::Identity *identity, QWidget *parent = 0);
00034 ~IdentityDialog();
00035
00036 protected slots:
00037 void load();
00038 virtual void slotSave();
00039
00040 private slots:
00041 void slotSelectPhoto();
00042 void slotClearPhoto();
00043
00044 protected:
00045 void setPhoto(QString path);
00046
00047 private:
00048 class Private;
00049 Private *d;
00050
00051 };
00052
00053
00054 #endif
00055
00056