]> git.lyx.org Git - lyx.git/blob - src/insets/insetcommand.h
setFont rework + some code simplification
[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 "render_button.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(std::string const & c) { p_.scanCommand(c); };
47         ///
48         virtual int latex(Buffer const &, std::ostream &,
49                           OutputParams const &) const;
50         ///
51         int plaintext(Buffer const &, std::ostream &,
52                   OutputParams const &) const;
53         ///
54         virtual int linuxdoc(Buffer const &, std::ostream &,
55                              OutputParams const &) const;
56         ///
57         virtual int docbook(Buffer const &, std::ostream &,
58                             OutputParams const & runparams) const;
59         ///
60         InsetOld::Code lyxCode() const { return InsetOld::NO_CODE; }
61
62         ///
63         InsetCommandParams const & params() const { return p_; }
64         ///
65         std::string const & getContents() const { return p_.getContents(); }
66         ///
67         void setContents(std::string const & c) { p_.setContents(c); }
68         ///
69         std::string const & getOptions() const { return p_.getOptions(); }
70         ///
71         RenderButton & button() const { return button_; }
72
73 protected:
74         ///
75         virtual
76         DispatchResult
77         priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
78         ///
79         std::string const getCommand() const { return p_.getCommand(); }
80         ///
81         std::string const & getCmdName() const { return p_.getCmdName(); }
82         ///
83         void setCmdName(std::string const & n) { p_.setCmdName(n); }
84         ///
85         void setOptions(std::string const & o) { p_.setOptions(o); }
86         ///
87         void setParams(InsetCommandParams const &);
88         /// This should provide the text for the button
89         virtual std::string const getScreenLabel(Buffer const &) const = 0;
90
91 private:
92         ///
93         InsetCommandParams p_;
94         mutable bool set_label_;
95         mutable RenderButton button_;
96 };
97
98
99 class InsetCommandMailer : public MailInset {
100 public:
101         ///
102         InsetCommandMailer(std::string const & name, InsetCommand & inset);
103         ///
104         virtual InsetBase & inset() const { return inset_; }
105         ///
106         virtual std::string const & name() const { return name_; }
107         ///
108         virtual std::string const inset2string(Buffer const &) const;
109         ///
110         static void string2params(std::string const &, InsetCommandParams &);
111         ///
112         static std::string const params2string(std::string const & name,
113                                           InsetCommandParams const &);
114 private:
115         ///
116         std::string const name_;
117         ///
118         InsetCommand & inset_;
119 };
120
121
122 #endif