summaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-04 17:54:56 +0000
committertruelight <truelight@openttd.org>2004-12-04 17:54:56 +0000
commitb8f6d41418982163965dd5beb0b39dbdce1fbe8f (patch)
tree68d3e795694a875138c369707ed74b5b4b022d49 /window.c
parent0434287ef826a4ed72cd8528a52a86ae8b70a948 (diff)
downloadopenttd-b8f6d41418982163965dd5beb0b39dbdce1fbe8f.tar.xz
(svn r942) -Merged branch/network back into the trunk
Diffstat (limited to 'window.c')
-rw-r--r--window.c40
1 files changed, 39 insertions, 1 deletions
diff --git a/window.c b/window.c
index 2a3bcf16d..01b54becc 100644
--- a/window.c
+++ b/window.c
@@ -170,6 +170,7 @@ void DrawOverlappedWindow(Window *w, int left, int top, int right, int bottom)
void CallWindowEventNP(Window *w, int event)
{
WindowEvent e;
+
e.event = event;
w->wndproc(w, &e);
}
@@ -691,7 +692,40 @@ static bool HandlePopupMenu()
return false;
}
-static bool HandleWindowDragging()
+bool HandleMouseOver()
+{
+ Window *w;
+ WindowEvent e;
+ static Window *last_w = NULL;
+
+ w = FindWindowFromPt(_cursor.pos.x, _cursor.pos.y);
+
+ // We changed window, put a MOUSEOVER event to the last window
+ if (last_w && last_w != w) {
+ e.event = WE_MOUSEOVER;
+ e.mouseover.pt.x = -1;
+ e.mouseover.pt.y = -1;
+ if (last_w->wndproc)
+ last_w->wndproc(last_w, &e);
+ }
+ last_w = w;
+
+ if (w) {
+ // send an event in client coordinates.
+ e.event = WE_MOUSEOVER;
+ e.mouseover.pt.x = _cursor.pos.x - w->left;
+ e.mouseover.pt.y = _cursor.pos.y - w->top;
+ if (w->widget != NULL) {
+ e.mouseover.widget = GetWidgetFromPos(w, e.mouseover.pt.x, e.mouseover.pt.y);
+ }
+ w->wndproc(w, &e);
+ }
+
+ // Mouseover never stops execution
+ return true;
+}
+
+bool HandleWindowDragging()
{
Window *w;
// Get out immediately if no window is being dragged at all.
@@ -1083,6 +1117,9 @@ void MouseLoop()
if (!HandleViewportScroll())
return;
+ if (!HandleMouseOver())
+ return;
+
x = _cursor.pos.x;
y = _cursor.pos.y;
@@ -1188,6 +1225,7 @@ void UpdateWindows()
if (w->viewport != NULL)
UpdateViewportPosition(w);
}
+ DrawTextMessage();
// Redraw mouse cursor in case it was hidden
DrawMouseCursor();
}