aboutsummaryrefslogtreecommitdiff
path: root/dw/widget.hh
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-02-09 14:56:31 -0300
committerJorge Arellano Cid <jcid@dillo.org>2009-02-09 14:56:31 -0300
commite32686c10a4f4fe7c34b181845220b5c491f32fb (patch)
treec090052c311a3a1732d03dc17fe357f97437b397 /dw/widget.hh
parent74f64426001a693759e47963f99965e0e6ee847d (diff)
whitespace cleanup: 's/ +$//g'
Diffstat (limited to 'dw/widget.hh')
-rw-r--r--dw/widget.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/dw/widget.hh b/dw/widget.hh
index 1bcfd032..0515f250 100644
--- a/dw/widget.hh
+++ b/dw/widget.hh
@@ -162,7 +162,7 @@ protected:
/**
* \brief Set, when dw::core::Widget::requisition is not up to date
* anymore.
- */
+ */
NEEDS_RESIZE = 1 << 0,
/**
@@ -175,7 +175,7 @@ protected:
/**
* \brief Set, when dw::core::Widget::extremes is not up to date
* anymore.
- */
+ */
EXTREMES_CHANGED = 1 << 2,
/**
@@ -183,7 +183,7 @@ protected:
* methods are implemented.
*
* Will hopefully be removed, after redesigning the size model.
- */
+ */
USES_HINTS = 1 << 3,
/**
@@ -191,7 +191,7 @@ protected:
* some contents, e.g. an image, as opposed to a horizontal ruler.
*
* Will hopefully be removed, after redesigning the size model.
- */
+ */
HAS_CONTENTS = 1 << 4,
/**
@@ -266,7 +266,7 @@ protected:
inline void setFlags (Flags f) { flags = (Flags)(flags | f); }
inline void unsetFlags (Flags f) { flags = (Flags)(flags & ~f); }
-
+
inline void queueDraw ()
{
@@ -343,7 +343,7 @@ protected:
EventMotion *event, bool withinContent)
{ return layout->selectionState.buttonMotion (it, charPos, linkNo, event,
withinContent); }
-
+
inline bool selectionHandleEvent (SelectionState::EventType eventType,
Iterator *it, int charPos, int linkNo,
MousePositionEvent *event,
@@ -375,7 +375,7 @@ public:
inline void connectLink (LinkReceiver *receiver)
{ linkEmitter.connectLink (receiver); }
-
+
inline bool emitLinkEnter (int link, int img, int x, int y)
{ return linkEmitter.emitEnter (this, link, img, x, y); }
@@ -417,7 +417,7 @@ public:
bool motionNotify (EventMotion *event);
void enterNotify (EventCrossing *event);
void leaveNotify (EventCrossing *event);
-
+
virtual void setStyle (style::Style *style);
void setBgColor (style::Color *bgColor);
style::Color *getBgColor ();