]> git.lyx.org Git - lyx.git/blob - src/insets/insetfloat.h
changelogs
[lyx.git] / src / insets / insetfloat.h
1 // -*- C++ -*-
2 /**
3  * \file insetfloat.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSETFLOAT_H
14 #define INSETFLOAT_H
15
16 #include "insetcollapsable.h"
17 #include "toc.h"
18
19
20 struct InsetFloatParams {
21         ///
22         InsetFloatParams() : wide(false), sideways(false) {}
23         ///
24         void write(std::ostream & os) const;
25         ///
26         void read(LyXLex & lex);
27         ///
28         std::string type;
29         ///
30         std::string placement;
31         ///
32         bool wide;
33         ///
34         bool sideways;
35 };
36
37
38 /** The float inset
39
40 */
41 class InsetFloat : public InsetCollapsable {
42 public:
43         ///
44         InsetFloat(BufferParams const &, std::string const &);
45         ///
46         ~InsetFloat();
47         ///
48         void write(Buffer const & buf, std::ostream & os) const;
49         ///
50         void read(Buffer const & buf, LyXLex & lex);
51         ///
52         void validate(LaTeXFeatures & features) const;
53         ///
54         InsetOld::Code lyxCode() const { return InsetOld::FLOAT_CODE; }
55         ///
56         int latex(Buffer const &, std::ostream &,
57                   OutputParams const &) const;
58         ///
59         int linuxdoc(Buffer const &, std::ostream &,
60                      OutputParams const &) const;
61         ///
62         int docbook(Buffer const &, std::ostream &,
63                     OutputParams const &) const;
64         ///
65         std::string const editMessage() const;
66         ///
67         bool insetAllowed(InsetOld::Code) const;
68         /** returns true if, when outputing LaTeX, font changes should
69             be closed before generating this inset. This is needed for
70             insets that may contain several paragraphs */
71         bool noFontChange() const { return true; }
72         ///
73         void wide(bool w, BufferParams const &);
74         ///
75         void sideways(bool s, BufferParams const &);
76         ///
77         void addToToc(lyx::toc::TocList &, Buffer const &) const;
78         ///
79         bool  showInsetDialog(BufferView *) const;
80         ///
81         InsetFloatParams const & params() const { return params_; }
82 protected:
83         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
84 private:
85         virtual std::auto_ptr<InsetBase> doClone() const;
86
87         ///
88         InsetFloatParams params_;
89 };
90
91
92 #include "mailinset.h"
93
94
95 class InsetFloatMailer : public MailInset {
96 public:
97         ///
98         InsetFloatMailer(InsetFloat & inset);
99         ///
100         virtual InsetBase & inset() const { return inset_; }
101         ///
102         virtual std::string const & name() const { return name_; }
103         ///
104         virtual std::string const inset2string(Buffer const &) const;
105         ///
106         static void string2params(std::string const &, InsetFloatParams &);
107         ///
108         static std::string const params2string(InsetFloatParams const &);
109 private:
110         ///
111         static std::string const name_;
112         ///
113         InsetFloat & inset_;
114 };
115
116 #endif