]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlCharacter.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlCharacter.h
index 2c653b2807d4528ab741164e402d4d83b379882f..598d2e1e06e3a6a75f63ea79ede69df67108fc29 100644 (file)
@@ -1,31 +1,34 @@
 // -*- C++ -*-
 /**
  * \file ControlCharacter.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef CONTROLCHARACTER_H
 #define CONTROLCHARACTER_H
 
-#include <boost/smart_ptr.hpp>
-
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "ControlDialog_impl.h"
+#include "Dialog.h"
 #include "character.h"
 
-/** A controller for Character dialogs.
- */
-class ControlCharacter : public ControlDialogBD
-{
+
+class ControlCharacter : public Dialog::Controller {
 public:
        ///
-       ControlCharacter(LyXView &, Dialogs &);
+       ControlCharacter(Dialog &);
+       ///
+       virtual bool initialiseParams(string const & data);
+       ///
+       virtual void clearParams();
+       ///
+       virtual void dispatchParams();
+       ///
+       virtual bool isBufferDependent() const { return true; }
 
        ///
        void setFamily(LyXFont::FONT_FAMILY);
@@ -36,7 +39,7 @@ public:
        ///
        void setSize(LyXFont::FONT_SIZE);
        ///
-       void setBar(character::FONT_STATE);
+       void setBar(frnt::FONT_STATE);
        ///
        void setColor(LColor::color);
        ///
@@ -53,20 +56,14 @@ public:
        ///
        LyXFont::FONT_SIZE getSize() const;
        ///
-       character::FONT_STATE getBar() const;
+       frnt::FONT_STATE getBar() const;
        ///
        LColor::color getColor() const;
        ///
        string getLanguage() const;
        ///
        bool getToggleAll() const;
-
 private:
-       /// Get changed parameters and Dispatch them to the kernel.
-       virtual void apply();
-       /// set the params before show or update.
-       virtual void setParams();
-
        ///
        boost::scoped_ptr<LyXFont> font_;
        ///