Mercurial > dillo_port1.3
annotate dw/bullet.hh @ 2030:382160be8c2f
cookies comments
I was going to say something in the comments about simplicity and not
implementing every little bit of the rfc when we don't know of cookies
that make it necessary, but then I suppose that's all implied with dillo.
author | corvid <corvid@lavabit.com> |
---|---|
date | Tue, 17 May 2011 22:48:50 +0000 |
parents | b277eed3119c |
children |
rev | line source |
---|---|
347 | 1 #ifndef __BULLET_HH__ |
2 #define __BULLET_HH__ | |
3 | |
4 #include "core.hh" | |
5 | |
6 namespace dw { | |
7 | |
8 /** | |
9 * \brief Displays different kind of bullets. | |
10 * | |
11 * Perhaps, in the future, Unicode characters are used for bullets, so this | |
12 * widget is not used anymore. | |
13 */ | |
14 class Bullet: public core::Widget | |
15 { | |
16 protected: | |
17 void sizeRequestImpl (core::Requisition *requisition); | |
930
b277eed3119c
whitespace cleanup: 's/ +$//g'
Jorge Arellano Cid <jcid@dillo.org>
parents:
347
diff
changeset
|
18 void draw (core::View *view, core::Rectangle *area); |
b277eed3119c
whitespace cleanup: 's/ +$//g'
Jorge Arellano Cid <jcid@dillo.org>
parents:
347
diff
changeset
|
19 core::Iterator *iterator (core::Content::Type mask, bool atEnd); |
347 | 20 |
21 public: | |
22 Bullet (); | |
23 }; | |
24 | |
25 } // namespace dw | |
26 | |
27 #endif // __BULLET_HH__ |