source: trunk/src/gui/kernel/qguifunctions_wince.h@ 677

Last change on this file since 677 was 651, checked in by Dmitry A. Kuminov, 16 years ago

trunk: Merged in qt 4.6.2 sources.

  • Property svn:eol-style set to native
File size: 4.5 KB
Line 
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
49QT_BEGIN_HEADER
50QT_BEGIN_NAMESPACE
51QT_MODULE(Gui)
52QT_END_NAMESPACE
53QT_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
70int 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
81typedef struct _FIXED {
82 WORD fract;
83 short value;
84} FIXED;
85
86typedef struct tagPOINTFX {
87 FIXED x;
88 FIXED y;
89} POINTFX;
90
91typedef struct _MAT2 {
92 FIXED eM11;
93 FIXED eM12;
94 FIXED eM21;
95 FIXED eM22;
96} MAT2;
97
98typedef struct _GLYPHMETRICS {
99 UINT gmBlackBoxX;
100 UINT gmBlackBoxY;
101 POINT gmptGlyphOrigin;
102 short gmCellIncX;
103 short gmCellIncY;
104} GLYPHMETRICS;
105
106typedef struct tagTTPOLYGONHEADER
107{
108 DWORD cb;
109 DWORD dwType;
110 POINTFX pfxStart;
111} TTPOLYGONHEADER;
112
113typedef 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
127HINSTANCE 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
135BOOL 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
141HWND qt_wince_SetClipboardViewer(
142 HWND hWndNewViewer // handle to clipboard viewer window
143);
144#define SetClipboardViewer(a) qt_wince_SetClipboardViewer(a)
145
146// Graphics ---------------------------------------------------------
147COLORREF qt_wince_PALETTEINDEX( WORD wPaletteIndex );
148#define PALETTEINDEX(a) qt_wince_PALETTEINDEX(a)
149
150#endif // Q_OS_WINCE
151#endif // QGUIFUNCTIONS_WCE_H
Note: See TracBrowser for help on using the repository browser.