]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.h
hopefully fix tex2lyx linking.
[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 #include "inset.h"
17 #include "insetcommandparams.h"
18 #include "render_button.h"
19 #include "mailinset.h"
20 #include "cursor.h"
21
22
23 namespace lyx {
24
25
26 // Created by Alejandro 970222
27 /** Used to insert a LaTeX command automatically
28  *
29  * Similar to InsetLaTeX but having control of the basic structure of a
30  *   LaTeX command: \name[options]{contents}.
31  */
32
33 ///
34 class InsetCommand : public InsetOld {
35 public:
36         ///
37         InsetCommand(InsetCommandParams const &, std::string const & mailer_name);
38         ///
39         ~InsetCommand();
40         ///
41         void metrics(MetricsInfo &, Dimension &) const;
42         ///
43         void draw(PainterInfo & pi, int x, int y) const;
44         ///
45         void write(Buffer const &, std::ostream & os) const
46                 { p_.write(os); }
47         ///
48         virtual void read(Buffer const &, LyXLex & lex)
49                 { p_.read(lex); }
50         /// Can remove one InsetBibKey is modified
51         /// FIXME remove
52         void scanCommand(std::string const & c) { p_.scanCommand(c); };
53         ///
54         virtual int latex(Buffer const &, odocstream &,
55                           OutputParams const &) const;
56         ///
57         int plaintext(Buffer const &, odocstream &,
58                   OutputParams const &) const;
59         ///
60         virtual int docbook(Buffer const &, odocstream &,
61                             OutputParams const & runparams) const;
62         ///
63         InsetBase::Code lyxCode() const { return InsetBase::NO_CODE; }
64
65         ///
66         InsetCommandParams const & params() const { return p_; }
67         /// FIXME remove
68         std::string const getContents() const { return p_.getContents(); }
69         /// FIXME remove
70         void setContents(std::string const & c)
71         {
72                 updateButtonLabel_ = true;
73                 p_.setContents(c);
74         }
75         ///
76         void setParam(std::string const & name, docstring const & value)
77         {
78                 updateButtonLabel_ = true;
79                 p_[name] = value;
80         }
81         ///
82         docstring const & getParam(std::string const & name) const
83         {
84                 return p_[name];
85         }
86         /// FIXME remove
87         virtual void replaceContents(std::string const & from, std::string const & to);
88         /// FIXME remove
89         std::string const getOptions() const { return p_.getOptions(); }
90         /// FIXME remove
91         std::string const getSecOptions() const { return p_.getSecOptions(); }
92         ///
93         RenderButton & button() const { return button_; }
94
95 protected:
96         ///
97         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
98         ///
99         bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
100         ///
101         docstring const getCommand() const { return p_.getCommand(); }
102         ///
103         std::string const & getCmdName() const { return p_.getCmdName(); }
104         ///
105         void setCmdName(std::string const & n)
106         {
107                 updateButtonLabel_ = true;
108                 p_.setCmdName(n);
109         }
110         ///
111         void setOptions(std::string const & o)
112         {
113                 updateButtonLabel_ = true;
114                 p_.setOptions(o);
115         }
116         ///
117         void setSecOptions(std::string const & s)
118         {
119                 updateButtonLabel_ = true;
120                 p_.setSecOptions(s);
121         }
122         ///
123         void setParams(InsetCommandParams const &);
124         /// This should provide the text for the button
125         virtual docstring const getScreenLabel(Buffer const &) const = 0;
126
127 private:
128         ///
129         InsetCommandParams p_;
130         std::string mailer_name_;
131         mutable bool updateButtonLabel_;
132         mutable RenderButton button_;
133 };
134
135
136 class InsetCommandMailer : public MailInset {
137 public:
138         ///
139         InsetCommandMailer(std::string const & name, InsetCommand & inset);
140         ///
141         virtual InsetBase & inset() const { return inset_; }
142         ///
143         virtual std::string const & name() const { return name_; }
144         ///
145         virtual std::string const inset2string(Buffer const &) const;
146         ///
147         static void string2params(std::string const &, std::string const & name,
148                                   InsetCommandParams &);
149         ///
150         static std::string const params2string(std::string const & name,
151                                                InsetCommandParams const &);
152 private:
153         ///
154         std::string const name_;
155         ///
156         InsetCommand & inset_;
157 };
158
159
160
161 } // namespace lyx
162
163 #endif