]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.h
Enable convertDefault.sh to run even if its executable bit is not set.
[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 "inset.h"
18 #include "insetcommandparams.h"
19 #include "renderers.h"
20 #include "mailinset.h"
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 InsetOld {
31 public:
32         ///
33         explicit
34         InsetCommand(InsetCommandParams const &);
35         ///
36         void metrics(MetricsInfo &, Dimension &) const;
37         ///
38         void draw(PainterInfo & pi, int x, int y) const;
39         ///
40         void write(Buffer const &, std::ostream & os) const
41                 { p_.write(os); }
42         ///
43         virtual void read(Buffer const &, LyXLex & lex)
44                 { p_.read(lex); }
45         /// Can remove one InsetBibKey is modified
46         void scanCommand(string const & c) { p_.scanCommand(c); };
47         ///
48         virtual int latex(Buffer const &, std::ostream &,
49                           LatexRunParams const &) const;
50         ///
51         int ascii(Buffer const &, std::ostream &, int linelen) const;
52         ///
53         virtual int linuxdoc(Buffer const &, std::ostream &) const;
54         ///
55         virtual int docbook(Buffer const &, std::ostream &, bool) const;
56         ///
57         InsetOld::Code lyxCode() const { return InsetOld::NO_CODE; }
58
59         ///
60         InsetCommandParams const & params() const { return p_; }
61         ///
62         virtual dispatch_result localDispatch(FuncRequest const & cmd);
63         ///
64         string const & getContents() const { return p_.getContents(); }
65         ///
66         void setContents(string const & c) { p_.setContents(c); }
67         ///
68         string const & getOptions() const { return p_.getOptions(); }
69
70 protected:
71         ///
72         string const getCommand() const { return p_.getCommand(); }
73         ///
74         string const & getCmdName() const { return p_.getCmdName(); }
75         ///
76         void setCmdName(string const & n) { p_.setCmdName(n); }
77         ///
78         void setOptions(string const & o) { p_.setOptions(o); }
79         ///
80         void setParams(InsetCommandParams const &);
81         ///
82         virtual BufferView * view() const;
83         /// This should provide the text for the button
84         virtual string const getScreenLabel(Buffer const &) const = 0;
85
86 private:
87         ///
88         InsetCommandParams p_;
89         mutable bool set_label_;
90         mutable ButtonRenderer button_;
91 };
92
93
94 class InsetCommandMailer : public MailInset {
95 public:
96         ///
97         InsetCommandMailer(string const & name, InsetCommand & inset);
98         ///
99         virtual InsetBase & inset() const { return inset_; }
100         ///
101         virtual string const & name() const { return name_; }
102         ///
103         virtual string const inset2string(Buffer const &) const;
104         ///
105         static void string2params(string const &, InsetCommandParams &);
106         ///
107         static string const params2string(string const & name,
108                                           InsetCommandParams const &);
109 private:
110         ///
111         string const name_;
112         ///
113         InsetCommand & inset_;
114 };
115
116
117 #endif