]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.h
parlist-a-1.diff
[lyx.git] / src / insets / insetcommand.h
1 // -*- C++ -*-
2 /**
3  * \file insetcommand.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef INSET_LATEXCOMMAND_H
14 #define INSET_LATEXCOMMAND_H
15
16
17 #include "insetbutton.h"
18 #include "insetcommandparams.h"
19 #include "mailinset.h"
20 #include <boost/utility.hpp>
21
22 // Created by Alejandro 970222
23 /** Used to insert a LaTeX command automatically
24  *
25  * Similar to InsetLaTeX but having control of the basic structure of a
26  *   LaTeX command: \name[options]{contents}.
27  */
28
29 ///
30 class InsetCommand : public InsetButton, boost::noncopyable {
31 public:
32         ///
33         explicit
34         InsetCommand(InsetCommandParams const &, bool same_id = false);
35         ///
36         void write(Buffer const *, std::ostream & os) const
37                 { p_.write(os); }
38         ///
39         virtual void read(Buffer const *, LyXLex & lex)
40                 { p_.read(lex); }
41         /// Can remove one InsetBibKey is modified
42         void scanCommand(string const & c) { p_.scanCommand(c); };
43         ///
44         virtual int latex(Buffer const *, std::ostream &,
45                           bool fragile, bool free_spc) const;
46         ///
47         int ascii(Buffer const *, std::ostream &, int linelen) const;
48         ///
49         virtual int linuxdoc(Buffer const *, std::ostream &) const;
50         ///
51         virtual int docbook(Buffer const *, std::ostream &, bool) const;
52         ///
53         Inset::Code lyxCode() const { return Inset::NO_CODE; }
54
55         ///
56         string const getCommand() const { return p_.getCommand(); }
57         ///
58         string const & getCmdName() const { return p_.getCmdName(); }
59         ///
60         string const & getOptions() const { return p_.getOptions(); }
61         ///
62         string const & getContents() const { return p_.getContents(); }
63         ///
64         void setCmdName(string const & n) { p_.setCmdName(n); }
65         ///
66         void setOptions(string const & o) { p_.setOptions(o); }
67         ///
68         void setContents(string const & c) { p_.setContents(c); }
69         ///
70         InsetCommandParams const & params() const { return p_; }
71         ///
72         void setParams(InsetCommandParams const &);
73         ///
74         virtual dispatch_result localDispatch(FuncRequest const & cmd);
75
76 private:
77         ///
78         InsetCommandParams p_;
79 };
80
81
82 class InsetCommandMailer : public MailInset {
83 public:
84         ///
85         InsetCommandMailer(string const & name, InsetCommand & inset);
86         ///
87         virtual InsetBase & inset() const { return inset_; }
88         ///
89         virtual string const & name() const { return name_; }
90         ///
91         virtual string const inset2string() const;
92         ///
93         static void string2params(string const &, InsetCommandParams &);
94         ///
95         static string const params2string(string const & name,
96                                           InsetCommandParams const &);
97 private:
98         ///
99         string const name_;
100         ///
101         InsetCommand & inset_;
102 };
103
104
105 #endif