mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Make all mouse events save history
This commit is contained in:
parent
60b32905be
commit
cbeba3fe05
@ -761,6 +761,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
|||||||
min_x = rmax_x - xx;
|
min_x = rmax_x - xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
||||||
doredraw = true;
|
doredraw = true;
|
||||||
} else {
|
} else {
|
||||||
@ -784,6 +785,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
|
|||||||
min_x = rmax_x - xx;
|
min_x = rmax_x - xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
m_graphview->SetXBounds(min_x, max_x, m_group, false);
|
||||||
doredraw = true;
|
doredraw = true;
|
||||||
}
|
}
|
||||||
@ -889,6 +891,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
|
|||||||
} else {
|
} else {
|
||||||
if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; }
|
if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; }
|
||||||
|
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(a1, a2, m_group);
|
m_graphview->SetXBounds(a1, a2, m_group);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -906,7 +909,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
|
|||||||
qDebug() << "Foo2??";
|
qDebug() << "Foo2??";
|
||||||
} else {
|
} else {
|
||||||
if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; }
|
if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; }
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(a1, a2, m_group);
|
m_graphview->SetXBounds(a1, a2, m_group);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -980,6 +983,7 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event)
|
|||||||
min_x = rmax_x - xx;
|
min_x = rmax_x - xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(min_x, max_x, m_group);
|
m_graphview->SetXBounds(min_x, max_x, m_group);
|
||||||
m_lastx23 = x;
|
m_lastx23 = x;
|
||||||
}
|
}
|
||||||
@ -1116,6 +1120,9 @@ void gGraph::ZoomX(double mult, int origin_px)
|
|||||||
min = max - q;
|
min = max - q;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern const int max_history;
|
||||||
|
|
||||||
|
m_graphview->saveHistory();
|
||||||
m_graphview->SetXBounds(min, max, m_group);
|
m_graphview->SetXBounds(min, max, m_group);
|
||||||
//updateSelectionTime(max-min);
|
//updateSelectionTime(max-min);
|
||||||
}
|
}
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
extern QLabel *qstatus2;
|
extern QLabel *qstatus2;
|
||||||
|
|
||||||
|
|
||||||
gToolTip::gToolTip(gGraphView *graphview)
|
gToolTip::gToolTip(gGraphView *graphview)
|
||||||
: m_graphview(graphview)
|
: m_graphview(graphview)
|
||||||
{
|
{
|
||||||
@ -1573,13 +1574,7 @@ void gGraphView::mouseReleaseEvent(QMouseEvent *event)
|
|||||||
if (m_button_down) {
|
if (m_button_down) {
|
||||||
m_button_down = false;
|
m_button_down = false;
|
||||||
m_metaselect = event->modifiers() & Qt::ShiftModifier;
|
m_metaselect = event->modifiers() & Qt::ShiftModifier;
|
||||||
|
saveHistory();
|
||||||
const int max_history = 20;
|
|
||||||
|
|
||||||
history.push_front(SelectionHistoryItem(m_minx, m_maxx));
|
|
||||||
if (history.size() > max_history) {
|
|
||||||
history.pop_back();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_metaselect) {
|
if (m_metaselect) {
|
||||||
m_point_released = event->pos();
|
m_point_released = event->pos();
|
||||||
@ -1603,7 +1598,10 @@ void gGraphView::keyReleaseEvent(QKeyEvent *event)
|
|||||||
if (history.size() > 0) {
|
if (history.size() > 0) {
|
||||||
SelectionHistoryItem h = history.takeFirst();
|
SelectionHistoryItem h = history.takeFirst();
|
||||||
SetXBounds(h.minx, h.maxx);
|
SetXBounds(h.minx, h.maxx);
|
||||||
|
|
||||||
|
// could Forward push this to another list?
|
||||||
} else {
|
} else {
|
||||||
|
ResetBounds();
|
||||||
|
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -1731,9 +1729,10 @@ void gGraphView::wheelEvent(QWheelEvent *event)
|
|||||||
// What to do when ctrl+wheel is used on the graph title ??
|
// What to do when ctrl+wheel is used on the graph title ??
|
||||||
} else {
|
} else {
|
||||||
// send event to graph..
|
// send event to graph..
|
||||||
if (!m_button_down)
|
if (!m_button_down) {
|
||||||
m_graphs[i]->wheelEvent(event);
|
m_graphs[i]->wheelEvent(event);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else if ((y >= py + h) && (y <= py + h + graphSpacer + 1)) {
|
} else if ((y >= py + h) && (y <= py + h + graphSpacer + 1)) {
|
||||||
// What to do when the wheel is used on the resize handle?
|
// What to do when the wheel is used on the resize handle?
|
||||||
}
|
}
|
||||||
@ -1812,6 +1811,7 @@ void gGraphView::wheelEvent(QWheelEvent *event)
|
|||||||
g->min_x = g->max_x - xx;
|
g->min_x = g->max_x - xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
saveHistory();
|
||||||
SetXBounds(g->min_x, g->max_x, group);
|
SetXBounds(g->min_x, g->max_x, group);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1891,6 +1891,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
|
|||||||
g->max_x = g->rmin_x + xx;
|
g->max_x = g->rmin_x + xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
saveHistory();
|
||||||
SetXBounds(g->min_x, g->max_x, group);
|
SetXBounds(g->min_x, g->max_x, group);
|
||||||
} else if (event->key() == Qt::Key_Right) {
|
} else if (event->key() == Qt::Key_Right) {
|
||||||
double xx = g->max_x - g->min_x;
|
double xx = g->max_x - g->min_x;
|
||||||
@ -1906,6 +1907,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
|
|||||||
g->min_x = g->rmax_x - xx;
|
g->min_x = g->rmax_x - xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
saveHistory();
|
||||||
SetXBounds(g->min_x, g->max_x, group);
|
SetXBounds(g->min_x, g->max_x, group);
|
||||||
} else if (event->key() == Qt::Key_Up) {
|
} else if (event->key() == Qt::Key_Up) {
|
||||||
float zoom = 0.75F;
|
float zoom = 0.75F;
|
||||||
|
@ -269,6 +269,13 @@ class gGraphView
|
|||||||
inline void setPrintScaleX(float x) { print_scaleX = x; }
|
inline void setPrintScaleX(float x) { print_scaleX = x; }
|
||||||
inline void setPrintScaleY(float y) { print_scaleY = y; }
|
inline void setPrintScaleY(float y) { print_scaleY = y; }
|
||||||
|
|
||||||
|
void saveHistory() {
|
||||||
|
history.push_front(SelectionHistoryItem(m_minx, m_maxx));
|
||||||
|
if (history.size() > max_history) {
|
||||||
|
history.pop_back();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//! \brief Returns true if all Graph objects contain NO day data. ie, graph area is completely empty.
|
//! \brief Returns true if all Graph objects contain NO day data. ie, graph area is completely empty.
|
||||||
bool isEmpty();
|
bool isEmpty();
|
||||||
|
|
||||||
@ -374,6 +381,8 @@ class gGraphView
|
|||||||
int strings_drawn_this_frame;
|
int strings_drawn_this_frame;
|
||||||
int strings_cached_this_frame;
|
int strings_cached_this_frame;
|
||||||
|
|
||||||
|
QList<SelectionHistoryItem> history;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//! \brief The heart of the drawing code
|
//! \brief The heart of the drawing code
|
||||||
@ -464,7 +473,7 @@ class gGraphView
|
|||||||
|
|
||||||
qint64 m_minx, m_maxx;
|
qint64 m_minx, m_maxx;
|
||||||
|
|
||||||
QList<SelectionHistoryItem> history;
|
QList<SelectionHistoryItem> fwd_history;
|
||||||
float print_scaleX, print_scaleY;
|
float print_scaleX, print_scaleY;
|
||||||
|
|
||||||
QPixmap previous_day_snapshot;
|
QPixmap previous_day_snapshot;
|
||||||
|
@ -56,6 +56,8 @@ const QColor COLOR_ALT_BG2 =
|
|||||||
COLOR_White; // Alternating Background Color 2 (Event Flags)
|
COLOR_White; // Alternating Background Color 2 (Event Flags)
|
||||||
|
|
||||||
|
|
||||||
|
const int max_history = 50;
|
||||||
|
|
||||||
#ifndef M_PI
|
#ifndef M_PI
|
||||||
const double M_PI = 3.141592653589793;
|
const double M_PI = 3.141592653589793;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user