kmail

archivefolderdialog.h
1 /* Copyright 2009 Klarälvdalens Datakonsult AB
2 
3  This program is free software; you can redistribute it and/or
4  modify it under the terms of the GNU General Public License as
5  published by the Free Software Foundation; either version 2 of
6  the License or (at your option) version 3 or any later version
7  accepted by the membership of KDE e.V. (or its successor approved
8  by the membership of KDE e.V.), which shall act as a proxy
9  defined in Section 14 of version 3 of the license.
10 
11  This program 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
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19 #ifndef ARCHIVEFOLDERDIALOG_H
20 #define ARCHIVEFOLDERDIALOG_H
21 
22 #include <kdialogbase.h>
23 
24 class TQCheckBox;
25 class KURLRequester;
26 class KComboBox;
27 class KMFolder;
28 
29 namespace KMail
30 {
31 class FolderRequester;
32 
33 class ArchiveFolderDialog : public KDialogBase
34 {
35  TQ_OBJECT
36 
37 
38  public:
39 
40  ArchiveFolderDialog( TQWidget *parent = 0 );
41  void setFolder( KMFolder *defaultFolder );
42 
43  protected slots:
44 
45  void slotFixFileExtension();
46  void slotFolderChanged( KMFolder * );
47  void slotUrlChanged( const TQString & );
48 
50  virtual void slotOk();
51 
52  private:
53 
54  TQWidget *mParentWidget;
55  TQCheckBox *mDeleteCheckBox;
56  FolderRequester *mFolderRequester;
57  KComboBox *mFormatComboBox;
58  KURLRequester *mUrlRequester;
59 };
60 
61 }
62 
63 #endif
Mail folder.
Definition: kmfolder.h:69
folderdiaquotatab.h
Definition: aboutdata.cpp:40