]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetcommand.h
index 42edb946da1fa27fcf8dc70b954ebb63615b71af..a2397dba654e02ac2d2895395e20f89506e32522 100644 (file)
@@ -20,6 +20,9 @@
 #include "cursor.h"
 
 
+namespace lyx {
+
+
 // Created by Alejandro 970222
 /** Used to insert a LaTeX command automatically
  *
@@ -35,7 +38,7 @@ public:
        ///
        ~InsetCommand();
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       bool metrics(MetricsInfo &, Dimension &) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -44,38 +47,49 @@ public:
        ///
        virtual void read(Buffer const &, LyXLex & lex)
                { p_.read(lex); }
-       /// Can remove one InsetBibKey is modified
-       void scanCommand(std::string const & c) { p_.scanCommand(c); };
        ///
-       virtual int latex(Buffer const &, std::ostream &,
+       virtual int latex(Buffer const &, odocstream &,
                          OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       virtual int docbook(Buffer const &, std::ostream &,
+       virtual int docbook(Buffer const &, odocstream &,
                            OutputParams const & runparams) const;
        ///
        InsetBase::Code lyxCode() const { return InsetBase::NO_CODE; }
 
        ///
        InsetCommandParams const & params() const { return p_; }
-       ///
-       std::string const getContents() const { return p_.getContents(); }
-       ///
+       /// FIXME remove
+       std::string const getContents() const { return p_.getContents(); }
+       /// FIXME remove
        void setContents(std::string const & c)
        {
                updateButtonLabel_ = true;
                p_.setContents(c);
        }
        ///
-       virtual void replaceContents(std::string const & from, std::string const & to);
-       ///
-       std::string const & getOptions() const { return p_.getOptions(); }
+       void setParam(std::string const & name, docstring const & value)
+       {
+               updateButtonLabel_ = true;
+               p_[name] = value;
+       }
        ///
-       std::string const & getSecOptions() const { return p_.getSecOptions(); }
+       docstring const & getParam(std::string const & name) const
+       {
+               return p_[name];
+       }
+       /// FIXME remove
+       virtual void replaceContents(std::string const & from, std::string const & to);
+       /// FIXME remove
+       std::string const getOptions() const { return p_.getOptions(); }
+       /// FIXME remove
+       std::string const getSecOptions() const { return p_.getSecOptions(); }
        ///
        RenderButton & button() const { return button_; }
+       ///
+       bool setMouseHover(bool mouse_hover);
 
 protected:
        ///
@@ -83,7 +97,7 @@ protected:
        ///
        bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
        ///
-       std::string const getCommand() const { return p_.getCommand(); }
+       docstring const getCommand() const { return p_.getCommand(); }
        ///
        std::string const & getCmdName() const { return p_.getCmdName(); }
        ///
@@ -107,12 +121,14 @@ protected:
        ///
        void setParams(InsetCommandParams const &);
        /// This should provide the text for the button
-       virtual lyx::docstring const getScreenLabel(Buffer const &) const = 0;
+       virtual docstring const getScreenLabel(Buffer const &) const = 0;
 
 private:
        ///
        InsetCommandParams p_;
        std::string mailer_name_;
+       /// changes color when mouse enters/leaves this inset
+       bool mouse_hover_;
        mutable bool updateButtonLabel_;
        mutable RenderButton button_;
 };
@@ -142,4 +158,7 @@ private:
 };
 
 
+
+} // namespace lyx
+
 #endif