]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetHFill.h
Andre's s/getTextClass/textClass/ cleanup.
[lyx.git] / src / insets / InsetHFill.h
index e5823e9d189fd682725729b6535af43cafe9bdcf..0364e6ecb1e76f19de6246ed34b37bca61b6581b 100644 (file)
@@ -25,6 +25,8 @@ public:
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
+       void draw(PainterInfo & pi, int x, int y) const;
+       ///
        docstring const getScreenLabel(Buffer const &) const;
        ///
        InsetCode lyxCode() const { return HFILL_CODE; }
@@ -41,7 +43,15 @@ public:
        /// is this equivalent to a space (which is BTW different from
        // a line separator)?
        bool isSpace() const;
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "hfill"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "hfill"; }
 private:
+       ///
        virtual Inset * clone() const;
 };