]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCommand.h
Fix commented out code
[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 INSETCOMMAND_H
14 #define INSETCOMMAND_H
15
16 #include "Inset.h"
17 #include "InsetCommandParams.h"
18 #include "RenderButton.h"
19
20
21 namespace lyx {
22
23 class Cursor;
24
25 /////////////////////////////////////////////////////////////////////////
26 //
27 // InsetCommand
28 //
29 /////////////////////////////////////////////////////////////////////////
30
31 // Created by Alejandro 970222
32 // Used to insert a LaTeX command automatically.
33
34 class InsetCommand : public Inset
35 {
36 public:
37         ///
38         InsetCommand(Buffer *, InsetCommandParams const &);
39         ///
40         InsetCommand(InsetCommand const & rhs);
41         ///
42         InsetCommand & operator=(InsetCommand const & rhs);
43         ///
44         virtual ~InsetCommand();
45         ///
46         InsetCommand * asInsetCommand() { return this; }
47         ///
48         InsetCommand const * asInsetCommand() const { return this; }
49
50         /// \return true if params are successfully read
51         static bool string2params(std::string const & data,
52                                   InsetCommandParams &);
53         ///
54         static std::string params2string(InsetCommandParams const &);
55         ///
56         InsetCommandParams const & params() const { return p_; }
57         ///
58         void setParams(InsetCommandParams const &);
59         ///
60         docstring const & getParam(std::string const & name) const;
61         ///
62         void setParam(std::string const & name, docstring const & value);
63         /// FIXME Remove
64         docstring const getFirstNonOptParam() const { return p_.getFirstNonOptParam(); }
65         ///
66         void setBroken(bool const b) const { broken_ = b; }
67         ///
68         bool isBroken() const { return broken_; }
69
70         /// \name Public functions inherited from Inset class
71         //@{
72         ///
73         void write(std::ostream & os) const { p_.write(os); }
74         ///
75         void read(Lexer & lex) { p_.Read(lex, &buffer()); }
76         ///
77         void doDispatch(Cursor & cur, FuncRequest & cmd);
78         ///
79         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
80         ///
81         void metrics(MetricsInfo &, Dimension &) const;
82         ///
83         void draw(PainterInfo & pi, int x, int y) const;
84         ///
85         virtual void drawBackground(PainterInfo &, int, int) const {}
86         ///
87         void latex(otexstream &, OutputParams const &) const;
88         ///
89         int plaintext(odocstringstream & ods, OutputParams const & op,
90                       size_t max_length = INT_MAX) const;
91         ///
92         int docbook(odocstream &, OutputParams const & runparams) const;
93         ///
94         void validate(LaTeXFeatures & features) const;
95         ///
96         bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
97         ///
98         bool clickable(BufferView const &, int, int) const { return hasSettings(); }
99         //@}
100
101 protected:
102         /// \name Methods relaying to the InsetCommandParams p_
103         //@{
104         ///
105         std::string contextMenuName() const;
106         ///
107         bool showInsetDialog(BufferView * bv) const;
108         //@}
109
110 protected:
111         /// \name Functions relaying to the InsetCommandParams
112         //@{
113         /// Build the complete LaTeX command
114         /// \see InsetCommandParams::getCommand
115         docstring const getCommand(OutputParams const & rp) const
116                 { return p_.getCommand(rp); }
117         /// Return the command name
118         /// \see InsetCommandParams::getCmdName
119         std::string const & getCmdName() const { return p_.getCmdName(); }
120         /// Set the name to \p n. This must be a known name. All parameters
121         /// are cleared except those that exist also in the new command.
122         /// What matters here is the parameter name, not position.
123         /// \see InsetCommandParams::setCmdName
124         void setCmdName(std::string const & n) { p_.setCmdName(n); }
125         ///
126         void changeCmdName(std::string const & new_name);
127         //@}
128
129 private:
130         ///
131         RenderButton & button() const { return button_; }
132         /// This should provide the text for the button
133         virtual docstring screenLabel() const = 0;
134
135         /// \name Static public methods obligated for InsetCommand derived classes
136         //@{
137         /// Return parameter information for command cmdName.
138         /// Not implemented here. Must be implemented in derived class.
139         static ParamInfo const & findInfo(std::string const & cmdName);
140         /// Return default command for this inset.
141         /// Not implemented here. Must be implemented in derived class.
142         static std::string defaultCommand();
143         /// Whether this is a command this inset can represent.
144         /// Not implemented here. Must be implemented in derived class.
145         static bool isCompatibleCommand(std::string const & cmd);
146         //@}
147
148         ///
149         InsetCommandParams p_;
150         /// changes color when mouse enters/leaves this inset
151         mutable std::map<BufferView const *, bool> mouse_hover_;
152         ///
153         mutable RenderButton button_;
154         ///
155         mutable bool broken_;
156 };
157
158 /// Decode InsetCommand considering Inset name and data.
159 bool decodeInsetParam(std::string const & name, std::string & data,
160         Buffer const & buffer);
161
162 } // namespace lyx
163
164 #endif