diff options
Diffstat (limited to 'dw/bullet.hh')
-rw-r--r-- | dw/bullet.hh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dw/bullet.hh b/dw/bullet.hh new file mode 100644 index 00000000..00912bd8 --- /dev/null +++ b/dw/bullet.hh @@ -0,0 +1,27 @@ +#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__ |