Fixes a crash in QDoubleSpinBox
[qt-netbsd.git] / src / winmain / qtmain_win.cpp
blob4380f7845310ebe5dfdef62447d8bd4b51125043
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the Windows main function of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 ** * Redistributions of source code must retain the above copyright
16 ** notice, this list of conditions and the following disclaimer.
17 ** * Redistributions in binary form must reproduce the above copyright
18 ** notice, this list of conditions and the following disclaimer in
19 ** the documentation and/or other materials provided with the
20 ** distribution.
21 ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 ** the names of its contributors may be used to endorse or promote
23 ** products derived from this software without specific prior written
24 ** permission.
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
39 ****************************************************************************/
41 #include "qt_windows.h"
42 #include "qbytearray.h"
43 #include "qstring.h"
44 #include "qvector.h"
47 This file contains the code in the qtmain library for Windows.
48 qtmain contains the Windows startup code and is required for
49 linking to the Qt DLL.
51 When a Windows application starts, the WinMain function is
52 invoked. WinMain calls qWinMain in the Qt DLL/library, which
53 initializes Qt.
56 QT_BEGIN_NAMESPACE
58 #if defined(Q_OS_WINCE)
59 extern void __cdecl qWinMain(HINSTANCE, HINSTANCE, LPSTR, int, int &, QVector<char *> &);
60 #else
61 extern void qWinMain(HINSTANCE, HINSTANCE, LPSTR, int, int &, QVector<char *> &);
62 #endif
64 QT_END_NAMESPACE
66 QT_USE_NAMESPACE
69 #if defined(QT_NEEDS_QMAIN)
70 int qMain(int, char **);
71 #define main qMain
72 #else
73 #ifdef Q_OS_WINCE
74 extern "C" int __cdecl main(int, char **);
75 #else
76 extern "C" int main(int, char **);
77 #endif
78 #endif
81 WinMain() - Initializes Windows and calls user's startup function main().
82 NOTE: WinMain() won't be called if the application was linked as a "console"
83 application.
86 #ifdef Q_OS_WINCE
87 int WINAPI WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPWSTR /*wCmdParam*/, int cmdShow)
88 #else
89 extern "C"
90 int APIENTRY WinMain(HINSTANCE instance, HINSTANCE prevInstance, LPSTR /*cmdParamarg*/, int cmdShow)
91 #endif
93 QByteArray cmdParam;
94 QT_WA({
95 LPTSTR cmdline = GetCommandLineW();
96 cmdParam = QString::fromUtf16((const unsigned short *)cmdline).toLocal8Bit();
97 }, {
98 cmdParam = GetCommandLineA();
99 });
101 #if defined(Q_OS_WINCE)
102 TCHAR appName[256];
103 GetModuleFileName(0, appName, 255);
104 cmdParam = QString(QLatin1String("\"%1\" ")).arg(QString::fromUtf16((const unsigned short *)appName)).toLocal8Bit() + cmdParam;
105 #endif
107 int argc = 0;
108 QVector<char *> argv(8);
109 qWinMain(instance, prevInstance, cmdParam.data(), cmdShow, argc, argv);
111 #if defined(Q_OS_WINCE)
112 TCHAR uniqueAppID[256];
113 GetModuleFileName(0, uniqueAppID, 255);
114 QString uid = QString::fromUtf16((const unsigned short *)uniqueAppID).toLower().replace(QString(QLatin1String("\\")), QString(QLatin1String("_")));
116 // If there exists an other instance of this application
117 // it will be the owner of a mutex with the unique ID.
118 HANDLE mutex = CreateMutex(NULL, TRUE, (LPCWSTR)uid.utf16());
119 if (mutex && ERROR_ALREADY_EXISTS == GetLastError()) {
120 CloseHandle(mutex);
122 // The app is already running, so we use the unique
123 // ID to create a unique messageNo, which is used
124 // as the registered class name for the windows
125 // created. Set the first instance's window to the
126 // foreground, else just terminate.
127 // Use bitwise 0x01 OR to reactivate window state if
128 // it was hidden
129 UINT msgNo = RegisterWindowMessage((LPCWSTR)uid.utf16());
130 HWND aHwnd = FindWindow((LPCWSTR)QString::number(msgNo).utf16(), 0);
131 if (aHwnd)
132 SetForegroundWindow((HWND)(((ULONG)aHwnd) | 0x01));
133 return 0;
135 #endif // Q_OS_WINCE
137 int result = main(argc, argv.data());
138 #if defined(Q_OS_WINCE)
139 CloseHandle(mutex);
140 #endif
141 return result;