2014-11-29 01:22:46 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// MuldeR's Utilities for Qt
|
2015-01-25 20:48:23 +01:00
|
|
|
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
|
2014-11-29 01:22:46 +01:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/lgpl-2.1.txt
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2014-12-08 22:03:36 +01:00
|
|
|
//MUtils
|
2014-11-29 01:22:46 +01:00
|
|
|
#include <MUtils/GUI.h>
|
2014-12-08 22:03:36 +01:00
|
|
|
#include <MUtils/OSSupport.h>
|
2014-11-29 01:22:46 +01:00
|
|
|
|
2014-12-04 23:03:05 +01:00
|
|
|
//Internal
|
|
|
|
#include "Utils_Win32.h"
|
|
|
|
|
2014-11-29 01:22:46 +01:00
|
|
|
//Qt
|
2014-12-04 23:03:05 +01:00
|
|
|
#include <QIcon>
|
2014-11-29 01:22:46 +01:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QWidget>
|
2014-12-08 22:03:36 +01:00
|
|
|
#include <QMutex>
|
2014-11-29 01:22:46 +01:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// BROADCAST
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
bool MUtils::GUI::broadcast(int eventType, const bool &onlyToVisible)
|
|
|
|
{
|
|
|
|
if(QApplication *app = dynamic_cast<QApplication*>(QApplication::instance()))
|
|
|
|
{
|
|
|
|
qDebug("Broadcasting %d", eventType);
|
|
|
|
|
|
|
|
bool allOk = true;
|
|
|
|
QEvent poEvent(static_cast<QEvent::Type>(eventType));
|
|
|
|
QWidgetList list = app->topLevelWidgets();
|
|
|
|
|
|
|
|
while(!list.isEmpty())
|
|
|
|
{
|
|
|
|
QWidget *widget = list.takeFirst();
|
|
|
|
if(!onlyToVisible || widget->isVisible())
|
|
|
|
{
|
|
|
|
if(!app->sendEvent(widget, &poEvent))
|
|
|
|
{
|
|
|
|
allOk = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug("Broadcast %d done (%s)", eventType, (allOk ? "OK" : "Stopped"));
|
|
|
|
return allOk;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qWarning("Broadcast failed, could not get QApplication instance!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-12-04 23:03:05 +01:00
|
|
|
// WINDOW ICON
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace MUtils
|
|
|
|
{
|
|
|
|
namespace GUI
|
|
|
|
{
|
|
|
|
namespace Internal
|
|
|
|
{
|
|
|
|
class WindowIconHelper : public QObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WindowIconHelper(QWidget *const parent, const HICON hIcon, const bool &bIsBigIcon)
|
|
|
|
:
|
|
|
|
QObject(parent),
|
|
|
|
m_hIcon(hIcon)
|
|
|
|
{
|
|
|
|
SendMessage(parent->winId(), WM_SETICON, (bIsBigIcon ? ICON_BIG : ICON_SMALL), LPARAM(hIcon));
|
|
|
|
}
|
|
|
|
|
|
|
|
~WindowIconHelper(void)
|
|
|
|
{
|
|
|
|
if(m_hIcon)
|
|
|
|
{
|
|
|
|
DestroyIcon(m_hIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const HICON m_hIcon;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 22:03:36 +01:00
|
|
|
bool MUtils::GUI::set_window_icon(QWidget *const window, const QIcon &icon, const bool bIsBigIcon)
|
2014-12-04 23:03:05 +01:00
|
|
|
{
|
|
|
|
if((!icon.isNull()) && window->winId())
|
|
|
|
{
|
|
|
|
const int extend = (bIsBigIcon ? 32 : 16);
|
|
|
|
if(HICON hIcon = qicon_to_hicon(icon, extend, extend))
|
|
|
|
{
|
|
|
|
if(new Internal::WindowIconHelper(window, hIcon, bIsBigIcon))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-08 22:03:36 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// BLINK WINDOW
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static QMutex g_blinkMutex;
|
|
|
|
|
|
|
|
void MUtils::GUI::blink_window(QWidget *const poWindow, const unsigned int &count, const unsigned int &delay)
|
|
|
|
{
|
|
|
|
const double maxOpac = 1.0;
|
|
|
|
const double minOpac = 0.3;
|
|
|
|
const double delOpac = 0.1;
|
|
|
|
|
|
|
|
if(!g_blinkMutex.tryLock())
|
|
|
|
{
|
|
|
|
qWarning("Blinking is already in progress, skipping!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const int steps = static_cast<int>(ceil(maxOpac - minOpac) / delOpac);
|
|
|
|
const int sleep = static_cast<int>(floor(static_cast<double>(delay) / static_cast<double>(steps)));
|
|
|
|
const double opacity = poWindow->windowOpacity();
|
|
|
|
|
|
|
|
for(unsigned int i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
for(double x = maxOpac; x >= minOpac; x -= delOpac)
|
|
|
|
{
|
|
|
|
poWindow->setWindowOpacity(x);
|
|
|
|
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
|
|
MUtils::OS::sleep_ms(sleep);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(double x = minOpac; x <= maxOpac; x += delOpac)
|
|
|
|
{
|
|
|
|
poWindow->setWindowOpacity(x);
|
|
|
|
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
|
|
MUtils::OS::sleep_ms(sleep);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
poWindow->setWindowOpacity(opacity);
|
|
|
|
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
qWarning("Exception error while blinking!");
|
|
|
|
}
|
|
|
|
|
|
|
|
g_blinkMutex.unlock();
|
|
|
|
}
|
|
|
|
|
2014-12-04 23:03:05 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FORCE QUIT
|
2014-11-29 01:22:46 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void MUtils::GUI::force_quit(void)
|
|
|
|
{
|
|
|
|
qApp->closeAllWindows();
|
|
|
|
qApp->quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|