]> git.lyx.org Git - features.git/blob - src/frontends/qt/LyXFileDialog.h
Remove unused forward declarations
[features.git] / src / frontends / qt / LyXFileDialog.h
1 // -*- C++ -*-
2 /**
3  * \file LyXFileDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYXFILEDIALOG_H
13 #define LYXFILEDIALOG_H
14
15 #include "FileDialog.h"
16
17 #include <QFileDialog>
18
19 namespace lyx {
20
21 class LyXFileDialog : public QFileDialog
22 {
23         Q_OBJECT
24
25 public:
26         LyXFileDialog(QString const & title,
27                       QString const & path,
28                       QStringList const & filters,
29                       FileDialog::Button const & b1,
30                       FileDialog::Button const & b2);
31
32 public Q_SLOTS:
33         void button1Clicked();
34         void button2Clicked();
35
36 private:
37         QString b1_dir_;
38         QString b2_dir_;
39 };
40
41 } // namespace lyx
42
43
44 #endif // LYXFILEDIALOG_H