mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-26 16:11:02 +08:00
#125 [UI] fixed popup crash on Linux
This commit is contained in:
parent
c9bef28533
commit
d4b414eb73
@ -7,6 +7,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|||||||
find_package(Qt5Widgets)
|
find_package(Qt5Widgets)
|
||||||
|
|
||||||
if (Qt5Widgets_FOUND)
|
if (Qt5Widgets_FOUND)
|
||||||
|
message(STATUS "Using Qt v${Qt5Widgets_VERSION}")
|
||||||
if (NOT("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") AND WIN32)
|
if (NOT("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") AND WIN32)
|
||||||
set(APPLICATION_PLATFORM WIN32)
|
set(APPLICATION_PLATFORM WIN32)
|
||||||
endif ()
|
endif ()
|
||||||
|
@ -557,7 +557,7 @@ bool BackgroundItem::contains(const QPointF& scenePos) const
|
|||||||
|
|
||||||
void BackgroundItem::onWindowActivationChanged(bool isActiveWindow)
|
void BackgroundItem::onWindowActivationChanged(bool isActiveWindow)
|
||||||
{
|
{
|
||||||
if (!isActiveWindow)
|
if (!isActiveWindow && qApp->activeWindow() != m_tooltip)
|
||||||
{
|
{
|
||||||
delete m_tooltip;
|
delete m_tooltip;
|
||||||
m_tooltip = nullptr;
|
m_tooltip = nullptr;
|
||||||
@ -705,10 +705,16 @@ BlocksGraphicsView::~BlocksGraphicsView()
|
|||||||
void BlocksGraphicsView::onWindowActivationChanged()
|
void BlocksGraphicsView::onWindowActivationChanged()
|
||||||
{
|
{
|
||||||
const bool isActive = window()->isActiveWindow();
|
const bool isActive = window()->isActiveWindow();
|
||||||
if (!isActive)
|
|
||||||
|
if (!isActive && qApp->activeWindow() != m_popupWidget)
|
||||||
|
{
|
||||||
removePopup();
|
removePopup();
|
||||||
|
}
|
||||||
|
|
||||||
if (m_backgroundItem != nullptr)
|
if (m_backgroundItem != nullptr)
|
||||||
|
{
|
||||||
m_backgroundItem->onWindowActivationChanged(isActive);
|
m_backgroundItem->onWindowActivationChanged(isActive);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlocksGraphicsView::removePopup()
|
void BlocksGraphicsView::removePopup()
|
||||||
@ -2921,8 +2927,10 @@ ThreadNamesWidget::~ThreadNamesWidget()
|
|||||||
|
|
||||||
void ThreadNamesWidget::onWindowActivationChanged()
|
void ThreadNamesWidget::onWindowActivationChanged()
|
||||||
{
|
{
|
||||||
if (!window()->isActiveWindow())
|
if (!window()->isActiveWindow() && qApp->activeWindow() != m_popupWidget)
|
||||||
|
{
|
||||||
removePopup();
|
removePopup();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadNamesWidget::removePopup()
|
void ThreadNamesWidget::removePopup()
|
||||||
|
@ -323,8 +323,8 @@ MainWindow::MainWindow() : Parent(), m_theme("default"), m_lastAddress("localhos
|
|||||||
|
|
||||||
auto graphicsView = new DiagramWidget(this);
|
auto graphicsView = new DiagramWidget(this);
|
||||||
graphicsView->setObjectName("ProfilerGUI_Diagram_GraphicsView");
|
graphicsView->setObjectName("ProfilerGUI_Diagram_GraphicsView");
|
||||||
connect(this, &MainWindow::activationChanged, graphicsView->view(), &BlocksGraphicsView::onWindowActivationChanged);
|
connect(this, &MainWindow::activationChanged, graphicsView->view(), &BlocksGraphicsView::onWindowActivationChanged, Qt::QueuedConnection);
|
||||||
connect(this, &MainWindow::activationChanged, graphicsView->threadsView(), &ThreadNamesWidget::onWindowActivationChanged);
|
connect(this, &MainWindow::activationChanged, graphicsView->threadsView(), &ThreadNamesWidget::onWindowActivationChanged, Qt::QueuedConnection);
|
||||||
m_graphicsView->setWidget(graphicsView);
|
m_graphicsView->setWidget(graphicsView);
|
||||||
|
|
||||||
m_treeWidget = new DockWidget("Hierarchy", this);
|
m_treeWidget = new DockWidget("Hierarchy", this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user