lyx_mirror/src/frontends/xforms/FormTabularCreate.h
Allan Rae 2748a88bbd Angus's 23rd November patch
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1242 a592a061-630c-0410-9148-cb99ea01b6c8
2000-11-28 06:46:06 +00:00

59 lines
1.2 KiB
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
*======================================================*/
/* FormTabularCreate.h
* FormTabularCreate Interface Class
*/
#ifndef FORMTABULARCREATE_H
#define FORMTABULARCREATE_H
#include "FormBase.h"
#ifdef __GNUG__
#pragma interface
#endif
class LyXView;
class Dialogs;
struct FD_form_tabular_create;
/** This class provides an XForms implementation of the FormTabularCreate
Dialog.
*/
class FormTabularCreate : public FormBaseBD {
public:
/// #FormTabularCreate x(LyXView ..., Dialogs ...);#
FormTabularCreate(LyXView *, Dialogs *);
///
~FormTabularCreate();
private:
/// Connect signals etc.
virtual void connect();
/// Apply from dialog
virtual void apply();
/// Update dialog before showing it
virtual void update();
/// Pointer to the actual instantiation of the xform's form
virtual FL_FORM * form() const;
/// Build the dialog
virtual void build();
///
FD_form_tabular_create * build_tabular_create();
/// Real GUI implementation.
FD_form_tabular_create * dialog_;
};
#endif