2002-01-29 10:05:09 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QShowFile.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QSHOWFILE_H
|
|
|
|
#define QSHOWFILE_H
|
|
|
|
|
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlShowFile;
|
|
|
|
class QShowFileDialog;
|
2002-07-11 01:01:38 +00:00
|
|
|
class Dialogs;
|
2002-01-29 10:05:09 +00:00
|
|
|
|
|
|
|
class QShowFile :
|
2002-03-21 21:21:28 +00:00
|
|
|
public Qt2CB<ControlShowFile, Qt2DB<QShowFileDialog> >
|
2002-01-29 10:05:09 +00:00
|
|
|
{
|
|
|
|
friend class QShowFileDialog;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
|
|
public:
|
2002-07-11 01:01:38 +00:00
|
|
|
QShowFile(ControlShowFile &, Dialogs &);
|
2002-01-29 10:05:09 +00:00
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
private:
|
2002-01-29 10:05:09 +00:00
|
|
|
/// Apply changes
|
|
|
|
virtual void apply() {};
|
|
|
|
/// update
|
|
|
|
virtual void update_contents();
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QSHOWFILE_H
|