2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2002-01-29 10:05:09 +00:00
|
|
|
/**
|
|
|
|
* \file QShowFileDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-01-29 10:05:09 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-01-29 10:05:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QSHOWFILEDIALOG_H
|
|
|
|
#define QSHOWFILEDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-29 10:05:09 +00:00
|
|
|
#include "ui/QShowFileDialogBase.h"
|
|
|
|
|
|
|
|
class QShowFile;
|
|
|
|
|
|
|
|
class QShowFileDialog : public QShowFileDialogBase
|
|
|
|
{ Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QShowFileDialog(QShowFile * form);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QShowFile * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QSHOWFILEDIALOG_H
|