mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Pinch to zoom :)
This commit is contained in:
parent
dc0eda83a0
commit
6d112708ba
@ -37,6 +37,7 @@
|
|||||||
#include "Graphs/gFlagsLine.h"
|
#include "Graphs/gFlagsLine.h"
|
||||||
#include "SleepLib/profiles.h"
|
#include "SleepLib/profiles.h"
|
||||||
|
|
||||||
|
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
@ -297,6 +298,16 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
|||||||
#endif
|
#endif
|
||||||
m_offsetY(0), m_offsetX(0), m_scaleY(0.0), m_scrollbar(nullptr)
|
m_offsetY(0), m_offsetX(0), m_scaleY(0.0), m_scrollbar(nullptr)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
// this->grabGesture(Qt::SwipeGesture);
|
||||||
|
// this->grabGesture(Qt::PanGesture);
|
||||||
|
// this->grabGesture(Qt::TapGesture);
|
||||||
|
// this->grabGesture(Qt::TapAndHoldGesture);
|
||||||
|
// this->grabGesture(Qt::CustomGesture);
|
||||||
|
this->grabGesture(Qt::PinchGesture);
|
||||||
|
this->setAttribute(Qt::WA_AcceptTouchEvents);
|
||||||
|
// this->setAttribute(Qt::WA_TouchPadAcceptSingleTouchEvents);
|
||||||
|
|
||||||
m_shared = shared;
|
m_shared = shared;
|
||||||
m_sizer_index = m_graph_index = 0;
|
m_sizer_index = m_graph_index = 0;
|
||||||
m_metaselect = m_button_down = m_graph_dragging = m_sizer_dragging = false;
|
m_metaselect = m_button_down = m_graph_dragging = m_sizer_dragging = false;
|
||||||
@ -469,6 +480,90 @@ gGraphView::~gGraphView()
|
|||||||
m_graphs.clear();
|
m_graphs.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool gGraphView::event(QEvent * event)
|
||||||
|
{
|
||||||
|
if (event->type() == QEvent::Gesture) {
|
||||||
|
return gestureEvent(static_cast<QGestureEvent *>(event));
|
||||||
|
}
|
||||||
|
return QWidget::event(event);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool gGraphView::gestureEvent(QGestureEvent * event)
|
||||||
|
{
|
||||||
|
if (QGesture *pinch = event->gesture(Qt::PinchGesture))
|
||||||
|
pinchTriggered(static_cast<QPinchGesture *>(pinch));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool gGraphView::pinchTriggered(QPinchGesture * gesture)
|
||||||
|
{
|
||||||
|
gGraph * graph = nullptr;
|
||||||
|
int group =0;
|
||||||
|
if (!graph) {
|
||||||
|
// just pick any graph then
|
||||||
|
for (int i = 0; i < m_graphs.size(); i++) {
|
||||||
|
if (!m_graphs[i]) continue;
|
||||||
|
if (!m_graphs[i]->isEmpty()) {
|
||||||
|
graph = m_graphs[i];
|
||||||
|
group = graph->group();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else group=graph->group();
|
||||||
|
|
||||||
|
if (!graph) { return true; }
|
||||||
|
|
||||||
|
//qDebug() << gesture << gesture->scaleFactor();
|
||||||
|
if (gesture->state() == Qt::GestureStarted) {
|
||||||
|
pinch_min = m_minx;
|
||||||
|
pinch_max = m_maxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
int origin_px = gesture->centerPoint().x() - titleWidth;
|
||||||
|
|
||||||
|
// could use this instead, and have it more dynamic
|
||||||
|
// graph->ZoomX(gesture->scaleFactor(), x);
|
||||||
|
|
||||||
|
static const double zoom_hard_limit = 500.0;
|
||||||
|
|
||||||
|
qint64 min = pinch_min;
|
||||||
|
qint64 max = pinch_max;
|
||||||
|
|
||||||
|
int width = graph->m_rect.width() - graph->left - graph->right;
|
||||||
|
|
||||||
|
double hardspan = graph->rmax_x - graph->rmin_x;
|
||||||
|
double span = max - min;
|
||||||
|
double ww = double(origin_px) / double(width);
|
||||||
|
double origin = ww * span;
|
||||||
|
|
||||||
|
double q = span * gesture->scaleFactor();
|
||||||
|
|
||||||
|
if (q > hardspan) { q = hardspan; }
|
||||||
|
|
||||||
|
if (q < hardspan / zoom_hard_limit) { q = hardspan / zoom_hard_limit; }
|
||||||
|
|
||||||
|
min = min + origin - (q * ww);
|
||||||
|
max = min + q;
|
||||||
|
|
||||||
|
if (min < graph->rmin_x) {
|
||||||
|
min = graph->rmin_x;
|
||||||
|
max = min + q;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (max > graph->rmax_x) {
|
||||||
|
max = graph->rmax_x;
|
||||||
|
min = max - q;
|
||||||
|
}
|
||||||
|
|
||||||
|
//extern const int max_history;
|
||||||
|
|
||||||
|
SetXBounds(min, max, graph->m_group);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void gGraphView::dumpInfo()
|
void gGraphView::dumpInfo()
|
||||||
{
|
{
|
||||||
QDate date = mainwin->getDaily()->getDate();
|
QDate date = mainwin->getDaily()->getDate();
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
#include <QDoubleSpinBox>
|
#include <QDoubleSpinBox>
|
||||||
#include <QToolButton>
|
#include <QToolButton>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
#include <QGestureEvent>
|
||||||
|
#include <QPinchGesture>
|
||||||
|
|
||||||
#ifndef BROKEN_OPENGL_BUILD
|
#ifndef BROKEN_OPENGL_BUILD
|
||||||
#if QT_VERSION < QT_VERSION_CHECK(5,4,0)
|
#if QT_VERSION < QT_VERSION_CHECK(5,4,0)
|
||||||
@ -531,6 +533,12 @@ class gGraphView
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
bool event(QEvent * event) Q_DECL_OVERRIDE;
|
||||||
|
|
||||||
|
bool gestureEvent(QGestureEvent * event);
|
||||||
|
bool pinchTriggered(QPinchGesture * gesture);
|
||||||
|
|
||||||
|
|
||||||
virtual void leaveEvent (QEvent * event);
|
virtual void leaveEvent (QEvent * event);
|
||||||
|
|
||||||
//! \brief The heart of the drawing code
|
//! \brief The heart of the drawing code
|
||||||
@ -612,6 +620,8 @@ class gGraphView
|
|||||||
bool m_graph_dragging;
|
bool m_graph_dragging;
|
||||||
int m_graph_index;
|
int m_graph_index;
|
||||||
|
|
||||||
|
qint64 pinch_min, pinch_max;
|
||||||
|
|
||||||
//! \brief List of all queue text to draw.. not sure why I didn't use a vector here.. Might of been a leak issue
|
//! \brief List of all queue text to draw.. not sure why I didn't use a vector here.. Might of been a leak issue
|
||||||
QVector<TextQue> m_textque;
|
QVector<TextQue> m_textque;
|
||||||
|
|
||||||
|
@ -94,8 +94,7 @@ void UpdaterWindow::checkForUpdates()
|
|||||||
mainwin->Notify(tr("Checking for SleepyHead Updates"));
|
mainwin->Notify(tr("Checking for SleepyHead Updates"));
|
||||||
|
|
||||||
// language code?
|
// language code?
|
||||||
update_url =
|
update_url = QUrl("http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/update.xml/download");
|
||||||
QUrl("http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/update.xml/download");
|
|
||||||
downloadUpdateXML();
|
downloadUpdateXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user