]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetwrap.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetwrap.h
index 515984f7be12a45d36503a1641e9d22d30cccb02..722acce017c7eed1de69813dd96bb9a8dac8414b 100644 (file)
@@ -9,16 +9,16 @@
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef InsetWrap_H
-#define InsetWrap_H
-
+#ifndef INSETWRAP_H
+#define INSETWRAP_H
 
 #include "insetcollapsable.h"
 #include "toc.h"
 #include "lyxlength.h"
 
 
-struct InsetWrapParams {
+class InsetWrapParams {
+public:
        ///
        void write(std::ostream &) const;
        ///
@@ -48,33 +48,31 @@ public:
        ///
        void validate(LaTeXFeatures & features) const;
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
-       InsetOld::Code lyxCode() const { return InsetOld::WRAP_CODE; }
+       InsetBase::Code lyxCode() const { return InsetBase::WRAP_CODE; }
        ///
        int latex(Buffer const &, std::ostream &,
-                 LatexRunParams const &) const;
+                 OutputParams const &) const;
        ///
        int docbook(Buffer const &, std::ostream &,
-                   LatexRunParams const &) const;
+                   OutputParams const &) const;
        ///
        std::string const editMessage() const;
        ///
-       bool insetAllowed(InsetOld::Code) const;
+       bool insetAllowed(InsetBase::Code) const;
        ///
        void addToToc(lyx::toc::TocList &, Buffer const &) const;
        ///
-       bool  showInsetDialog(BufferView *) const;
-       ///
-       int latexTextWidth(BufferView *) const;
+       bool showInsetDialog(BufferView *) const;
        ///
        InsetWrapParams const & params() const { return params_; }
+       ///
+       bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const;
 protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
        InsetWrapParams params_;
 };