Initial import of Dillo
This commit is contained in:
31
dw/bullet.hh
Normal file
31
dw/bullet.hh
Normal file
@ -0,0 +1,31 @@
|
||||
#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 sizeRequestSimpl (core::Requisition *requisition);
|
||||
void getExtremesSimpl (core::Extremes *extremes);
|
||||
void containerSizeChangedForChildren ();
|
||||
void draw (core::View *view, core::Rectangle *area,
|
||||
core::DrawingContext *context);
|
||||
core::Iterator *iterator (core::Content::Type mask, bool atEnd);
|
||||
|
||||
public:
|
||||
Bullet ();
|
||||
~Bullet ();
|
||||
};
|
||||
|
||||
} // namespace dw
|
||||
|
||||
#endif // __BULLET_HH__
|
Reference in New Issue
Block a user