summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/attachdiag.h
blob: bce5b4b04cf03e229ebda51304f9de9035c66b24 (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(QWidget *parent);

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