]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetindex.h
index 99ab39a448ffebb09418b83ee2169b20b7f35811..638825412cce397fb9d05c75d51952896eddf3c6 100644 (file)
 
 #include "insetcommand.h"
 
-struct LaTeXFeatures;
+
+namespace lyx {
+
+class LaTeXFeatures;
 
 /** Used to insert index labels
   */
@@ -24,24 +27,18 @@ public:
        ///
        InsetIndex(InsetCommandParams const &);
        ///
-       ~InsetIndex();
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
-       }
-       ///
-       std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
-       ///
-       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
-protected:
+       InsetBase::Code lyxCode() const;
        ///
-       virtual
-       dispatch_result
-       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetIndex(params()));
+       }
 };
 
 
@@ -49,27 +46,23 @@ class InsetPrintIndex : public InsetCommand {
 public:
        ///
        InsetPrintIndex(InsetCommandParams const &);
-       ///
-       ~InsetPrintIndex();
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
-       }
        /// Updates needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
        EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
-       ///
-       std::string const getScreenLabel(Buffer const &) const;
+       InsetBase::Code lyxCode() const;
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       bool display() const { return true; }
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       docstring const getScreenLabel(Buffer const &) const;
 private:
-       ///
-       mutable unsigned int center_indent_;
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
+       }
 };
 
+
+} // namespace lyx
+
 #endif