lyx_mirror/src/frontends/controllers/ControlTabularCreate.h
Angus Leeming 6ca7a18ad9 Implemented controller-view split for TabularCreate popup.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1827 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-26 14:33:58 +00:00

45 lines
864 B
C++

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2001 The LyX Team.
*
*======================================================
*
* \file ControlTabularCreate.h
*/
#ifndef CONTROLTABULARCREATE_H
#define CONTROLTABULARCREATE_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ControlDialogs.h"
/** A controller for the TabularCreate Dialog.
*/
class ControlTabularCreate : public ControlDialog<ControlConnectBD> {
public:
///
ControlTabularCreate(LyXView &, Dialogs &);
///
string & params() const;
private:
/// Apply from dialog
virtual void apply();
/// set the params before show or update
virtual void setParams();
/// clean-up on hide.
virtual void clearParams();
///
string * params_;
};
#endif // CONTROLTABULARCREATE_H