]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetGraphics.h
Better TOC output for XHTML, per Rob and Pavel.
[lyx.git] / src / insets / InsetGraphics.h
index 14a1f9caf791000790cc99bc72424970316c6715..2a04f0c33cf469d8070c7f0eb50dfc33a8373462 100644 (file)
 #ifndef INSET_GRAPHICS_H
 #define INSET_GRAPHICS_H
 
-#include <set>
 #include "Inset.h"
 #include "InsetGraphicsParams.h"
 
+#include <set>
+
 namespace lyx {
 
 class RenderGraphic;
@@ -51,6 +52,8 @@ public:
        bool setParams(InsetGraphicsParams const & params);
 
        InsetGraphicsParams getParams() const { return params_;}
+       ///
+       bool clickable(int, int) const { return true; }
 
 private:
        ///
@@ -69,7 +72,7 @@ private:
         #fragile == true# means, that the inset should take care about
         fragile commands by adding a #\protect# before.
         */
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
@@ -93,10 +96,10 @@ private:
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const &) const;
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
-       /// Force inset into LTR environment if surroundings are RTL?
+       docstring contextMenuName() const;
+       /// Force inset into LTR environment if surroundings are RTL
        bool forceLTR() const { return true; }
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);