2001-06-13 14:33:31 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
2003-02-27 15:57:11 +00:00
|
|
|
|
* \file FormTabularCreate.h
|
2002-03-11 17:00:41 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2002-09-05 15:14:23 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-11 17:00:41 +00:00
|
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2000-10-24 13:13:59 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef FORMTABULARCREATE_H
|
|
|
|
|
#define FORMTABULARCREATE_H
|
|
|
|
|
|
2003-03-09 19:34:46 +00:00
|
|
|
|
#include "FormDialogView.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
|
class ControlTabularCreate;
|
2002-06-13 13:43:51 +00:00
|
|
|
|
struct FD_tabular_create;
|
2000-10-24 13:13:59 +00:00
|
|
|
|
|
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 :
|
2003-03-09 19:34:46 +00:00
|
|
|
|
public FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
|
2000-10-24 13:13:59 +00:00
|
|
|
|
public:
|
2002-03-21 21:21:28 +00:00
|
|
|
|
///
|
2003-03-09 19:34:46 +00:00
|
|
|
|
FormTabularCreate(Dialog &);
|
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
|
|
|
|
};
|
|
|
|
|
|
2001-03-26 14:33:58 +00:00
|
|
|
|
#endif // FORMTABULARCREATE
|