Improved get_real_os_version() function. Now also detects the real build number.
[MUtilities.git] / src / GUI.cpp
blob7cb8e39ffc4f82450d14d6d935230e983b1ddd4f
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
22 //MUtils
23 #include <MUtils/GUI.h>
24 #include <MUtils/OSSupport.h>
26 //Internal
27 #include "Utils_Win32.h"
29 //Qt
30 #include <QIcon>
31 #include <QApplication>
32 #include <QWidget>
33 #include <QMutex>
35 //Win32 API
36 #ifndef _INC_WINDOWS
37 #define WIN32_LEAN_AND_MEAN 1
38 #include <Windows.h>
39 #endif //_INC_WINDOWS
41 ///////////////////////////////////////////////////////////////////////////////
42 // BROADCAST
43 ///////////////////////////////////////////////////////////////////////////////
45 bool MUtils::GUI::broadcast(int eventType, const bool &onlyToVisible)
47 if(QApplication *app = dynamic_cast<QApplication*>(QApplication::instance()))
49 qDebug("Broadcasting %d", eventType);
51 bool allOk = true;
52 QEvent poEvent(static_cast<QEvent::Type>(eventType));
53 QWidgetList list = app->topLevelWidgets();
55 while(!list.isEmpty())
57 QWidget *widget = list.takeFirst();
58 if(!onlyToVisible || widget->isVisible())
60 if(!app->sendEvent(widget, &poEvent))
62 allOk = false;
67 qDebug("Broadcast %d done (%s)", eventType, (allOk ? "OK" : "Stopped"));
68 return allOk;
70 else
72 qWarning("Broadcast failed, could not get QApplication instance!");
73 return false;
77 ///////////////////////////////////////////////////////////////////////////////
78 // WINDOW ICON
79 ///////////////////////////////////////////////////////////////////////////////
81 namespace MUtils
83 namespace GUI
85 namespace Internal
87 class WindowIconHelper : public QObject
89 public:
90 WindowIconHelper(QWidget *const parent, const HICON hIcon, const bool &bIsBigIcon)
92 QObject(parent),
93 m_hIcon(hIcon)
95 SendMessage(parent->winId(), WM_SETICON, (bIsBigIcon ? ICON_BIG : ICON_SMALL), LPARAM(hIcon));
98 ~WindowIconHelper(void)
100 if(m_hIcon)
102 DestroyIcon(m_hIcon);
106 private:
107 const HICON m_hIcon;
113 bool MUtils::GUI::set_window_icon(QWidget *const window, const QIcon &icon, const bool bIsBigIcon)
115 if((!icon.isNull()) && window->winId())
117 const int extend = (bIsBigIcon ? 32 : 16);
118 if(HICON hIcon = (HICON) MUtils::Win32Utils::qicon_to_hicon(icon, extend, extend))
120 if(new Internal::WindowIconHelper(window, hIcon, bIsBigIcon))
122 return true;
126 return false;
129 ///////////////////////////////////////////////////////////////////////////////
130 // BLINK WINDOW
131 ///////////////////////////////////////////////////////////////////////////////
133 static QMutex g_blinkMutex;
135 void MUtils::GUI::blink_window(QWidget *const poWindow, const unsigned int &count, const unsigned int &delay)
137 const double maxOpac = 1.0;
138 const double minOpac = 0.3;
139 const double delOpac = 0.1;
141 if(!g_blinkMutex.tryLock())
143 qWarning("Blinking is already in progress, skipping!");
144 return;
149 const int steps = static_cast<int>(ceil(maxOpac - minOpac) / delOpac);
150 const int sleep = static_cast<int>(floor(static_cast<double>(delay) / static_cast<double>(steps)));
151 const double opacity = poWindow->windowOpacity();
153 for(unsigned int i = 0; i < count; i++)
155 for(double x = maxOpac; x >= minOpac; x -= delOpac)
157 poWindow->setWindowOpacity(x);
158 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
159 MUtils::OS::sleep_ms(sleep);
162 for(double x = minOpac; x <= maxOpac; x += delOpac)
164 poWindow->setWindowOpacity(x);
165 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
166 MUtils::OS::sleep_ms(sleep);
170 poWindow->setWindowOpacity(opacity);
171 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
173 catch(...)
175 qWarning("Exception error while blinking!");
178 g_blinkMutex.unlock();
181 ///////////////////////////////////////////////////////////////////////////////
182 // FORCE QUIT
183 ///////////////////////////////////////////////////////////////////////////////
185 void MUtils::GUI::force_quit(void)
187 qApp->closeAllWindows();
188 qApp->quit();
191 ///////////////////////////////////////////////////////////////////////////////