mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 06:03:36 +00:00
9be03a87f9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21238 a592a061-630c-0410-9148-cb99ea01b6c8
49 lines
863 B
C++
49 lines
863 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file LyXFileDialog.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LYXFILEDIALOG_H
|
|
#define LYXFILEDIALOG_H
|
|
|
|
#include "frontends/FileDialog.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
class QToolButton;
|
|
|
|
namespace lyx {
|
|
|
|
namespace support { class FileFilterList; }
|
|
|
|
class LyXFileDialog : public QFileDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LyXFileDialog(docstring const & title,
|
|
docstring const & path,
|
|
support::FileFilterList const & filters,
|
|
FileDialog::Button const & b1,
|
|
FileDialog::Button const & b2);
|
|
|
|
public Q_SLOTS:
|
|
void button1Clicked();
|
|
void button2Clicked();
|
|
|
|
private:
|
|
docstring b1_dir_;
|
|
docstring b2_dir_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
#endif // LYXFILEDIALOG_H
|