]> git.lyx.org Git - lyx.git/blob - src/insets/insetwrap.h
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetwrap.h
1 /**
2  * \file insetwrap.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef InsetWrap_H
12 #define InsetWrap_H
13
14
15 #include "insetcollapsable.h"
16 #include "toc.h"
17 #include "lyxlength.h"
18
19
20 struct InsetWrapParams {
21         ///
22         void write(std::ostream &) const;
23         ///
24         void read(LyXLex &);
25     
26         ///
27         string type;
28         ///
29         string placement;
30         ///
31         LyXLength width;
32 };
33
34
35 /** The wrap inset
36  */
37 class InsetWrap : public InsetCollapsable {
38 public:
39         ///
40         InsetWrap(BufferParams const &, string const &);
41         ///
42         InsetWrap(InsetWrap const &, bool same_id = false);
43         ///
44         ~InsetWrap();
45         ///
46         virtual dispatch_result localDispatch(FuncRequest const & cmd); 
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         Inset * clone(Buffer const &, bool same_id = false) const;
55         ///
56         Inset::Code lyxCode() const { return Inset::WRAP_CODE; }
57         ///
58         int latex(Buffer const *, std::ostream &,
59                   LatexRunParams const &) const;
60         ///
61         int docbook(Buffer const *, std::ostream &, bool mixcont) const;
62         ///
63         string const editMessage() const;
64         ///
65         bool insetAllowed(Inset::Code) const;
66         ///
67         int getMaxWidth(BufferView *, UpdatableInset const *) const;
68         ///
69         void addToToc(toc::TocList &, Buffer const *) const;
70         ///
71         bool  showInsetDialog(BufferView *) const;
72         ///
73         int latexTextWidth(BufferView *) const;
74         ///
75         InsetWrapParams const & params() const { return params_; }
76 private:
77         ///
78         InsetWrapParams params_;
79 };
80
81
82
83 #include "mailinset.h"
84
85
86 class InsetWrapMailer : public MailInset {
87 public:
88         ///
89         InsetWrapMailer(InsetWrap & inset);
90         ///
91         virtual InsetBase & inset() const { return inset_; }
92         ///
93         virtual string const & name() const { return name_; }
94         ///
95         virtual string const inset2string() const;
96         ///
97         static void string2params(string const &, InsetWrapParams &);
98         ///
99         static string const params2string(InsetWrapParams const &);
100 private:
101         ///
102         static string const name_;
103         ///
104         InsetWrap & inset_;
105 };
106
107 #endif