]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.h
For linuxdoc and docbook:
[lyx.git] / src / insets / insetgraphics.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor
6  *       
7  *           Copyright 1995 Matthias Ettrich
8  *           Copyright 1995-2001 the LyX Team.
9  *
10  * \author Baruch Even
11  * \author Herbert Voss <voss@lyx.org>
12  * ====================================================== */
13
14 #ifndef INSET_GRAPHICS_H
15 #define INSET_GRAPHICS_H
16
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif 
21
22 #include "graphics/GraphicsTypes.h"
23 #include "insets/inset.h"
24 #include "insets/insetgraphicsParams.h"
25 // We need a signal here to hide an active dialog when we are deleted.
26 #include "sigc++/signal_system.h"
27
28 class Dialogs;
29 class LaTeXFeatures;
30
31 ///
32 class InsetGraphics : public Inset, public SigC::Object {
33 public:
34         ///
35         InsetGraphics();
36         ///
37         InsetGraphics(InsetGraphics const &, bool same_id = false);
38         ///
39         ~InsetGraphics();
40         ///
41         int ascent(BufferView *, LyXFont const &) const;
42         ///
43         int descent(BufferView *, LyXFont const &) const;
44         ///
45         int width(BufferView *, LyXFont const &) const;
46         ///
47         bool display() const { return true; }
48         ///
49         void draw(BufferView *, LyXFont const &, int, float &, bool) const;
50         ///
51         void edit(BufferView *, int, int, unsigned int);
52         ///
53         void edit(BufferView * bv, bool front = true);
54         ///
55         EDITABLE editable() const;
56         ///
57         void write(Buffer const *, std::ostream &) const;
58         ///
59         void read(Buffer const *, LyXLex & lex);
60
61         /** returns the number of rows (\n's) of generated tex code.
62          #fragile == true# means, that the inset should take care about
63          fragile commands by adding a #\protect# before.
64          */
65         int latex(Buffer const *, std::ostream &,
66                   bool fragile, bool free_spc) const;
67         ///
68         int ascii(Buffer const *, std::ostream &, int linelen) const;
69         ///
70         int linuxdoc(Buffer const *, std::ostream &) const;
71         ///
72         int docbook(Buffer const *, std::ostream &) const;
73
74         /** Tell LyX what the latex features you need i.e. what latex packages
75             you need to be included.
76          */
77         void validate(LaTeXFeatures & features) const;
78
79         /// returns LyX code associated with the inset. Used for TOC, ...)
80         Inset::Code lyxCode() const { return Inset::GRAPHICS_CODE; }
81
82         ///
83         virtual Inset * clone(Buffer const &, bool same_id = false) const;
84
85         /** Set the inset parameters, used by the GUIndependent dialog.
86             Return true of new params are different from what was so far.
87         */
88         bool setParams(InsetGraphicsParams const & params);
89
90         /// Get the inset parameters, used by the GUIndependent dialog.
91         InsetGraphicsParams const & params() const;
92
93         /** This signal is connected by our dialog and called when the inset
94             is deleted.
95         */
96         SigC::Signal0<void> hideDialog;
97
98 private:
99         /// Set the cached variables
100         void setCache() const;
101         /// Is the image ready to draw, or should we display a message instead?
102         bool drawImage() const;
103
104         /// Read the inset native format
105         void readInsetGraphics(Buffer const * buf, LyXLex & lex);
106         /// Read the FigInset file format
107         void readFigInset(Buffer const * buf, LyXLex & lex);
108         
109         /// Update the inset after parameter change.
110         void updateInset() const;
111         /// Get the status message, depends on the image loading status.
112         string const statusMessage() const;
113         /// Create the options for the latex command.
114         string const createLatexOptions() const;
115         /// Convert the file if needed, and return the location of the file.
116         string const prepareFile(Buffer const * buf) const;
117
118         ///
119         InsetGraphicsParams params_;
120
121         /// holds the entity name that defines the graphics location (SGML).
122         string const graphic_label;
123
124         /// The cached variables
125         mutable grfx::ImageStatus cached_status_;
126         ///
127         mutable grfx::ImagePtr cached_image_;
128         ///
129         mutable bool cache_filled_;
130 };
131
132 #endif