summaryrefslogtreecommitdiff
path: root/noncore/net/mailit/addatt.h
Unidiff
Diffstat (limited to 'noncore/net/mailit/addatt.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mailit/addatt.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/noncore/net/mailit/addatt.h b/noncore/net/mailit/addatt.h
new file mode 100644
index 0000000..867c905
--- a/dev/null
+++ b/noncore/net/mailit/addatt.h
@@ -0,0 +1,70 @@
1/**********************************************************************
2** Copyright (C) 2001 Trolltech AS. All rights reserved.
3**
4** This file is part of Qt Palmtop Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20#ifndef ADDATT_H
21#define ADDATT_H
22
23#include <qdialog.h>
24#include <qlistview.h>
25#include <qpushbutton.h>
26#include <qpopupmenu.h>
27#include <qstring.h>
28#include <qfileinfo.h>
29#include <qstringlist.h>
30
31class FileItem : public QListViewItem
32{
33public:
34 FileItem(QListView *parent, QFileInfo fileInfo, QString fileType);
35 QFileInfo getFileInfo();
36 QString getFileType();
37
38private:
39 QFileInfo file;
40 QString type;
41};
42
43class AddAtt : public QDialog
44{
45 Q_OBJECT
46
47public:
48 AddAtt(QWidget *parent = 0, const char *name = 0, WFlags f = 0);
49 QStringList returnAttatchedFiles();
50 QStringList returnFileTypes();
51 void getFiles();
52 void clear();
53
54public slots:
55 void fileCategorySelected(int);
56 void addAttatchment();
57 void removeAttatchment();
58 void reject();
59 void accept();
60
61private:
62 FileItem *item;
63 QListView *listView, *attView;
64 QPushButton *fileCategoryButton, *attatchButton, *removeButton;
65 QPopupMenu *fileCategories;
66 bool modified;
67 QFileInfo *fi;
68};
69
70#endif