summaryrefslogtreecommitdiff
path: root/core/launcher/mediadlg.h
Unidiff
Diffstat (limited to 'core/launcher/mediadlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mediadlg.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/core/launcher/mediadlg.h b/core/launcher/mediadlg.h
new file mode 100644
index 0000000..f4d552d
--- a/dev/null
+++ b/core/launcher/mediadlg.h
@@ -0,0 +1,29 @@
1#ifndef __MEDIA_DLG_H
2#define __MEDIA_DLG_H
3
4#include <qdialog.h>
5
6namespace MediumMountSetting {
7 class MediumMountWidget;
8}
9class FileSystem;
10class QVBoxLayout;
11
12class Mediadlg:public QDialog
13{
14 Q_OBJECT
15public:
16 Mediadlg(FileSystem*,QWidget *parent = 0, const char *name = 0 , bool modal = TRUE, WFlags fl = 0);
17 virtual ~Mediadlg();
18protected slots:
19 virtual void accept();
20
21protected:
22 MediumMountSetting::MediumMountWidget*m_widget;
23 FileSystem*m_fs;
24 QVBoxLayout *m_lay;
25 void init();
26};
27
28#endif
29