aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/gifs/eventcapturer.cpp
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-10-08 12:48:06 +0200
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-10-14 11:58:33 +0000
commit090db511a36464c78f11df3b6596a56f09986951 (patch)
tree389bf7e9b04fa6cf7dfbc035e9568b98cf7b8e44 /tests/manual/gifs/eventcapturer.cpp
parentb5b6fc732bb7a09996c06b1df3b71cf2548b0d7c (diff)
Add RangeSlider
This is basically Slider, except with two handles. It's used to specify a range of values. Task-number: QTBUG-48667 Change-Id: Ib4f9afe5dc8343e307610943d338a2b574a01e4d Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests/manual/gifs/eventcapturer.cpp')
-rw-r--r--tests/manual/gifs/eventcapturer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manual/gifs/eventcapturer.cpp b/tests/manual/gifs/eventcapturer.cpp
index f84d7840..17994e3b 100644
--- a/tests/manual/gifs/eventcapturer.cpp
+++ b/tests/manual/gifs/eventcapturer.cpp
@@ -228,6 +228,7 @@ void EventCapturer::stopCapturing()
void EventCapturer::captureEvent(const QEvent *event)
{
+ qDebug() << "captured" << event->type();
CapturedEvent capturedEvent(*event, mDelayTimer.elapsed() - mLastCaptureTime);
mEvents.append(capturedEvent);
mLastCaptureTime = mDelayTimer.elapsed();