2001-08-29 02:08:04 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QMinipage.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.
|
2001-08-29 02:08:04 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-29 02:08:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QMINIPAGE_H
|
|
|
|
#define QMINIPAGE_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlMinipage;
|
|
|
|
class QMinipageDialog;
|
|
|
|
|
|
|
|
///
|
|
|
|
class QMinipage
|
2002-03-21 21:21:28 +00:00
|
|
|
: public Qt2CB<ControlMinipage, Qt2DB<QMinipageDialog> >
|
2001-08-29 02:08:04 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QMinipageDialog;
|
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
QMinipage();
|
2001-08-29 02:08:04 +00:00
|
|
|
private:
|
|
|
|
/// Apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// update
|
|
|
|
virtual void update_contents();
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QMINIPAGE_H
|