]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetGraphics.h
Cleanup mouse/selection/context-menu interactions.
[lyx.git] / src / insets / InsetGraphics.h
index b9c57ab1f5354f0b8c59aa44295540a59a73e73a..281e3057c2e9f482918237f94835b438175e5102 100644 (file)
@@ -34,26 +34,26 @@ public:
        ///
        ~InsetGraphics();
        ///
+       void setBuffer(Buffer & buffer);
+       ///
+       bool isLabeled() const { return true; }
        void metrics(MetricsInfo &, Dimension &) const;
        ///
        EDITABLE editable() const;
        ///
-       void write(Buffer const &, std::ostream &) const;
+       void write(std::ostream &) const;
        ///
-       void read(Buffer const &, Lexer & lex);
+       void read(Lexer & lex);
 
        /** returns the number of rows (\n's) of generated tex code.
         #fragile == true# means, that the inset should take care about
         fragile commands by adding a #\protect# before.
         */
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
 
        /** Tell LyX what the latex features you need i.e. what latex packages
            you need to be included.
@@ -73,15 +73,20 @@ public:
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void edit(Cursor & cur, bool front, EntryDirectionType entry_from);
+       void edit(Cursor & cur, bool front, EntryDirection entry_from);
        ///
        void editGraphics(InsetGraphicsParams const &, Buffer const &) const;
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        /// all graphics can be embedded
-       void registerEmbeddedFiles(Buffer const &, EmbeddedFileList &) const;
+       void registerEmbeddedFiles(EmbeddedFileList &) const;
+       ///
+       void updateEmbeddedFile(EmbeddedFile const &);
        ///
-       void updateEmbeddedFile(Buffer const &, EmbeddedFile const &);
+       void addToToc(ParConstIterator const &) const;
+       ///
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
+
        /// Force inset into LTR environment if surroundings are RTL?
        virtual bool forceLTR() const { return true; }
 protected:
@@ -105,7 +110,7 @@ private:
        /// Create the atributes for docbook export.
        docstring const createDocBookAttributes() const;
        /// Convert the file if needed, and return the location of the file.
-       std::string const prepareFile(Buffer const & buf, OutputParams const &) const;
+       std::string prepareFile(OutputParams const &) const;
 
        ///
        InsetGraphicsParams params_;