2001-08-19 13:25:15 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QTabularCreate.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTABULARCREATE_H
|
|
|
|
#define QTABULARCREATE_H
|
|
|
|
|
2001-08-28 04:17:49 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2001-08-28 04:17:49 +00:00
|
|
|
#include "Qt2Base.h"
|
|
|
|
|
|
|
|
class ControlTabularCreate;
|
2001-08-19 13:25:15 +00:00
|
|
|
class QTabularCreateDialog;
|
|
|
|
|
2001-08-28 04:17:49 +00:00
|
|
|
///
|
|
|
|
class QTabularCreate
|
|
|
|
: public Qt2CB<ControlTabularCreate, Qt2DB<QTabularCreateDialog> >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
friend class QTabularCreateDialog;
|
|
|
|
///
|
|
|
|
QTabularCreate(ControlTabularCreate &);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
|
|
|
private:
|
2001-08-28 04:17:49 +00:00
|
|
|
/// Apply changes
|
|
|
|
virtual void apply();
|
|
|
|
/// update
|
|
|
|
virtual void update_contents() {};
|
|
|
|
/// build the dialog
|
|
|
|
virtual void build_dialog();
|
2001-08-19 13:25:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTABULARCREATE_H
|