1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Merge pull request #1215 from srcejon/v7_fix_cursor_over_child

Restore cursor when move from border to child widget
This commit is contained in:
Edouard Griffiths 2022-04-25 18:29:01 +02:00 committed by GitHub
commit 1855e9afe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 20 additions and 0 deletions

View File

@ -184,6 +184,8 @@ ChannelGUI::ChannelGUI(QWidget *parent) :
this,
&ChannelGUI::onWidgetRolled
);
m_resizer.enableChildMouseTracking();
}
ChannelGUI::~ChannelGUI()

View File

@ -193,6 +193,8 @@ DeviceGUI::DeviceGUI(QWidget *parent) :
this,
&DeviceGUI::addChannelEmitted
);
m_resizer.enableChildMouseTracking();
}
DeviceGUI::~DeviceGUI()

View File

@ -141,6 +141,8 @@ FeatureGUI::FeatureGUI(QWidget *parent) :
this,
&FeatureGUI::onWidgetRolled
);
m_resizer.enableChildMouseTracking();
}
FeatureGUI::~FeatureGUI()

View File

@ -34,6 +34,14 @@ FramelessWindowResizer::FramelessWindowResizer(QWidget *widget) :
{
}
void FramelessWindowResizer::enableChildMouseTracking()
{
QList<QWidget *> widgets = m_widget->findChildren<QWidget *>();
for (auto widget : widgets) {
widget->setMouseTracking(true);
}
}
bool FramelessWindowResizer::mouseOnTopBorder(QPoint pos) const
{
return (pos.y() >= 0) && (pos.y() < m_gripSize);

View File

@ -28,6 +28,8 @@
// by clicking and draging on the border
// The window needs to forward the mousePressEvent, mouseReleaseEvent, mouseMoveEvent
// and leaveEvent events to this class
// Child widgets should have mouse tracking enabled, so cursor can be controlled properly
// This can be achieved by calling enableChildMouseTracking
class SDRGUI_API FramelessWindowResizer
{
private:
@ -49,6 +51,7 @@ private:
public:
FramelessWindowResizer(QWidget *widget);
void enableChildMouseTracking();
void mousePressEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);

View File

@ -2565,6 +2565,8 @@ void GLSpectrum::mouseMoveEvent(QMouseEvent* event)
return;
}
event->setAccepted(false);
}
void GLSpectrum::mousePressEvent(QMouseEvent* event)

View File

@ -140,6 +140,7 @@ MainSpectrumGUI::MainSpectrumGUI(GLSpectrum *spectrum, GLSpectrumGUI *spectrumGU
connect(this, SIGNAL(forceShrink()), this, SLOT(shrinkWindow()));
connect(m_hideButton, SIGNAL(clicked()), this, SLOT(hide()));
m_resizer.enableChildMouseTracking();
shrinkWindow();
}