mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
There is a mouse Leave event after all.. Fix the focus glitches properly
This commit is contained in:
parent
00f1c4344c
commit
48ac50e224
@ -1074,6 +1074,13 @@ void gGraphView::paintGL()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gGraphView::leaveEvent(QEvent * event)
|
||||||
|
{
|
||||||
|
Q_UNUSED(event);
|
||||||
|
releaseKeyboard();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// For manual scrolling
|
// For manual scrolling
|
||||||
void gGraphView::setOffsetY(int offsetY)
|
void gGraphView::setOffsetY(int offsetY)
|
||||||
{
|
{
|
||||||
|
@ -202,7 +202,6 @@ class gGraphView
|
|||||||
virtual ~gGraphView();
|
virtual ~gGraphView();
|
||||||
virtual void closeEvent(QCloseEvent * event);
|
virtual void closeEvent(QCloseEvent * event);
|
||||||
|
|
||||||
|
|
||||||
//! \brief Add gGraph g to this gGraphView, in the requested graph-linkage group
|
//! \brief Add gGraph g to this gGraphView, in the requested graph-linkage group
|
||||||
void addGraph(gGraph *g, short group = 0);
|
void addGraph(gGraph *g, short group = 0);
|
||||||
|
|
||||||
@ -387,6 +386,8 @@ class gGraphView
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
virtual void leaveEvent (QEvent * event);
|
||||||
|
|
||||||
//! \brief The heart of the drawing code
|
//! \brief The heart of the drawing code
|
||||||
#ifdef BROKEN_OPENGL_BUILD
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
virtual void paintEvent(QPaintEvent *);
|
virtual void paintEvent(QPaintEvent *);
|
||||||
|
@ -45,12 +45,6 @@ MaskProfile masks[] = {
|
|||||||
};
|
};
|
||||||
const int num_masks = sizeof(masks) / sizeof(MaskProfile);
|
const int num_masks = sizeof(masks) / sizeof(MaskProfile);
|
||||||
|
|
||||||
void PreferencesDialog::showEvent(QShowEvent * event)
|
|
||||||
{
|
|
||||||
mainwin->getDaily()->graphView()->releaseKeyboard();
|
|
||||||
mainwin->getOverview()->graphView()->releaseKeyboard();
|
|
||||||
}
|
|
||||||
|
|
||||||
PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||||
QDialog(parent),
|
QDialog(parent),
|
||||||
ui(new Ui::PreferencesDialog),
|
ui(new Ui::PreferencesDialog),
|
||||||
|
@ -68,9 +68,6 @@ class PreferencesDialog : public QDialog
|
|||||||
//! \brief Updates the date text of the last time updates where checked
|
//! \brief Updates the date text of the last time updates where checked
|
||||||
void RefreshLastChecked();
|
void RefreshLastChecked();
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void showEvent(QShowEvent * event);
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void on_eventTable_doubleClicked(const QModelIndex &index);
|
void on_eventTable_doubleClicked(const QModelIndex &index);
|
||||||
void on_combineSlider_valueChanged(int value);
|
void on_combineSlider_valueChanged(int value);
|
||||||
|
Loading…
Reference in New Issue
Block a user