From a0b7282b31ed31051ee98bf16e8704d5599e5461 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 6 Mar 2013 09:30:52 +0100 Subject: Major GUI workover. Hilights: A new filebrowser and new knob widget. --- plugingui/guievent.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'plugingui/guievent.h') diff --git a/plugingui/guievent.h b/plugingui/guievent.h index 0fb3ef2..d8d6955 100644 --- a/plugingui/guievent.h +++ b/plugingui/guievent.h @@ -61,27 +61,28 @@ class MouseMoveEvent : public Event { public: Type type() { return MouseMove; } - size_t x; - size_t y; + int x; + int y; }; class ButtonEvent : public Event { public: Type type() { return Button; } - size_t x; - size_t y; + int x; + int y; int direction; int button; + int doubleclick; }; class RepaintEvent : public Event { public: Type type() { return Repaint; } - size_t x; - size_t y; + int x; + int y; size_t width; size_t height; }; -- cgit v1.2.3