]> git.lyx.org Git - lyx.git/blob - src/insets/InsetGraphicsParams.h
Rename files in src/support, step one.
[lyx.git] / src / insets / InsetGraphicsParams.h
1 // -*- C++ -*-
2 /**
3  * \file InsetGraphicsParams.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 INSETGRAPHICSPARAMS_H
14 #define INSETGRAPHICSPARAMS_H
15
16
17 #include "graphics/GraphicsTypes.h"
18 #include "LyXLength.h"
19 #include "support/FileName.h"
20
21 namespace lyx {
22
23 namespace graphics { class Params; }
24
25 class LyXLex;
26
27
28 /// This class holds all the parameters needed by insetGraphics.
29 class InsetGraphicsParams
30 {
31 public:
32         /// Image filename.
33         support::DocFileName filename;
34         /// Scaling the Screen inside Lyx
35         unsigned int lyxscale;
36         /// How to display the image inside LyX
37         graphics::DisplayType display;
38         /// Scaling for output (LaTeX)
39         std::string scale;
40         /// sizes for output (LaTeX)
41         LyXLength width;
42         ///
43         LyXLength height;
44         /// Keep the ratio between height and width when resizing.
45         bool keepAspectRatio;
46         /// draft mode
47         bool draft;
48         /// what to do with zipped files
49         bool noUnzip;
50
51         /// The bounding box with "xLB yLB yRT yRT ", divided by a space!
52         std::string bb;
53         /// clip image
54         bool clip;
55
56         /// Rotation angle.
57         std::string rotateAngle;
58         /// Origin point of rotation
59         std::string rotateOrigin;
60         /// Do we have a subcaption?
61         bool subcaption;
62         /// The text of the subcaption.
63         std::string subcaptionText;
64         /// any userdefined special command
65         std::string special;
66
67         ///
68         InsetGraphicsParams();
69         ///
70         InsetGraphicsParams(InsetGraphicsParams const &);
71         ///
72         InsetGraphicsParams & operator=(InsetGraphicsParams const &);
73         /// Save the parameters in the LyX format stream.
74         void Write(std::ostream & os, std::string const & bufpath) const;
75         /// If the token belongs to our parameters, read it.
76         bool Read(LyXLex & lex, std::string const & token, std::string const & bufpath);
77         /// convert
78   // Only a subset of InsetGraphicsParams is needed for display purposes.
79   // This function also interrogates lyxrc to ascertain whether
80   // to display or not.
81         graphics::Params as_grfxParams() const;
82
83 private:
84         /// Initialize the object to a default status.
85         void init();
86         /// Copy the other objects content to us, used in copy c-tor and assignment
87         void copy(InsetGraphicsParams const & params);
88 };
89
90 ///
91 bool operator==(InsetGraphicsParams const &, InsetGraphicsParams const &);
92 ///
93 bool operator!=(InsetGraphicsParams const &, InsetGraphicsParams const &);
94
95 } // namespace lyx
96
97 #endif