]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FileDialog_private.h
implement getLabelList
[lyx.git] / src / frontends / qt2 / FileDialog_private.h
1 /**
2  * \file FileDialog_private.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef FILEDIALOG_PRIVATE_H
10 #define FILEDIALOG_PRIVATE_H
11
12 #include <config.h>
13
14 #include <qfiledialog.h>
15
16 #include "LString.h"
17 #include "lyxfunc.h" 
18
19 #include "frontends/FileDialog.h"
20
21 class LyXView;
22
23 class LyXFileDialog : public QFileDialog
24 {
25   Q_OBJECT
26
27 public:
28         LyXFileDialog(LyXView * lv, kb_action a, string const & p, string const & m, string const & t);
29
30         friend class FileDialog;
31
32 public slots:
33         void done(int);
34
35 private:
36         LyXView * lv_;
37         int action_;
38 };
39
40 #endif // FILEDIALOG_PRIVATE_H