2000-10-24 13:13:59 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-03-26 14:33:58 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-10-24 13:13:59 +00:00
|
|
|
*
|
2001-03-26 14:33:58 +00:00
|
|
|
*======================================================
|
|
|
|
*
|
|
|
|
* \file FormTabularCreate.h
|
2000-10-24 13:13:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMTABULARCREATE_H
|
|
|
|
#define FORMTABULARCREATE_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
#include "FormBase.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
class ControlTabularCreate;
|
2000-10-24 13:13:59 +00:00
|
|
|
struct FD_form_tabular_create;
|
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
/** This class provides an XForms implementation of the TabularCreate
|
2000-10-24 13:13:59 +00:00
|
|
|
Dialog.
|
|
|
|
*/
|
2001-03-26 14:33:58 +00:00
|
|
|
class FormTabularCreate :
|
|
|
|
public FormCB<ControlTabularCreate, FormDB<FD_form_tabular_create> > {
|
2000-10-24 13:13:59 +00:00
|
|
|
public:
|
2001-03-26 14:33:58 +00:00
|
|
|
///
|
|
|
|
FormTabularCreate(ControlTabularCreate &);
|
2000-10-24 13:13:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// Apply from dialog
|
|
|
|
virtual void apply();
|
|
|
|
/// Build the dialog
|
|
|
|
virtual void build();
|
2001-03-26 14:33:58 +00:00
|
|
|
/// not needed
|
|
|
|
virtual void update() {};
|
2000-10-24 13:13:59 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
FD_form_tabular_create * build_tabular_create();
|
|
|
|
};
|
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
#endif // FORMTABULARCREATE
|