]> git.lyx.org Git - lyx.git/blob - src/insets/InsetGraphics.h
Fix pdf format conversion
[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 "Inset.h"
17 #include "InsetGraphicsParams.h"
18
19 #include <set>
20
21 namespace lyx {
22
23 class RenderGraphic;
24 class LaTeXFeatures;
25
26 /////////////////////////////////////////////////////////////////////////
27 //
28 // InsetGraphics
29 //
30 /////////////////////////////////////////////////////////////////////////
31
32 /// Used for images etc.
33 class InsetGraphics : public Inset
34 {
35 public:
36         ///
37         InsetGraphics(Buffer * buf);
38         ///
39         ~InsetGraphics();
40
41         ///
42         static void string2params(std::string const & data,
43                                   Buffer const & buffer,
44                                   InsetGraphicsParams &);
45         ///
46         static std::string params2string(InsetGraphicsParams const &,
47                                           Buffer const &);
48
49         /** Set the inset parameters, used by the GUIndependent dialog.
50             Return true of new params are different from what was so far.
51         */
52         bool setParams(InsetGraphicsParams const & params);
53
54         InsetGraphicsParams getParams() const { return params_;}
55         ///
56         bool clickable(int, int) const { return true; }
57
58 private:
59         ///
60         InsetGraphics(InsetGraphics const &);
61
62         ///
63         bool isLabeled() const { return true; }
64         void metrics(MetricsInfo &, Dimension &) const;
65         ///
66         bool hasSettings() const { return true; }
67         ///
68         void write(std::ostream &) const;
69         ///
70         void read(Lexer & lex);
71         /** returns the number of rows (\n's) of generated tex code.
72          #fragile == true# means, that the inset should take care about
73          fragile commands by adding a #\protect# before.
74          */
75         void latex(otexstream &, OutputParams const &) const;
76         ///
77         int plaintext(odocstringstream & ods, OutputParams const & op,
78                       size_t max_length = INT_MAX) const;
79         ///
80         int docbook(odocstream &, OutputParams const &) const;
81         ///
82         docstring xhtml(XHTMLStream & os, OutputParams const &) const;
83         /** Tell LyX what the latex features you need i.e. what latex packages
84             you need to be included.
85          */
86         void validate(LaTeXFeatures & features) const;
87         /// returns LyX code associated with the inset. Used for TOC, ...)
88         InsetCode lyxCode() const { return GRAPHICS_CODE; }
89         ///
90         docstring layoutName() const { return from_ascii("Graphics"); }
91         /// Get the inset parameters, used by the GUIndependent dialog.
92         InsetGraphicsParams const & params() const;
93         ///
94         void draw(PainterInfo & pi, int x, int y) const;
95         ///
96         bool showInsetDialog(BufferView * bv) const;
97         ///
98         void editGraphics(InsetGraphicsParams const &) const;
99         ///
100         bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
101         ///
102         void addToToc(DocIterator const & di, bool output_active) const;
103         ///
104         std::string contextMenuName() const;
105         /// Force inset into LTR environment if surroundings are RTL
106         bool forceLTR() const { return true; }
107         ///
108         void doDispatch(Cursor & cur, FuncRequest & cmd);
109         ///
110         Inset * clone() const;
111         /// Get the status message, depends on the image loading status.
112         std::string statusMessage() const;
113         /// Create the options for the latex command.
114         std::string createLatexOptions() const;
115         /// Create length values for docbook export.
116         docstring toDocbookLength(Length const & len) const;
117         /// Create the atributes for docbook export.
118         docstring createDocBookAttributes() const;
119         /// Convert the file if needed, and return the location of the file.
120         /// This version is for use with LaTeX-style output.
121         std::string prepareFile(OutputParams const &) const;
122         /// Convert the file if needed, and return the location of the file.
123         /// This version is for use with HTML-style output.
124         /// \return the new filename, relative to the location of the HTML file,
125         /// or an empty string on error.
126         std::string prepareHTMLFile(OutputParams const & runparams) const;
127
128         ///
129         InsetGraphicsParams params_;
130         /// holds the entity name that defines the graphics location (SGML).
131         docstring const graphic_label;
132         ///
133         docstring toolTip(BufferView const & bv, int x, int y) const;
134         /// The thing that actually draws the image on LyX's screen.
135         RenderGraphic * graphic_;
136 };
137
138 namespace graphics {
139
140         /// Saves the list of currently used groups in the document.
141         void getGraphicsGroups(Buffer const &, std::set<std::string> &);
142
143         /// how many members has the current group?
144         int countGroupMembers(Buffer const &, std::string const &);
145
146         /// Returns parameters of a given graphics group (except filename).
147         std::string getGroupParams(Buffer const &, std::string const &);
148
149         /** Synchronize all Graphics insets of the group.
150             Both groupId and params are taken from argument.
151         */
152         void unifyGraphicsGroups(Buffer &, std::string const &);
153         InsetGraphics * getCurrentGraphicsInset(Cursor const &);
154
155 }
156
157 } // namespace lyx
158
159 #endif // INSET_GRAPHICS_H