lyx_mirror/src/frontends/controllers/ControlWrap.h
André Pönitz b6a33822e5 Simpler structure, 2-3s faster compiles. Not that it matters much...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20361 a592a061-630c-0410-9148-cb99ea01b6c8
2007-09-19 21:10:00 +00:00

47 lines
899 B
C++

// -*- C++ -*-
/**
* \file ControlWrap.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Dekel Tsur
*
* Full author contact details are available in file CREDITS.
*/
#ifndef CONTROLWRAP_H
#define CONTROLWRAP_H
#include "Dialog.h"
#include "insets/InsetWrap.h"
namespace lyx {
namespace frontend {
class ControlWrap : public Controller
{
public:
///
ControlWrap(Dialog &);
///
virtual bool initialiseParams(std::string const & data);
/// clean-up on hide.
virtual void clearParams();
/// clean-up on hide.
virtual void dispatchParams();
///
virtual bool isBufferDependent() const { return true; }
///
InsetWrapParams & params() { return params_; }
///
InsetWrapParams const & params() const { return params_; }
private:
///
InsetWrapParams params_;
};
} // namespace frontend
} // namespace lyx
#endif