]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbase.h
ws changes only
[lyx.git] / src / insets / insetbase.h
index ef87a2f966a96d39a5da29541aca3b74fe9c1029..f261618f9b2888024269bfd5c34ead4624e09182 100644 (file)
@@ -6,19 +6,23 @@
  *
  * \author none
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETBASE_H
 #define INSETBASE_H
 
+#include <string>
 #include <vector>
+#include <memory>
 
+class Buffer;
 class BufferView;
 class FuncRequest;
 class MetricsInfo;
 class Dimension;
 class PainterInfo;
+class LaTeXFeatures;
 
 /** Dispatch result codes
                DISPATCHED          = the inset catched the action
@@ -46,6 +50,18 @@ enum dispatch_result {
        DISPATCHED_POP
 };
 
+/** \c DispatchResult is a wrapper for dispatch_result.
+ *  It can be forward-declared and passed as a function argument without
+ *  having to expose insetbase.h.
+ */
+class DispatchResult {
+       dispatch_result val_;
+public:
+       DispatchResult(dispatch_result val) : val_(val) {}
+       operator dispatch_result() const{ return val_; }
+};
+
+
 
 /// Common base class to all insets
 class InsetBase {
@@ -63,6 +79,11 @@ public:
        /// type for column numbers
        typedef size_t  col_type;
 
+       /// virtual base class destructor
+       virtual ~InsetBase() {}
+       /// replicate ourselves
+       virtual std::auto_ptr<InsetBase> clone() const = 0;
+
        // the real dispatcher
        virtual dispatch_result dispatch
                (FuncRequest const & cmd, idx_type & idx, pos_type & pos);
@@ -74,13 +95,11 @@ public:
        /// draw inset and update (xo, yo)-cache
        virtual void draw(PainterInfo & pi, int x, int y) const = 0;
 
-       ///
-       virtual ~InsetBase() {}
-
-       /// Methods to cache and retrieve a cached BufferView.
-       virtual void cache(BufferView *) const {}
-       ///
-       virtual BufferView * view() const { return 0; }
+       /// request "external features"
+       virtual void validate(LaTeXFeatures &) const {}
+       /// Appends \c list with all labels found within this inset.
+       virtual void getLabelList(Buffer const &,
+                                 std::vector<std::string> & /* list */) const {}
 };
 
 #endif