]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetVSpace.h
New attempt on #9906: allow following hyperlinks via context menu.
[lyx.git] / src / insets / InsetVSpace.h
index a559f13be935378871ebc1272c9f26ea50618bad..6e307561d52f20b7e0adf70a27e613779829a860 100644 (file)
@@ -22,22 +22,19 @@ class InsetVSpace : public Inset
 {
 public:
        ///
-       InsetVSpace() {}
+       InsetVSpace() : Inset(0) {}
        ///
-       InsetVSpace(VSpace const &);
-       ///
-       ~InsetVSpace();
+       explicit InsetVSpace(VSpace const &);
        /// How much?
        VSpace const & space() const { return space_; }
        ///
        InsetCode lyxCode() const { return VSPACE_CODE; }
        ///
-       void edit(Cursor & cur, bool front,
-               EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
+       bool hasSettings() const { return true; }
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool clickable(BufferView const &, int, int) const { return true; }
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       std::string contextMenuName() const;
        ///
        static void string2params(std::string const &, VSpace &);
        ///
@@ -48,17 +45,24 @@ private:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const;
+       /// Note that this returns the inset rather than writing it,
+       /// so it will actually be written after the present paragraph.
+       /// The normal case is that this inset will be on a line by
+       /// itself, and in that case the present paragraph will not,
+       /// in fact, appear at all.
+       docstring xhtml(XMLStream &, OutputParams const &) const;
        ///
        void read(Lexer & lex);
        ///
        void write(std::ostream & os) const;
        ///
-       DisplayType display() const { return AlignCenter; }
+       RowFlags rowFlags() const { return Display; }
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
@@ -67,8 +71,6 @@ private:
        Inset * clone() const { return new InsetVSpace(*this); }
        ///
        docstring const label() const;
-       ///
-       bool showInsetDialog(BufferView * bv) const;
 
        ///
        VSpace space_;