mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-29 12:48:33 +00:00
c293be56bd
In particular, the directory frontends/qt4 is renamed to frontends/qt. Many configurations file have to be updated. All mentions of qt4 in the source have been audited, and changed to qt if necessary. The only part that has not been updated is the CMake build system.
47 lines
788 B
C++
47 lines
788 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 "FileDialog.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
class QToolButton;
|
|
|
|
namespace lyx {
|
|
|
|
class LyXFileDialog : public QFileDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LyXFileDialog(QString const & title,
|
|
QString const & path,
|
|
QStringList const & filters,
|
|
FileDialog::Button const & b1,
|
|
FileDialog::Button const & b2);
|
|
|
|
public Q_SLOTS:
|
|
void button1Clicked();
|
|
void button2Clicked();
|
|
|
|
private:
|
|
QString b1_dir_;
|
|
QString b2_dir_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
#endif // LYXFILEDIALOG_H
|