mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 03:11:59 +00:00
InsetLine.h revert changes made in r35417
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35428 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
78ded48a22
commit
3a400812e1
@ -30,11 +30,8 @@ public:
|
|||||||
/// InsetCommand inherited methods.
|
/// InsetCommand inherited methods.
|
||||||
//@{
|
//@{
|
||||||
docstring screenLabel() const;
|
docstring screenLabel() const;
|
||||||
///
|
|
||||||
static ParamInfo const & findInfo(std::string const &);
|
static ParamInfo const & findInfo(std::string const &);
|
||||||
///
|
|
||||||
static std::string defaultCommand() { return "rule"; };
|
static std::string defaultCommand() { return "rule"; };
|
||||||
///
|
|
||||||
static bool isCompatibleCommand(std::string const & s)
|
static bool isCompatibleCommand(std::string const & s)
|
||||||
{ return s == "rule"; }
|
{ return s == "rule"; }
|
||||||
//@}
|
//@}
|
||||||
@ -44,27 +41,17 @@ private:
|
|||||||
/// Inset inherited methods.
|
/// Inset inherited methods.
|
||||||
//@{
|
//@{
|
||||||
InsetCode lyxCode() const { return LINE_CODE; }
|
InsetCode lyxCode() const { return LINE_CODE; }
|
||||||
///
|
|
||||||
Dimension const dimension(BufferView const &) const;
|
Dimension const dimension(BufferView const &) const;
|
||||||
///
|
|
||||||
int docbook(odocstream &, OutputParams const &) const;
|
int docbook(odocstream &, OutputParams const &) const;
|
||||||
/// Does nothing at the moment.
|
/// Does nothing at the moment.
|
||||||
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
||||||
///
|
|
||||||
bool hasSettings() const { return true; }
|
bool hasSettings() const { return true; }
|
||||||
///
|
|
||||||
void metrics(MetricsInfo &, Dimension &) const;
|
void metrics(MetricsInfo &, Dimension &) const;
|
||||||
///
|
|
||||||
void draw(PainterInfo & pi, int x, int y) const;
|
void draw(PainterInfo & pi, int x, int y) const;
|
||||||
///
|
|
||||||
int latex(odocstream &, OutputParams const &) const;
|
int latex(odocstream &, OutputParams const &) const;
|
||||||
///
|
|
||||||
int plaintext(odocstream &, OutputParams const &) const;
|
int plaintext(odocstream &, OutputParams const &) const;
|
||||||
///
|
|
||||||
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
||||||
///
|
|
||||||
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
||||||
///
|
|
||||||
Inset * clone() const { return new InsetLine(*this); }
|
Inset * clone() const { return new InsetLine(*this); }
|
||||||
//@}
|
//@}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user