Mercurial > dillo_port1.3
view dw/ruler.hh @ 1738:7974b38cc036
use background-color on <html>-element
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Mon, 11 Oct 2010 23:36:36 +0200 |
parents | b277eed3119c |
children |
line wrap: on
line source
#ifndef __RULER_HH__ #define __RULER_HH__ #include "core.hh" namespace dw { /** * \brief Widget for drawing (horizontal) rules. * * This is really an empty widget, the HTML parser puts a border * around it, and drawing is done in dw::core::Widget::drawWidgetBox. * The only remarkable point is that the HAS_CONTENT flag is * cleared. */ class Ruler: public core::Widget { protected: void sizeRequestImpl (core::Requisition *requisition); void draw (core::View *view, core::Rectangle *area); public: Ruler (); core::Iterator *iterator (core::Content::Type mask, bool atEnd); }; } // namespace dw #endif // __RULER_HH__