Framework for looking up contacts directly in nepomuk in addition to going through...
[kdepim.git] / messagecomposer / distributionlistdialog.h
blob0418e88795d0ccc7a7863262c395bec9a4c1592b
1 /*
2 Copyright (c) 2010 Volker Krause <vkrause@kde.org>
3 This file was part of KMail.
4 Copyright (c) 2005 Cornelius Schumacher <schumacher@kde.org>
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public License
17 along with this library; see the file COPYING.LIB. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
21 #ifndef MESSAGECOMPOSER_DISTRIBUTIONLISTDIALOG_H
22 #define MESSAGECOMPOSER_DISTRIBUTIONLISTDIALOG_H
24 #include <messagecomposer/recipient.h>
25 #include <kdialog.h>
27 class KJob;
28 class KLineEdit;
29 class QTreeWidget;
31 namespace MessageComposer {
33 class DistributionListDialog : public KDialog
35 Q_OBJECT
36 public:
37 DistributionListDialog( QWidget *parent );
39 void setRecipients( const Recipient::List & );
41 public slots:
42 void slotUser1();
43 void slotTitleChanged( const QString& );
45 private Q_SLOTS:
46 void slotDelayedSetRecipients( KJob* );
47 void slotDelayedUser1( KJob* );
48 void slotContactGroupCreateJobResult( KJob* );
50 private:
51 KLineEdit *mTitleEdit;
52 QTreeWidget *mRecipientsList;
57 #endif