]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNomencl.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetNomencl.h
index 6727068ab089bf064d85000f0ddcdf2c85ef01ab..b53984756ba873b0626adab0988a50f1f520141c 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 Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author O. U. Baran
  *
  * Full author contact details are available in file CREDITS.
@@ -30,13 +30,17 @@ public:
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
+       bool hasSettings() const { return true; }
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
        InsetCode lyxCode() const { return NOMENCL_CODE; }
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       /// Does nothing at the moment.
+       docstring xhtml(odocstream &, OutputParams const &) const;
        ///
        int docbookGlossary(odocstream &) const;
        ///
@@ -47,7 +51,7 @@ public:
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "nomenclature"; }
 private:
-       Inset * clone() const { return new InsetNomencl(params()); }
+       Inset * clone() const { return new InsetNomencl(*this); }
        /// unique id for this nomenclature entry for docbook export
        docstring nomenclature_entry_id;
 };
@@ -59,17 +63,15 @@ public:
        InsetPrintNomencl(InsetCommandParams const &);
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
-       // FIXME: This should be editable to set the label width (stored
-       // in params_["labelwidth"]).
-       // Currently the width can be read from file and written, but not
-       // changed.
-       ///
-       EDITABLE editable() const { return NOT_EDITABLE; }
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       /// Does nothing at the moment.
+       docstring xhtml(odocstream &, OutputParams const &) const;
        ///
        InsetCode lyxCode() const;
        ///
+       bool hasSettings() const { return true; }
+       ///
        DisplayType display() const { return AlignCenter; }
        ///
        docstring screenLabel() const;
@@ -80,11 +82,19 @@ public:
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "printnomenclature"; }
+       ///
+       int latex(odocstream &, OutputParams const &) const;
+       ///
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
+protected:
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
 private:
-       Inset * clone() const { return new InsetPrintNomencl(params()); }
+       Inset * clone() const { return new InsetPrintNomencl(*this); }
 };
 
-
 } // namespace lyx
 
 #endif