~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to kopete/identity/identitydialog.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
ImportĀ upstreamĀ versionĀ 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    identitydialog.h  -  Kopete identity configuration dialog
 
3
 
 
4
    Copyright (c) 2007      by Gustavo Pichorim Boiko <gustavo.boiko@kdemail.net>
 
5
 
 
6
    Kopete    (c) 2003-2007 by the Kopete developers  <kopete-devel@kde.org>
 
7
 
 
8
    *************************************************************************
 
9
    *                                                                       *
 
10
    * This program is free software; you can redistribute it and/or modify  *
 
11
    * it under the terms of the GNU General Public License as published by  *
 
12
    * the Free Software Foundation; either version 2 of the License, or     *
 
13
    * (at your option) any later version.                                   *
 
14
    *                                                                       *
 
15
    *************************************************************************
 
16
*/
 
17
 
 
18
#ifndef IDENTITYDIALOG_H
 
19
#define IDENTITYDIALOG_H
 
20
 
 
21
#include <kopeteinfodialog.h>
 
22
#include <kopete_export.h>
 
23
 
 
24
namespace Kopete
 
25
{
 
26
class Identity;
 
27
}
 
28
 
 
29
class KOPETE_IDENTITY_EXPORT IdentityDialog : public Kopete::UI::InfoDialog
 
30
{
 
31
        Q_OBJECT
 
32
public:
 
33
        explicit IdentityDialog(Kopete::Identity *identity, QWidget *parent = 0);
 
34
        ~IdentityDialog();
 
35
 
 
36
protected slots:
 
37
        void load();
 
38
        virtual void slotSave();
 
39
 
 
40
private slots:
 
41
        void slotSelectPhoto();
 
42
        void slotClearPhoto();
 
43
 
 
44
protected:
 
45
        void setPhoto(QString path);
 
46
 
 
47
private:
 
48
        class Private;
 
49
        Private * const d;
 
50
 
 
51
};
 
52
 
 
53
 
 
54
#endif
 
55
 
 
56
// vim: set noet ts=4 sts=4 sw=4: