one entry for korganizer in khelpcenters navigation tree is enough
[kdepim.git] / kmailcvt / kmailcvt.h
blob94a93a9da7571bd3d6b82e92c371f4294b896421
1 /***************************************************************************
2 kmailcvt.h - description
3 ***************************************************************************/
5 /***************************************************************************
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 ***************************************************************************/
14 #ifndef KMAILCVT_H
15 #define KMAILCVT_H
17 #include <kapplication.h>
18 #include <KAssistantDialog>
19 #include <Akonadi/Collection>
21 class KPageWidgetItem;
22 class KSelFilterPage;
23 class KImportPage;
26 /** KMailCVT is the base class of the project */
27 class KMailCVT : public KAssistantDialog {
28 Q_OBJECT
29 public:
30 KMailCVT(QWidget* parent=0);
31 ~KMailCVT();
33 virtual void next();
34 virtual void reject();
35 public slots:
36 void help();
38 private slots:
39 void collectionChanged( const Akonadi::Collection& selectedCollection );
40 private:
41 KPageWidgetItem* page1;
42 KPageWidgetItem* page2;
43 KSelFilterPage *selfilterpage;
44 KImportPage *importpage;
48 #endif