summaryrefslogtreecommitdiffabout
path: root/kabc/distributionlisteditor.h
authorzautrix <zautrix>2004-06-26 19:01:18 (UTC)
committer zautrix <zautrix>2004-06-26 19:01:18 (UTC)
commitb9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (unidiff)
tree2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /kabc/distributionlisteditor.h
downloadkdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz
kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2
Initial revision
Diffstat (limited to 'kabc/distributionlisteditor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/distributionlisteditor.h86
1 files changed, 86 insertions, 0 deletions
diff --git a/kabc/distributionlisteditor.h b/kabc/distributionlisteditor.h
new file mode 100644
index 0000000..e0b4221
--- a/dev/null
+++ b/kabc/distributionlisteditor.h
@@ -0,0 +1,86 @@
1/*
2 This file is part of libkabc.
3 Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20#ifndef KABC_DISTRIBUTIONLISTEDITOR_H
21#define KABC_DISTRIBUTIONLISTEDITOR_H
22
23#include <qwidget.h>
24
25#include <kdialogbase.h>
26
27class QListView;
28class QComboBox;
29class QButtonGroup;
30
31namespace KABC {
32
33class AddressBook;
34class DistributionListManager;
35
36class EmailSelectDialog : public KDialogBase
37{
38 public:
39 EmailSelectDialog( const QStringList &emails, const QString &current,
40 QWidget *parent );
41
42 QString selected();
43
44 static QString getEmail( const QStringList &emails, const QString &current,
45 QWidget *parent );
46
47 private:
48 QButtonGroup *mButtonGroup;
49};
50
51/**
52 @obsolete
53*/
54class DistributionListEditor : public QWidget
55{
56 Q_OBJECT
57 public:
58 DistributionListEditor( AddressBook *, QWidget *parent );
59 virtual ~DistributionListEditor();
60
61 private slots:
62 void newList();
63 void removeList();
64 void addEntry();
65 void removeEntry();
66 void changeEmail();
67 void updateEntryView();
68 void updateAddresseeView();
69 void updateNameCombo();
70 void slotSelectionEntryViewChanged();
71 void slotSelectionAddresseeViewChanged();
72
73 private:
74 QComboBox *mNameCombo;
75 QListView *mEntryView;
76 QListView *mAddresseeView;
77
78 AddressBook *mAddressBook;
79 DistributionListManager *mManager;
80 QPushButton *newButton, *removeButton;
81 QPushButton *changeEmailButton,*removeEntryButton,*addEntryButton;
82};
83
84}
85
86#endif