blob: 4c8951ada5ab42112d51a51d52093e412ca02d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __DW_REGARDINGBORDER_HH__
#define __DW_REGARDINGBORDER_HH__
#include "core.hh"
namespace dw {
/**
* \brief Base class (rather a tag interface) for those widgets
* regarding borders defined by floats, and so allocated on the
* full width.
*
* Will, when integrated to the "dillo_grows" repository, become a sub
* class of OOFAwareWidget.
*/
class RegardingBorder: public core::Widget
{
public:
static int CLASS_ID;
RegardingBorder ();
~RegardingBorder ();
};
} // namespace dw
#endif // __DW_REGARDINGBORDER_HH__
|