summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mail2/attachdiag.h
blob: 88686bc8306d731301e5adc9acbf3df2123d420c (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
#ifndef ATTACHDIAG_H
#define ATTACHDIAG_H

#include <qdialog.h>

class DocLnk;
class FileSelector;

class AttachDiag : public QDialog
{
	Q_OBJECT

public:
	DocLnk selectedFile();
	static DocLnk getFile(QWidget *parent);

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

private:
	FileSelector *_fileSelector;

};

#endif