]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCharStyle.h
Fix text frame drawing.
[lyx.git] / src / insets / InsetCharStyle.h
index b63dfda8f69eaa3385a4a35418200284a8641200..7364593c8f677bd24a0a0d28568e9a8e9b9ab4fe 100644 (file)
@@ -39,16 +39,14 @@ public:
        /// Construct an undefined character style
        InsetCharStyle(BufferParams const &, std::string const);
        ///
-       InsetCharStyle(BufferParams const &, CharStyles::iterator);
+       InsetCharStyle(BufferParams const &, InsetLayout);
        ///
        docstring name() const { return from_ascii("CharStyle"); }
        /// Is this character style defined in the document's textclass?
        /// May be wrong after textclass change or paste from another document
        bool undefined() const;
-       /// Set the character style to "undefined"
-       void setUndefined();
-       /// (Re-)set the character style parameters from \p cs
-       void setDefined(CharStyles::iterator cs);
+       /// (Re-)set the character style parameters from \p il
+       void setLayout(InsetLayout il);
        ///
        virtual docstring const editMessage() const;
        ///
@@ -65,8 +63,6 @@ public:
        void getDrawFont(Font &) const;
        ///
        bool forceDefaultParagraphs(idx_type) const { return true; }
-       ///
-       virtual Decoration decoration() const;
 
        ///
        int plaintext(Buffer const &, odocstream &,
@@ -92,10 +88,8 @@ protected:
 private:
        friend class InsetCharStyleParams;
 
-       virtual std::auto_ptr<Inset> doClone() const;
+       virtual Inset * clone() const;
 
-       /// used by the constructors
-       void init();
        ///
        InsetCharStyleParams params_;
 };