summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/attachdiag.h
blob: c673cfccfaf608c836abfe64a85074d382c3b4f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef ATTACHDIAG_H
#define ATTACHDIAG_H

#include <qdialog.h>

#include <qpe/applnk.h>

class AttachDiag : public QDialog
{
	Q_OBJECT

public:
	static DocLnk getFile();

protected:
	AttachDiag(QWidget *parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0);

private slots:
	void fileSelected(const DocLnk &);

private:
	DocLnk currentFile;

};

#endif