]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlMinipage.h
* Give Dialog::Controller::initialiseParams a bool return type.
[lyx.git] / src / frontends / controllers / ControlMinipage.h
index 0e9a9e7187a0328a47ea40571c615f3d7b99a50b..7161e63b6960afa95491b336055de9ec6956a70e 100644 (file)
@@ -1,68 +1,40 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 2001 The LyX Team.
+/**
+ * \file ControlMinipage.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *======================================================
+ * \author Jürgen Vigna
+ * \author Angus Leeming
  *
- * \file ControlMinipage.h
- * \author Juergen Vigna, jug@sad.it
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef CONTROLMINIPAGE_H
 #define CONTROLMINIPAGE_H
 
-#include <vector>
-
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "ControlInset.h"
-#include "insets/insetminipage.h" // InsetMinipage::Position
-
-/** This should be moved back into insetminipage.h and InsetMinipage should
-    contain an instance of it. */
+#include "Dialog.h"
+#include "insets/insetminipage.h"
 
-struct MinipageParams {
+class ControlMinipage : public Dialog::Controller {
+public:
        ///
-       MinipageParams();
+       ControlMinipage(Dialog &);
        ///
-       MinipageParams(InsetMinipage const &);
+       virtual bool initialiseParams(string const & data);
+       /// clean-up on hide.
+       virtual void clearParams();
+       /// clean-up on hide.
+       virtual void dispatchParams();
        ///
-       LyXLength pageWidth;
+       virtual bool isBufferDependent() const { return true; }
        ///
-       InsetMinipage::Position pos;
-};
-
-
-///
-bool operator==(MinipageParams const &, MinipageParams const &);
-///
-bool operator!=(MinipageParams const &, MinipageParams const &);
-
-
-/** A controller for Minipage dialogs.
- */
-class ControlMinipage : public ControlInset<InsetMinipage, MinipageParams>  {
-public:
+       InsetMinipage::Params & params() { return *params_.get(); }
        ///
-       ControlMinipage(LyXView &, Dialogs &);
-
+       InsetMinipage::Params const & params() const { return *params_.get(); }
 private:
-       /// Dispatch the changed parameters to the kernel.
-       virtual void applyParamsToInset();
-       /// 
-       virtual void applyParamsNoInset();
-       /// get the parameters from the string passed to createInset.
-       virtual MinipageParams const getParams(string const &)
-               { return MinipageParams(); }
-       /// get the parameters from the inset passed to showInset.
-       virtual MinipageParams const getParams(InsetMinipage const &);
+       ///
+       boost::scoped_ptr<InsetMinipage::Params> params_;
 };
 
 #endif