Framework for looking up contacts directly in nepomuk in addition to going through...
[kdepim.git] / libkdepim / completionordereditor.h
blobe81b03b985af09ef7457bda6e480e5016faed54b
1 /* -*- c++ -*-
2 * completionordereditor.h
4 * Copyright (c) 2004 David Faure <faure@kde.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * In addition, as a special exception, the copyright holders give
20 * permission to link the code of this program with any edition of
21 * the Qt library by Trolltech AS, Norway (or with modified versions
22 * of Qt that use the same license as Qt), and distribute linked
23 * combinations including the two. You must obey the GNU General
24 * Public License in all respects for all of the code used other than
25 * Qt. If you modify this file, you may extend this exception to
26 * your version of the file, but you are not obligated to do so. If
27 * you do not wish to do so, delete this exception statement from
28 * your version.
31 #ifndef KDEPIM_COMPLETIONORDEREDITOR_H
32 #define KDEPIM_COMPLETIONORDEREDITOR_H
34 #include "kdepim_export.h"
36 #include <KDE/KConfig>
37 #include <KDE/KDialog>
39 class KPushButton;
40 class QAbstractItemModel;
41 class QModelIndex;
42 class QTreeWidget;
44 namespace KLDAP {
45 class LdapClientSearch;
48 namespace KPIM {
50 class CompletionOrderEditor;
52 // Base class for items in the list
53 class CompletionItem
55 public:
56 virtual ~CompletionItem() {}
57 virtual QString label() const = 0;
58 virtual QIcon icon() const = 0;
59 virtual int completionWeight() const = 0;
60 virtual void setCompletionWeight( int weight ) = 0;
61 virtual void save( CompletionOrderEditor* ) = 0;
65 class KDEPIM_EXPORT CompletionOrderEditor : public KDialog
67 Q_OBJECT
69 public:
70 CompletionOrderEditor( KLDAP::LdapClientSearch* ldapSearch, QWidget* parent );
71 ~CompletionOrderEditor();
73 KConfig* configFile() { return &mConfig; }
75 Q_SIGNALS:
76 void completionOrderChanged();
78 private Q_SLOTS:
79 void rowsInserted( const QModelIndex &parent, int start, int end );
80 void slotSelectionChanged();
81 void slotMoveUp();
82 void slotMoveDown();
83 virtual void slotOk();
85 private:
86 void loadCompletionItems();
87 void addCompletionItemForIndex( const QModelIndex& );
89 KConfig mConfig;
90 QTreeWidget* mListView;
91 KPushButton* mUpButton;
92 KPushButton* mDownButton;
93 QAbstractItemModel *mCollectionModel;
94 KLDAP::LdapClientSearch *mLdapSearch;
96 bool mDirty;
99 } // namespace
101 #endif /* COMPLETIONORDEREDITOR_H */