]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCommand.h
1be72a8ec856db9c0e55c221dd2d9e1b6d1c1868
[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         /// \name Public functions inherited from Inset class
67         //@{
68         ///
69         void write(std::ostream & os) const { p_.write(os); }
70         ///
71         void read(Lexer & lex) { p_.Read(lex, &buffer()); }
72         ///
73         void doDispatch(Cursor & cur, FuncRequest & cmd);
74         ///
75         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
76         ///
77         void metrics(MetricsInfo &, Dimension &) const;
78         ///
79         void draw(PainterInfo & pi, int x, int y) const;
80         ///
81         void latex(otexstream &, OutputParams const &) const;
82         ///
83         int plaintext(odocstringstream & ods, OutputParams const & op,
84                       size_t max_length = INT_MAX) const;
85         ///
86         int docbook(odocstream &, OutputParams const & runparams) const;
87         ///
88         bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
89         ///
90         bool clickable(int, int) const { return hasSettings(); }
91         //@}
92
93 protected:
94         /// \name Methods relaying to the InsetCommandParams p_
95         //@{
96         ///
97         std::string contextMenuName() const;
98         ///
99         bool showInsetDialog(BufferView * bv) const;
100         ///
101         Dimension const dimension(BufferView const &) const 
102                 { return button_.dimension(); }
103         //@}
104
105 protected:
106         /// \name Functions relaying to the InsetCommandParams
107         //@{
108         /// Build the complete LaTeX command
109         /// \see InsetCommandParams::getCommand
110         docstring const getCommand(OutputParams const & rp) const 
111                 { return p_.getCommand(rp); }
112         /// Return the command name
113         /// \see InsetCommandParams::getCmdName
114         std::string const & getCmdName() const { return p_.getCmdName(); }
115         /// Set the name to \p n. This must be a known name. All parameters
116         /// are cleared except those that exist also in the new command.
117         /// What matters here is the parameter name, not position.
118         /// \see InsetCommandParams::setCmdName
119         void setCmdName(std::string const & n) { p_.setCmdName(n); }
120         //@}
121
122 private:
123         ///
124         RenderButton & button() const { return button_; }
125         /// This should provide the text for the button
126         virtual docstring screenLabel() const = 0;
127
128         /// \name Static public methods obligated for InsetCommand derived classes
129         //@{
130         /// Return parameter information for command cmdName.
131         /// Not implemented here. Must be implemented in derived class.
132         static ParamInfo const & findInfo(std::string const & cmdName);
133         /// Return default command for this inset.
134         /// Not implemented here. Must be implemented in derived class.
135         static std::string defaultCommand();
136         /// Whether this is a command this inset can represent.
137         /// Not implemented here. Must be implemented in derived class.
138         static bool isCompatibleCommand(std::string const & cmd);
139         //@}
140
141         ///
142         InsetCommandParams p_;
143         /// changes color when mouse enters/leaves this inset
144         mutable std::map<BufferView const *, bool> mouse_hover_;
145         ///
146         mutable RenderButton button_;
147 };
148
149 /// Decode InsetCommand considering Inset name and data.
150 bool decodeInsetParam(std::string const & name, std::string & data,
151         Buffer const & buffer);
152
153 } // namespace lyx
154
155 #endif