]> git.lyx.org Git - lyx.git/blob - src/insets/insetoptarg.h
get rid of same_id from function signatures
[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 "insettext.h"
17 #include "insetcollapsable.h"
18
19
20 /**
21  * InsetOptArg. Used to insert a short version of sectioning header etc.
22  * automatically, or other optional LaTeX arguments
23  */
24 class InsetOptArg : public InsetCollapsable {
25 public:
26         InsetOptArg(BufferParams const &);
27
28         InsetOptArg(InsetOptArg const &);
29         //InsetOptArg(InsetOptArg const &, bool same_id);
30
31         /// make a duplicate of this inset
32         Inset * clone(Buffer const &) const;
33         /// make a duplicate of this inset
34         //Inset * clone(Buffer const &, bool same_id) const;
35
36         /// this inset is editable
37         EDITABLE editable() const { return IS_EDITABLE; }
38         /// code of the inset
39         Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
40         /// return an message upon editing
41         string const editMessage() const;
42
43         /// Standard LaTeX output -- short-circuited
44         int latex(Buffer const *, std::ostream &,
45                   LatexRunParams const &) const;
46         /// Outputting the optional parameter of a LaTeX command
47         int latexOptional(Buffer const *, std::ostream &,
48                           LatexRunParams const &) const;
49         /// Write out tothe .lyx file
50         void write(Buffer const * buf, std::ostream & os) const;
51 };
52
53 #endif // INSETOPTARG_H