]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphicsParams.h
d8afae97f79d86480e4e85931ff09a54cd063f73
[lyx.git] / src / insets / insetgraphicsParams.h
1 // -*- C++ -*-
2 /* This file is part of
3  * =================================================
4  * 
5  *          LyX, The Document Processor
6  *          Copyright 1995 Matthias Ettrich.
7  *          Copyright 1995-2002 The LyX Team.
8  *
9  * \author Baruch Even
10  * \author Herbert Voss <voss@lyx.org>
11  * ================================================= */
12
13 #ifndef INSETGRAPHICSPARAMS_H
14 #define INSETGRAPHICSPARAMS_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif 
19
20 #include "LString.h"
21
22 #include "buffer.h"
23 #include "lyxlex.h"
24
25 using std::ostream;
26
27 /// This struct holds all the parameters needed by insetGraphics.
28 struct InsetGraphicsParams
29 {
30         /// How do we display the image?
31         enum DisplayType {
32             DEFAULT,            // whatever is in lyxrc.display_graphics
33             COLOR,              // full color range
34             GRAYSCALE,          // 256 shades of gray
35             MONOCHROME,         // In black and white.
36             NONE                // only keep a frame in place.
37         };
38         ///
39         enum sizeType {
40             DEFAULT_SIZE,       // like none
41             WH,                 // width/height values
42             SCALE               // percentage value
43         };
44         /// Image filename.
45         string filename;
46         /// Do we have a subcaption?
47         bool subcaption;
48         /// The text of the subcaption.
49         string subcaptionText;
50         /// The bounding box with "xLB yLB yRT yRT ", divided by a space!
51         string bb;
52         /// clip image 
53         bool clip;
54         /// draft mode
55         bool draft;
56         /// How to display the image
57         DisplayType display;
58         /// any userdefined special command
59         string special;
60         /// three possible values for rescaling
61         LyXLength width;
62         ///
63         LyXLength height;
64         ///
65         int scale;
66         /// Type of rescaling
67         sizeType size_type;
68         /// Keep the ratio between height and width when resizing.
69         bool keepAspectRatio;
70         /// the size for the view inside lyx
71         LyXLength lyxwidth;
72         ///
73         LyXLength lyxheight;
74         /// Typ of rescaling the Screen
75         int lyxscale;
76         /// Typ of the LyXView, same as for latex
77         sizeType lyxsize_type;
78         /// Origin point of rotation
79         string rotateOrigin;
80         /// Rotation angle.
81         float rotateAngle;
82         ///
83         InsetGraphicsParams();
84         ///
85         InsetGraphicsParams(InsetGraphicsParams const &);
86         ///
87         InsetGraphicsParams & operator=(InsetGraphicsParams const &);
88         /// Save the parameters in the LyX format stream.
89         void Write(Buffer const * buf, ostream & os) const;
90         /// If the token belongs to our parameters, read it.
91         bool Read(Buffer const * buf, LyXLex & lex, string const & token);
92
93 private:
94         /// Initialize the object to a default status.
95         void init();
96         /// Copy the other objects content to us, used in copy c-tor and assignment
97         void copy(InsetGraphicsParams const & params);
98 };
99
100 ///
101 bool operator==(InsetGraphicsParams const &, InsetGraphicsParams const &);
102 ///
103 bool operator!=(InsetGraphicsParams const &, InsetGraphicsParams const &);
104
105 #endif