]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCommand.h
Make destructors virtual in base classes and only there.
[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 #include "Cursor.h"
20
21
22 namespace lyx {
23
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                 std::string const & mailer_name);
40         ///
41         InsetCommand(InsetCommand const & rhs);
42         ///
43         virtual ~InsetCommand();
44
45         /// returns true if params are successfully read
46         static bool string2params(std::string const &, std::string const & name,
47                                   InsetCommandParams &);
48         ///
49         static std::string params2string(std::string const & name,
50                                                InsetCommandParams const &);
51         ///
52         InsetCommandParams const & params() const { return p_; }
53         ///
54         void setParams(InsetCommandParams const &);
55         ///
56         void setParam(std::string const & name, docstring const & value);
57         ///
58         docstring const & getParam(std::string const & name) const;
59         /// FIXME Remove
60         docstring const getFirstNonOptParam() const { return p_.getFirstNonOptParam(); }
61         /// update label and references.
62         virtual void updateCommand(docstring const &, bool) {}
63         /// 
64         virtual InsetCommand * asInsetCommand() { return this; }
65         /// 
66         virtual InsetCommand const * asInsetCommand() const { return this; }
67         /// whether to include this inset in the strings generated for the TOC
68         virtual bool isInToc() const { return false; }
69
70 protected:
71         ///
72         void write(std::ostream & os) const { p_.write(os); }
73         ///
74         void read(Lexer & lex) { p_.read(lex); }
75         ///
76         void doDispatch(Cursor & cur, FuncRequest & cmd);
77         ///
78         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
79         ///
80         docstring const getCommand(OutputParams & rp) const { return p_.getCommand(rp); }
81         ///
82         std::string const & getCmdName() const { return p_.getCmdName(); }
83         ///
84         void setCmdName(std::string const & n) { p_.setCmdName(n); }
85
86 private:
87         ///
88         void metrics(MetricsInfo &, Dimension &) const;
89         ///
90         Dimension const dimension(BufferView const &) const { return button_.dimension(); }
91         ///
92         void draw(PainterInfo & pi, int x, int y) const;
93         ///
94         int latex(odocstream &, OutputParams const &) const;
95         ///
96         int plaintext(odocstream &, OutputParams const &) const;
97         ///
98         int docbook(odocstream &, OutputParams const & runparams) const;
99         ///
100         InsetCode lyxCode() const { return NO_CODE; }
101         ///
102         RenderButton & button() const { return button_; }
103         ///
104         bool setMouseHover(BufferView const * bv, bool mouse_hover);
105         /// Return parameter information for command cmdName.
106         /// Not implemented here. Must be implemented in derived class.
107         static ParamInfo const & findInfo(std::string const & cmdName);
108         /// Return default command for this inset.
109         /// Not implemented here. Must be implemented in derived class.
110         static std::string defaultCommand();
111         /// Whether this is a command this inset can represent.
112         /// Not implemented here. Must be implemented in derived class.
113         static bool isCompatibleCommand(std::string const & cmd);
114         ///
115         docstring contextMenu(BufferView const & bv, int x, int y) const;
116         /// This should provide the text for the button
117         virtual docstring screenLabel() const = 0;
118         ///
119         bool showInsetDialog(BufferView * bv) const;
120         ///
121         InsetCommandParams p_;
122         ///
123         std::string mailer_name_;
124         /// changes color when mouse enters/leaves this inset
125         mutable std::map<BufferView const *, bool> mouse_hover_;
126         ///
127         mutable RenderButton button_;
128 };
129
130 /// Decode InsetCommand considering Inset name and data.
131 bool decodeInsetParam(std::string const & name, std::string & data,
132         Buffer const & buffer);
133
134 } // namespace lyx
135
136 #endif