]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetCitation.h
index 1c3de97cc88f1142fba5c2abf01299df0558e9b5..0cdde7b2ee7ece7666fcaa85ffcece71dc95a36c 100644 (file)
@@ -41,9 +41,11 @@ public:
        ///
        docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
        InsetCode lyxCode() const { return CITE_CODE; }
        ///
-       int latex(otexstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
@@ -55,23 +57,20 @@ public:
        ///
        void forToc(docstring &, size_t) const;
        ///
-       void validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const {}
        ///
        void updateBuffer(ParIterator const & it, UpdateType);
        ///
        void addToToc(DocIterator const &) const;
        ///
-       docstring contextMenuName() const;
+       std::string contextMenuName() const;
        //@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
        //@{
        ///
        static ParamInfo const & findInfo(std::string const &);
-       // FIXME This is the locus of the design problem we have.
-       // It really ought to do what default_cite_command() does,
-       // but to do that it needs to know what CiteEngine we are
-       // using.
+       ///
        static std::string defaultCommand() { return "cite"; }
        ///
        static bool isCompatibleCommand(std::string const & cmd);
@@ -97,19 +96,15 @@ private:
        docstring screenLabel() const;
        //@}
 
-       /// we'll eventually want to be able to get info on this from the 
+       /// we'll eventually want to be able to get info on this from the
        /// various CiteEngines
        static ParamInfo param_info_;
 
        ///
-       class Cache {
-       public:
-               ///
-               Cache() : engine(ENGINE_BASIC), params(CITE_CODE) {}
-               ///
-               CiteEngine engine;
+       struct Cache {
+               Cache() : recalculate(true) {};
                ///
-               InsetCommandParams params;
+               bool recalculate;
                ///
                docstring generated_label;
                ///