]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetGraphics.h
* ANNOUNCE
[lyx.git] / src / insets / InsetGraphics.h
index ec68897b8822d3a241272c3cda442a4b4e413c3c..1846c4a4e62ab655494cbef343951a608d24ae3e 100644 (file)
 #ifndef INSET_GRAPHICS_H
 #define INSET_GRAPHICS_H
 
-#include <set>
 #include "Inset.h"
 #include "InsetGraphicsParams.h"
 
+#include <set>
+
 namespace lyx {
 
 class RenderGraphic;
@@ -33,7 +34,7 @@ class InsetGraphics : public Inset
 {
 public:
        ///
-       InsetGraphics(Buffer & buf);
+       InsetGraphics(Buffer * buf);
        ///
        ~InsetGraphics();
 
@@ -51,6 +52,8 @@ public:
        bool setParams(InsetGraphicsParams const & params);
 
        InsetGraphicsParams getParams() const { return params_;}
+       ///
+       bool clickable(int, int) const { return true; }
 
 private:
        ///
@@ -74,6 +77,8 @@ private:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XHTMLStream & os, OutputParams const &) const;
        /** Tell LyX what the latex features you need i.e. what latex packages
            you need to be included.
         */
@@ -87,14 +92,14 @@ private:
        ///
        bool showInsetDialog(BufferView * bv) const;
        ///
-       void editGraphics(InsetGraphicsParams const &, Buffer const &) const;
+       void editGraphics(InsetGraphicsParams const &) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
        void addToToc(DocIterator const &);
        ///
        docstring contextMenu(BufferView const & bv, int x, int y) const;
-       /// Force inset into LTR environment if surroundings are RTL?
+       /// Force inset into LTR environment if surroundings are RTL
        bool forceLTR() const { return true; }
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
@@ -109,7 +114,13 @@ private:
        /// Create the atributes for docbook export.
        docstring createDocBookAttributes() const;
        /// Convert the file if needed, and return the location of the file.
+       /// This version is for use with LaTeX-style output.
        std::string prepareFile(OutputParams const &) const;
+       /// Convert the file if needed, and return the location of the file.
+       /// This version is for use with HTML-style output.
+       /// \return the new filename, relative to the location of the HTML file,
+       /// or an empty string on error.
+       std::string prepareHTMLFile(OutputParams const & runparams) const;
 
        ///
        InsetGraphicsParams params_;