2001-06-13 14:33:31 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
2002-03-11 22:47:41 +00:00
|
|
|
|
* \file xforms/FormTabularCreate.h
|
2002-03-11 17:00:41 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
|
* Copyright 1995-2001 the LyX Team
|
|
|
|
|
* Read the file COPYING
|
|
|
|
|
*
|
2002-03-21 16:59:12 +00:00
|
|
|
|
* \author J<EFBFBD>rgen Vigna, jug@sad.it
|
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;
|
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 :
|
2002-06-13 13:43:51 +00:00
|
|
|
|
public FormCB<ControlTabularCreate, FormDB<FD_tabular_create> > {
|
2000-10-24 13:13:59 +00:00
|
|
|
|
public:
|
2002-03-21 21:21:28 +00:00
|
|
|
|
///
|
2002-07-02 19:23:10 +00:00
|
|
|
|
FormTabularCreate(ControlTabularCreate &, Dialogs &);
|
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
|