]> git.lyx.org Git - lyx.git/blob - src/insets/InsetArgument.h
Move the global formats and system_formats variables into the
[lyx.git] / src / insets / InsetArgument.h
1 // -*- C++ -*-
2 /**
3  * \file InsetArgument.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Martin Vermeer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETARGUMENT_H
13 #define INSETARGUMENT_H
14
15
16 #include "InsetCollapsable.h"
17
18
19 namespace lyx {
20
21
22 /**
23  * InsetArgument. Used to insert a short version of sectioning header etc.
24  * automatically, or other optional LaTeX arguments
25  */
26 class InsetArgument : public InsetCollapsable
27 {
28 public:
29         ///
30         InsetArgument(Buffer *, std::string const &);
31
32         /// Outputting the parameter of a LaTeX command
33         void latexArgument(otexstream & os, OutputParams const & runparams_in,
34                            docstring const & ldelim, docstring const & rdelim,
35                            docstring const & presetarg) const;
36
37         std::string name() const { return name_; }
38
39         /// \name Public functions inherited from Inset class
40         //@{
41         ///
42         bool hasSettings() const { return false; }
43         ///
44         InsetCode lyxCode() const { return ARG_CODE; }
45         ///
46         docstring layoutName() const { return from_ascii("Argument"); }
47         /// Update the label string of this inset
48         void updateBuffer(ParIterator const &, UpdateType);
49         ///
50         void latex(otexstream &, OutputParams const &) const { }
51         ///
52         int plaintext(odocstringstream &, OutputParams const &, size_t) const { return 0; }
53         ///
54         int docbook(odocstream &, OutputParams const &) const { return 0; }
55         ///
56         docstring xhtml(XHTMLStream &, OutputParams const &) const 
57                 { return docstring(); }
58         ///
59         void write(std::ostream & os) const;
60         ///
61         void read(Lexer & lex);
62         ///
63         bool neverIndent() const { return true; }
64         ///
65         std::string contextMenuName() const;
66         ///
67         bool isPassThru() const { return pass_thru_; }
68         ///
69         bool resetFontEdit() const { return false; }
70         //@}
71         /// \name Public functions inherited from InsetCollapsable class
72         //@{
73         ///
74         InsetLayout::InsetDecoration decoration() const;
75         ///
76         FontInfo getFont() const;
77         ///
78         FontInfo getLabelfont() const;
79         ///
80         ColorCode labelColor() const;
81         ///
82         void setButtonLabel();
83         //@}
84         ///
85         void addToToc(DocIterator const & dit, bool output_active,
86                       UpdateType utype, TocBackend & backend) const; //override
87
88 private:
89         ///
90         docstring toolTip(BufferView const & bv, int, int) const;
91         ///
92         std::string name_;
93         ///
94         docstring labelstring_;
95         ///
96         docstring tooltip_;
97         ///
98         FontInfo font_;
99         ///
100         FontInfo labelfont_;
101         ///
102         std::string decoration_;
103         /// Are we in a pass-thru context?
104         bool pass_thru_context_;
105         /// Is the argument itself have an explicitly pass-thru?
106         bool pass_thru_local_;
107         /// Effective pass-thru setting (inherited or local)
108         bool pass_thru_;
109         ///
110         docstring pass_thru_chars_;
111         /// The type of Toc this is the caption of, empty otherwise.
112         std::string caption_of_toc_;
113
114 protected:
115         /// \name Protected functions inherited from Inset class
116         //@{
117         ///
118         bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
119         ///
120         void doDispatch(Cursor & cur, FuncRequest & cmd);
121         ///
122         Inset * clone() const { return new InsetArgument(*this); }
123         /// Is the content of this inset part of the immediate (visible) text sequence?
124         bool isPartOfTextSequence() const { return false; }
125         //@}
126 };
127
128
129 } // namespace lyx
130
131 #endif // INSETARGUMENT_H