There is a mouse Leave event after all.. Fix the focus glitches properly

This commit is contained in:
Mark Watkins 2014-07-21 04:24:03 +10:00
parent 00f1c4344c
commit 48ac50e224
4 changed files with 9 additions and 10 deletions

View File

@ -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)
{ {

View File

@ -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 *);

View File

@ -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),

View File

@ -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);