mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
b368ecd5aa
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
33 lines
637 B
C++
33 lines
637 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "windowtitleupdate.h"
|
|
|
|
WindowTitleUpdate *WindowTitleUpdate::m_instance = NULL;
|
|
|
|
WindowTitleUpdate::WindowTitleUpdate(QObject *parent) : QObject(parent)
|
|
{
|
|
Q_ASSERT_X(m_instance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!");
|
|
|
|
m_instance = this;
|
|
}
|
|
|
|
WindowTitleUpdate *WindowTitleUpdate::instance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
WindowTitleUpdate::~WindowTitleUpdate()
|
|
{
|
|
m_instance = NULL;
|
|
}
|
|
|
|
void WindowTitleUpdate::emitSignal()
|
|
{
|
|
emit updateTitle();
|
|
}
|
|
|
|
extern "C" void updateWindowTitle()
|
|
{
|
|
WindowTitleUpdate *wt = WindowTitleUpdate::instance();
|
|
if (wt)
|
|
wt->emitSignal();
|
|
}
|