From 92c860431386e1b74b5c469bc4479b8ca1b914b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Fri, 17 Sep 2010 01:28:08 +0000 Subject: [PATCH] InsetLine: - honor Abdel as author - reintroduce the /// spacers in the header file because it makes it better readable and we do this in all other inset header files GuiLine: honor Abdel as author git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35417 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetLine.cpp | 1 + src/insets/InsetLine.h | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/src/insets/InsetLine.cpp b/src/insets/InsetLine.cpp index e4dbc7ae7a..deb5597730 100644 --- a/src/insets/InsetLine.cpp +++ b/src/insets/InsetLine.cpp @@ -3,6 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * + * \author Abdelrazak Younes * \author André Pönitz * \author Uwe Stöhr * diff --git a/src/insets/InsetLine.h b/src/insets/InsetLine.h index cc5ce9bc7f..60b558e52e 100644 --- a/src/insets/InsetLine.h +++ b/src/insets/InsetLine.h @@ -4,6 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * + * \author Abdelrazak Younes * \author André Pönitz * \author Uwe Stöhr * @@ -29,8 +30,11 @@ public: /// InsetCommand inherited methods. //@{ docstring screenLabel() const; + /// static ParamInfo const & findInfo(std::string const &); + /// static std::string defaultCommand() { return "rule"; }; + /// static bool isCompatibleCommand(std::string const & s) { return s == "rule"; } //@} @@ -40,17 +44,27 @@ private: /// Inset inherited methods. //@{ InsetCode lyxCode() const { return LINE_CODE; } + /// Dimension const dimension(BufferView const &) const; + /// int docbook(odocstream &, OutputParams const &) const; /// Does nothing at the moment. docstring xhtml(XHTMLStream &, OutputParams const &) const; + /// bool hasSettings() const { return true; } + /// void metrics(MetricsInfo &, Dimension &) const; + /// void draw(PainterInfo & pi, int x, int y) const; + /// int latex(odocstream &, OutputParams const &) const; + /// int plaintext(odocstream &, OutputParams const &) const; + /// void doDispatch(Cursor & cur, FuncRequest & cmd); + /// bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const; + /// Inset * clone() const { return new InsetLine(*this); } //@} -- 2.39.2