]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlCharacter.h
* Give Dialog::Controller::initialiseParams a bool return type.
[lyx.git] / src / frontends / controllers / ControlCharacter.h
index b8d3938849f7ac7213a2ad09e32c1cc93f52ec41..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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "ControlDialog_impl.h"
+#include "Dialog.h"
 #include "character.h"
 
-#include <boost/scoped_ptr.hpp>
 
-/** 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);
@@ -60,13 +63,7 @@ public:
        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_;
        ///