| 1 | /****************************************************************************
|
|---|
| 2 | **
|
|---|
| 3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|---|
| 4 | ** All rights reserved.
|
|---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
|---|
| 6 | **
|
|---|
| 7 | ** This file is part of the QtGui module of the Qt Toolkit.
|
|---|
| 8 | **
|
|---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
|---|
| 10 | ** Commercial Usage
|
|---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
|---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
|---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
|---|
| 14 | ** a written agreement between you and Nokia.
|
|---|
| 15 | **
|
|---|
| 16 | ** GNU Lesser General Public License Usage
|
|---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
|---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
|---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
|---|
| 20 | ** packaging of this file. Please review the following information to
|
|---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
|---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|---|
| 23 | **
|
|---|
| 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
|---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
|---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|---|
| 27 | **
|
|---|
| 28 | ** GNU General Public License Usage
|
|---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
|---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
|---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
|---|
| 32 | ** packaging of this file. Please review the following information to
|
|---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
|---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
|---|
| 35 | **
|
|---|
| 36 | ** If you have questions regarding the use of this file, please contact
|
|---|
| 37 | ** Nokia at [email protected].
|
|---|
| 38 | ** $QT_END_LICENSE$
|
|---|
| 39 | **
|
|---|
| 40 | ****************************************************************************/
|
|---|
| 41 | #ifndef QGUIFUNCTIONS_WCE_H
|
|---|
| 42 | #define QGUIFUNCTIONS_WCE_H
|
|---|
| 43 | #ifdef Q_OS_WINCE
|
|---|
| 44 | #include <QtCore/qfunctions_wince.h>
|
|---|
| 45 | #define UNDER_NT
|
|---|
| 46 | #include <wingdi.h>
|
|---|
| 47 |
|
|---|
| 48 | #ifdef QT_BUILD_GUI_LIB
|
|---|
| 49 | QT_BEGIN_HEADER
|
|---|
| 50 | QT_BEGIN_NAMESPACE
|
|---|
| 51 | QT_MODULE(Gui)
|
|---|
| 52 | QT_END_NAMESPACE
|
|---|
| 53 | QT_END_HEADER
|
|---|
| 54 | #endif
|
|---|
| 55 |
|
|---|
| 56 | // application defines
|
|---|
| 57 | #define SPI_SETNONCLIENTMETRICS 72
|
|---|
| 58 | #define SPI_SETICONTITLELOGFONT 0x0022
|
|---|
| 59 | #define WM_ACTIVATEAPP 0x001c
|
|---|
| 60 | #define SW_PARENTCLOSING 1
|
|---|
| 61 | #define SW_OTHERMAXIMIZED 2
|
|---|
| 62 | #define SW_PARENTOPENING 3
|
|---|
| 63 | #define SW_OTHERRESTORED 4
|
|---|
| 64 | #define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam))
|
|---|
| 65 |
|
|---|
| 66 | // drag n drop
|
|---|
| 67 | #ifndef CFSTR_PERFORMEDDROPEFFECT
|
|---|
| 68 | #define CFSTR_PERFORMEDDROPEFFECT TEXT("Performed DropEffect")
|
|---|
| 69 | #endif
|
|---|
| 70 | int qt_wince_GetDIBits(HDC, HBITMAP, uint, uint, void*, LPBITMAPINFO, uint);
|
|---|
| 71 | #define GetDIBits(a,b,c,d,e,f,g) qt_wince_GetDIBits(a,b,c,d,e,f,g)
|
|---|
| 72 |
|
|---|
| 73 | // QWidget
|
|---|
| 74 | #define SW_SHOWMINIMIZED SW_MINIMIZE
|
|---|
| 75 |
|
|---|
| 76 | // QRegion
|
|---|
| 77 | #define ALTERNATE 0
|
|---|
| 78 | #define WINDING 1
|
|---|
| 79 |
|
|---|
| 80 | // QFontEngine
|
|---|
| 81 | typedef struct _FIXED {
|
|---|
| 82 | WORD fract;
|
|---|
| 83 | short value;
|
|---|
| 84 | } FIXED;
|
|---|
| 85 |
|
|---|
| 86 | typedef struct tagPOINTFX {
|
|---|
| 87 | FIXED x;
|
|---|
| 88 | FIXED y;
|
|---|
| 89 | } POINTFX;
|
|---|
| 90 |
|
|---|
| 91 | typedef struct _MAT2 {
|
|---|
| 92 | FIXED eM11;
|
|---|
| 93 | FIXED eM12;
|
|---|
| 94 | FIXED eM21;
|
|---|
| 95 | FIXED eM22;
|
|---|
| 96 | } MAT2;
|
|---|
| 97 |
|
|---|
| 98 | typedef struct _GLYPHMETRICS {
|
|---|
| 99 | UINT gmBlackBoxX;
|
|---|
| 100 | UINT gmBlackBoxY;
|
|---|
| 101 | POINT gmptGlyphOrigin;
|
|---|
| 102 | short gmCellIncX;
|
|---|
| 103 | short gmCellIncY;
|
|---|
| 104 | } GLYPHMETRICS;
|
|---|
| 105 |
|
|---|
| 106 | typedef struct tagTTPOLYGONHEADER
|
|---|
| 107 | {
|
|---|
| 108 | DWORD cb;
|
|---|
| 109 | DWORD dwType;
|
|---|
| 110 | POINTFX pfxStart;
|
|---|
| 111 | } TTPOLYGONHEADER;
|
|---|
| 112 |
|
|---|
| 113 | typedef struct tagTTPOLYCURVE
|
|---|
| 114 | {
|
|---|
| 115 | WORD wType;
|
|---|
| 116 | WORD cpfx;
|
|---|
| 117 | POINTFX apfx[1];
|
|---|
| 118 | } TTPOLYCURVE;
|
|---|
| 119 |
|
|---|
| 120 | #define GGO_NATIVE 2
|
|---|
| 121 | #define GGO_GLYPH_INDEX 0x0080
|
|---|
| 122 | #define TT_PRIM_LINE 1
|
|---|
| 123 | #define TT_PRIM_QSPLINE 2
|
|---|
| 124 | #define TT_PRIM_CSPLINE 3
|
|---|
| 125 | #define ANSI_VAR_FONT 12
|
|---|
| 126 |
|
|---|
| 127 | HINSTANCE qt_wince_ShellExecute(HWND hwnd, LPCWSTR operation, LPCWSTR file, LPCWSTR params, LPCWSTR dir, int showCmd);
|
|---|
| 128 | #define ShellExecute(a,b,c,d,e,f) qt_wince_ShellExecute(a,b,c,d,e,f)
|
|---|
| 129 |
|
|---|
| 130 |
|
|---|
| 131 | // Clipboard --------------------------------------------------------
|
|---|
| 132 | #define WM_CHANGECBCHAIN 1
|
|---|
| 133 | #define WM_DRAWCLIPBOARD 2
|
|---|
| 134 |
|
|---|
| 135 | BOOL qt_wince_ChangeClipboardChain(
|
|---|
| 136 | HWND hWndRemove, // handle to window to remove
|
|---|
| 137 | HWND hWndNewNext // handle to next window
|
|---|
| 138 | );
|
|---|
| 139 | #define ChangeClipboardChain(a,b) qt_wince_ChangeClipboardChain(a,b);
|
|---|
| 140 |
|
|---|
| 141 | HWND qt_wince_SetClipboardViewer(
|
|---|
| 142 | HWND hWndNewViewer // handle to clipboard viewer window
|
|---|
| 143 | );
|
|---|
| 144 | #define SetClipboardViewer(a) qt_wince_SetClipboardViewer(a)
|
|---|
| 145 |
|
|---|
| 146 | // Graphics ---------------------------------------------------------
|
|---|
| 147 | COLORREF qt_wince_PALETTEINDEX( WORD wPaletteIndex );
|
|---|
| 148 | #define PALETTEINDEX(a) qt_wince_PALETTEINDEX(a)
|
|---|
| 149 |
|
|---|
| 150 | #endif // Q_OS_WINCE
|
|---|
| 151 | #endif // QGUIFUNCTIONS_WCE_H
|
|---|