]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetlabel.h
index 8ea8190e2ff1d60062a324c267aa139c8e2b62fc..f02117cbde74fa16a850ba88cc673d17aa170c60 100644 (file)
 
 #include "insetcommand.h"
 
+
+namespace lyx {
+
 class InsetLabel : public InsetCommand {
 public:
        ///
        InsetLabel(InsetCommandParams const &);
        ///
-       std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
+       InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; }
        /// Appends \c list with this label
-       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
-       ///
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       void getLabelList(Buffer const &, std::vector<docstring> & list) const;
        ///
-       int plaintext(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const &, std::ostream &,
-                    OutputParams const &) const;
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
-                   OutputParams const &) const;
+       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
 protected:
-       virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif