]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetPhantom.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetPhantom.h
index e1e976b8232aadbed559e20ede4f979849ee3a47..41fba8fb42868c64aa5de5d8a5da2f726995502f 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Uwe Stöhr
+ * \author Uwe Stöhr
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -42,7 +42,7 @@ public:
 //
 /////////////////////////////////////////////////////////////////////////
 
-/// The PostIt phantom inset, and other annotations
+/// The phantom inset
 class InsetPhantom : public InsetCollapsable
 {
 public:
@@ -60,9 +60,9 @@ private:
        ///
        docstring editMessage() const;
        ///
-       docstring name() const;
+       InsetCode lyxCode() const { return PHANTOM_CODE; }
        ///
-       DisplayType display() const;
+       docstring name() const;
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -76,17 +76,23 @@ private:
        /// show the phantom dialog
        bool showInsetDialog(BufferView * bv) const;
        ///
+       bool neverIndent() const { return true; }
+       ///
        int latex(odocstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       /// Makes no sense fof XHTML.
+       docstring xhtml(odocstream &, OutputParams const &) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
+       Inset * clone() const { return new InsetPhantom(*this); }
        /// used by the constructors
        void init();
        ///