mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
6e8312d1a4
- put the InsetFlex specific part into InsetFlex, - honor the argument given to the LFUN also for normal Insets as the description already stated, - fix bug #6285: context menu action goes to the wrong inset. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31756 a592a061-630c-0410-9148-cb99ea01b6c8
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetFlex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Martin Vermeer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETFLEX_H
|
|
#define INSETFLEX_H
|
|
|
|
#include "InsetCollapsable.h"
|
|
|
|
namespace lyx {
|
|
|
|
/** The Flex inset, e.g., CharStyle, Custom inset or XML short element
|
|
|
|
*/
|
|
class InsetFlex : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetFlex(Buffer const &, std::string const & layoutName);
|
|
///
|
|
docstring name() const { return from_utf8(name_); }
|
|
///
|
|
InsetCode lyxCode() const { return FLEX_CODE; }
|
|
/// Default looks
|
|
InsetLayout::InsetDecoration decoration() const;
|
|
///
|
|
void write(std::ostream &) const;
|
|
/// should paragraph indendation be ommitted in any case?
|
|
bool neverIndent() const { return true; }
|
|
///
|
|
bool hasSettings() const { return false; }
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
FuncStatus &) const;
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
|
|
protected:
|
|
///
|
|
InsetFlex(InsetFlex const &);
|
|
|
|
private:
|
|
///
|
|
Inset * clone() const { return new InsetFlex(*this); }
|
|
///
|
|
std::string name_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|