2001-08-19 13:25:15 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QTabularCreate.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-19 13:25:15 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTABULARCREATE_H
|
|
|
|
#define QTABULARCREATE_H
|
|
|
|
|
|
|
|
|
2001-08-28 04:17:49 +00:00
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlTabularCreate;
|
2001-08-19 13:25:15 +00:00
|
|
|
class QTabularCreateDialog;
|
2002-08-12 14:28:43 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2001-08-28 04:17:49 +00:00
|
|
|
///
|
|
|
|
class QTabularCreate
|
2002-03-21 21:21:28 +00:00
|
|
|
: public Qt2CB<ControlTabularCreate, Qt2DB<QTabularCreateDialog> >
|
2001-08-28 04:17:49 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QTabularCreateDialog;
|
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
QTabularCreate();
|
2001-08-19 13:25:15 +00:00
|
|
|
private:
|
2001-08-28 04:17:49 +00:00
|
|
|
/// Apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// update
|
2002-10-20 01:48:28 +00:00
|
|
|
virtual void update_contents() {}
|
2001-08-28 04:17:49 +00:00
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
2001-08-19 13:25:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTABULARCREATE_H
|