summaryrefslogtreecommitdiffstats
path: root/src/gui/sendfileform.h
blob: c881b6818f052a12693fb7c47f37c339646a8f48 (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
28
29
30
31
32
33
#ifndef SENDFILEFORM_H
#define SENDFILEFORM_H
#include "ui_sendfileform.h"

class SendFileForm : public QDialog, public Ui::SendFileForm
{
	Q_OBJECT

public:
    SendFileForm(QWidget* parent = 0);
	~SendFileForm();

public slots:
	virtual void signalSelectedInfo();
	virtual void chooseFile();
	virtual void setFilename();

signals:
	void selected(const QString &filename, const QString &subject);

protected slots:
	virtual void languageChange();

private:
	QDialog *_chooseFileDialog;

	void init();
	void destroy();

};


#endif