]> git.lyx.org Git - lyx.git/blob - src/insets/InsetOptArg.h
Fix text frame drawing.
[lyx.git] / src / insets / InsetOptArg.h
1 // -*- C++ -*-
2 /**
3  * \file InsetOptArg.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 INSETOPTARG_H
13 #define INSETOPTARG_H
14
15
16 #include "InsetCollapsable.h"
17
18
19 namespace lyx {
20
21
22 /**
23  * InsetOptArg. Used to insert a short version of sectioning header etc.
24  * automatically, or other optional LaTeX arguments
25  */
26 class InsetOptArg : public InsetCollapsable {
27 public:
28         InsetOptArg(BufferParams const &);
29
30         /// code of the inset
31         Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
32         /// return an message upon editing
33         virtual docstring const editMessage() const;
34
35         /// Standard LaTeX output -- short-circuited
36         int latex(Buffer const &, odocstream &,
37                   OutputParams const &) const;
38         /// Standard plain text output -- short-circuited
39         int plaintext(Buffer const &, odocstream &,
40                       OutputParams const &) const;
41         /// Standard DocBook output -- short-circuited
42         int docbook(Buffer const &, odocstream &,
43                     OutputParams const &) const;
44
45         /// Outputting the optional parameter of a LaTeX command
46         int latexOptional(Buffer const &, odocstream &,
47                           OutputParams const &) const;
48         /// Write out to the .lyx file
49         void write(Buffer const & buf, std::ostream & os) const;
50
51         /// should paragraph indendation be ommitted in any case?
52         virtual bool neverIndent(Buffer const &) const { return true; }
53 protected:
54         InsetOptArg(InsetOptArg const &);
55 private:
56         virtual Inset * clone() const;
57 };
58
59
60 } // namespace lyx
61
62 #endif // INSETOPTARG_H