Initial import of Dillo

This commit is contained in:
2025-02-28 13:34:30 -05:00
parent bd4e3eebd8
commit 20fea64cb5
496 changed files with 156174 additions and 0 deletions

24
dw/regardingborder.hh Normal file
View File

@ -0,0 +1,24 @@
#ifndef __DW_REGARDINGBORDER_HH__
#define __DW_REGARDINGBORDER_HH__
#include "oofawarewidget.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.
*/
class RegardingBorder: public oof::OOFAwareWidget
{
public:
static int CLASS_ID;
RegardingBorder ();
~RegardingBorder ();
};
} // namespace dw
#endif // __DW_REGARDINGBORDER_HH__