]> git.lyx.org Git - lyx.git/blob - src/insets/InsetGraphics.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetGraphics.h
1 // -*- C++ -*-
2 /**
3  * \file InsetGraphics.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Baruch Even
8  * \author Herbert Voß
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSET_GRAPHICS_H
14 #define INSET_GRAPHICS_H
15
16 #include <set>
17 #include "Inset.h"
18 #include "InsetGraphicsParams.h"
19
20 namespace lyx {
21
22 class RenderGraphic;
23 class LaTeXFeatures;
24
25 /////////////////////////////////////////////////////////////////////////
26 //
27 // InsetGraphics
28 //
29 /////////////////////////////////////////////////////////////////////////
30
31 /// Used for images etc.
32 class InsetGraphics : public Inset
33 {
34 public:
35         ///
36         InsetGraphics(Buffer & buf);
37         ///
38         ~InsetGraphics();
39
40         ///
41         static void string2params(std::string const & data,
42                                   Buffer const & buffer,
43                                   InsetGraphicsParams &);
44         ///
45         static std::string params2string(InsetGraphicsParams const &,
46                                           Buffer const &);
47
48         /** Set the inset parameters, used by the GUIndependent dialog.
49             Return true of new params are different from what was so far.
50         */
51         bool setParams(InsetGraphicsParams const & params);
52
53         InsetGraphicsParams getParams() const { return params_;}
54
55 private:
56         ///
57         InsetGraphics(InsetGraphics const &);
58
59         ///
60         bool isLabeled() const { return true; }
61         void metrics(MetricsInfo &, Dimension &) const;
62         ///
63         bool hasSettings() const { return true; }
64         ///
65         void write(std::ostream &) const;
66         ///
67         void read(Lexer & lex);
68         /** returns the number of rows (\n's) of generated tex code.
69          #fragile == true# means, that the inset should take care about
70          fragile commands by adding a #\protect# before.
71          */
72         int latex(odocstream &, OutputParams const &) const;
73         ///
74         int plaintext(odocstream &, OutputParams const &) const;
75         ///
76         int docbook(odocstream &, OutputParams const &) const;
77         /** Tell LyX what the latex features you need i.e. what latex packages
78             you need to be included.
79          */
80         void validate(LaTeXFeatures & features) const;
81         /// returns LyX code associated with the inset. Used for TOC, ...)
82         InsetCode lyxCode() const { return GRAPHICS_CODE; }
83         /// Get the inset parameters, used by the GUIndependent dialog.
84         InsetGraphicsParams const & params() const;
85         ///
86         void draw(PainterInfo & pi, int x, int y) const;
87         ///
88         bool showInsetDialog(BufferView * bv) const;
89         ///
90         void editGraphics(InsetGraphicsParams const &, Buffer const &) const;
91         ///
92         bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
93         ///
94         void addToToc(DocIterator const &);
95         ///
96         docstring contextMenu(BufferView const & bv, int x, int y) const;
97         /// Force inset into LTR environment if surroundings are RTL?
98         bool forceLTR() const { return true; }
99         ///
100         void doDispatch(Cursor & cur, FuncRequest & cmd);
101         ///
102         Inset * clone() const;
103         /// Get the status message, depends on the image loading status.
104         std::string statusMessage() const;
105         /// Create the options for the latex command.
106         std::string createLatexOptions() const;
107         /// Create length values for docbook export.
108         docstring toDocbookLength(Length const & len) const;
109         /// Create the atributes for docbook export.
110         docstring createDocBookAttributes() const;
111         /// Convert the file if needed, and return the location of the file.
112         std::string prepareFile(OutputParams const &) const;
113
114         ///
115         InsetGraphicsParams params_;
116         /// holds the entity name that defines the graphics location (SGML).
117         docstring const graphic_label;
118         /// The thing that actually draws the image on LyX's screen.
119         RenderGraphic * graphic_;
120 };
121
122 namespace graphics {
123
124         /// Saves the list of currently used groups in the document.
125         void getGraphicsGroups(Buffer const &, std::set<std::string> &);
126
127         /// how many members has the current group?
128         int countGroupMembers(Buffer const &, std::string const &);
129
130         /// Returns parameters of a given graphics group (except filename).
131         std::string getGroupParams(Buffer const &, std::string const &);
132
133         /** Synchronize all Graphics insets of the group.
134             Both groupId and params are taken from argument.
135         */
136         void unifyGraphicsGroups(Buffer &, std::string const &);
137         InsetGraphics * getCurrentGraphicsInset(Cursor const &);
138
139 }
140
141 } // namespace lyx
142
143 #endif // INSET_GRAPHICS_H