mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a4d47c3448
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5110 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetoptarg.h
|
|
* Copyright 2002 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Martin Vermeer <martin.vermeer@hut.fi>
|
|
*/
|
|
|
|
#ifndef INSETOPTARG_H
|
|
#define INSETOPTARG_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "insettext.h"
|
|
#include "insetcollapsable.h"
|
|
|
|
|
|
/**
|
|
* InsetOptArg. Used to insert a short version of sectioning header etc.
|
|
* automatically, or other optional LaTeX arguments
|
|
*/
|
|
class InsetOptArg : public InsetCollapsable {
|
|
public:
|
|
InsetOptArg(BufferParams const &);
|
|
|
|
InsetOptArg(InsetOptArg const &, bool same_id = false);
|
|
|
|
/// make a duplicate of this inset
|
|
Inset * clone(Buffer const &, bool same_id = false) const;
|
|
|
|
/// this inset is editable
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
/// code of the inset
|
|
Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
|
|
/// return an message upon editing
|
|
string const editMessage() const;
|
|
|
|
/// Standard LaTeX output -- short-circuited
|
|
int latex(Buffer const *, std::ostream &,
|
|
bool fragile, bool fp) const;
|
|
/// Outputting the optional parameter of a LaTeX command
|
|
int latexOptional(Buffer const *, std::ostream &,
|
|
bool fragile, bool fp) const;
|
|
/// Write out tothe .lyx file
|
|
void write(Buffer const * buf, std::ostream & os) const;
|
|
};
|
|
|
|
#endif // INSETOPTARG_H
|