summaryrefslogtreecommitdiff
path: root/dw/regardingborder.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2015-01-08 12:31:53 +0100
committerSebastian Geerken <devnull@localhost>2015-01-08 12:31:53 +0100
commit428094b178eb03d8e500c81837caac402e4b138c (patch)
tree353456467cadd4c258b8a8c3f306d817925500b6 /dw/regardingborder.hh
parentd37efc2feb2b387d879962f4ef3fed2b9bf5a5e9 (diff)
RegardingBorder; fixes problems with <hr/>.
Diffstat (limited to 'dw/regardingborder.hh')
-rw-r--r--dw/regardingborder.hh27
1 files changed, 27 insertions, 0 deletions
diff --git a/dw/regardingborder.hh b/dw/regardingborder.hh
new file mode 100644
index 00000000..4c8951ad
--- /dev/null
+++ b/dw/regardingborder.hh
@@ -0,0 +1,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__