]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphicsParams.h
5f83835853c849a9ef29ef4d45ceaa2bb064b2d6
[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         /// Do we rotate?
52         bool rotate;
53         /// Origin point of rotation
54         string rotateOrigin;
55         /// Rotation angle.
56         float rotateAngle;
57         string bb;
58         /// clip image 
59         bool clip;
60         /// draft mode
61         bool draft;
62         /// How to display the image
63         DisplayType display;
64         /// any userdefined special command
65         string special;
66         /// three possible values for rescaling
67         LyXLength width;
68         ///
69         LyXLength height;
70         ///
71         int scale;
72         /// Type of rescaling
73         sizeType size_type;
74         /// Keep the ratio between height and width when resizing.
75         bool keepAspectRatio;
76         /// the size for the view inside lyx
77         LyXLength lyxwidth;
78         ///
79         LyXLength lyxheight;
80         /// Typ of rescaling the Screen
81         int lyxscale;
82         /// Typ of the LyXView, same as for latex
83         sizeType lyxsize_type;
84         ///
85         InsetGraphicsParams();
86         ///
87         InsetGraphicsParams(InsetGraphicsParams const &);
88         ///
89         InsetGraphicsParams & operator=(InsetGraphicsParams const &);
90         /// Save the parameters in the LyX format stream.
91         void Write(Buffer const * buf, ostream & os) const;
92         /// If the token belongs to our parameters, read it.
93         bool Read(Buffer const * buf, LyXLex & lex, string const & token);
94
95 private:
96         /// Initialize the object to a default status.
97         void init();
98         /// Copy the other objects content to us, used in copy c-tor and assignment
99         void copy(InsetGraphicsParams const & params);
100 };
101
102 ///
103 bool operator==(InsetGraphicsParams const &, InsetGraphicsParams const &);
104 ///
105 bool operator!=(InsetGraphicsParams const &, InsetGraphicsParams const &);
106
107 #endif