Mercurial > dillo_port1.3
view dw/bullet.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 __BULLET_HH__ #define __BULLET_HH__ #include "core.hh" namespace dw { /** * \brief Displays different kind of bullets. * * Perhaps, in the future, Unicode characters are used for bullets, so this * widget is not used anymore. */ class Bullet: public core::Widget { protected: void sizeRequestImpl (core::Requisition *requisition); void draw (core::View *view, core::Rectangle *area); core::Iterator *iterator (core::Content::Type mask, bool atEnd); public: Bullet (); }; } // namespace dw #endif // __BULLET_HH__