ReactOS 0.4.15-dev-7085-g12a5971
metric.c File Reference
#include <win32k.h>
Include dependency graph for metric.c:

Go to the source code of this file.

Functions

 DBG_DEFAULT_CHANNEL (UserSysparams)
 
BOOL FASTCALL UserIsDBCSEnabled (VOID)
 
BOOL FASTCALL UserIsIMMEnabled (VOID)
 
BOOL FASTCALL UserIsCiceroEnabled (VOID)
 
BOOL NTAPI InitMetrics (VOID)
 
LONG NTAPI UserGetSystemMetrics (ULONG Index)
 

Variables

static BOOL Setup = FALSE
 

Function Documentation

◆ DBG_DEFAULT_CHANNEL()

DBG_DEFAULT_CHANNEL ( UserSysparams  )

◆ InitMetrics()

BOOL NTAPI InitMetrics ( VOID  )

Definition at line 39 of file metric.c.

40{
41 INT *piSysMet = gpsi->aiSysMet;
43
44 /* Note: used for the SM_CLEANBOOT metric */
45 DWORD dwValue = 0;
46 HKEY hKey = 0;
47
48 /* Clean boot */
49 piSysMet[SM_CLEANBOOT] = 0; // Fallback value of 0 (normal mode)
50 if(NT_SUCCESS(RegOpenKey(L"\\REGISTRY\\MACHINE\\SYSTEM\\CurrentControlSet\\Control\\SafeBoot\\Option", &hKey)))
51 {
52 if(RegReadDWORD(hKey, L"OptionValue", &dwValue)) piSysMet[SM_CLEANBOOT] = (INT)dwValue;
54 }
55
56 /* FIXME: HACK, due to missing MDEV on first init */
57 if (!gpmdev)
58 {
59 Width = 640;
60 Height = 480;
61 }
62 else
63 {
66 }
67
68 /* Screen sizes */
69 piSysMet[SM_CXSCREEN] = Width;
70 piSysMet[SM_CYSCREEN] = Height;
71 piSysMet[SM_XVIRTUALSCREEN] = 0;
72 piSysMet[SM_YVIRTUALSCREEN] = 0;
73 piSysMet[SM_CXVIRTUALSCREEN] = Width;
74 piSysMet[SM_CYVIRTUALSCREEN] = Height;
75
76 /* NC area sizes */
77 piSysMet[SM_CYCAPTION] = gspv.ncm.iCaptionHeight + 1; // 19
78 piSysMet[SM_CYSMCAPTION] = gspv.ncm.iSmCaptionHeight + 1; // 15;
79 piSysMet[SM_CXSIZE] = gspv.ncm.iCaptionHeight; // 18;
80 piSysMet[SM_CYSIZE] = gspv.ncm.iCaptionHeight; // 18;
81 piSysMet[SM_CXSMSIZE] = gspv.ncm.iSmCaptionWidth; // 12; XP: piSysMet(SM_CYSMCAPTION) - 1
82 piSysMet[SM_CYSMSIZE] = gspv.ncm.iSmCaptionHeight; // 14;
83 piSysMet[SM_CXBORDER] = 1; // Seems to be hardcoded
84 piSysMet[SM_CYBORDER] = 1; // Seems to be hardcoded
85 piSysMet[SM_CXFOCUSBORDER] = 1;
86 piSysMet[SM_CYFOCUSBORDER] = 1;
87 piSysMet[SM_CXDLGFRAME] = 3;
88 piSysMet[SM_CYDLGFRAME] = 3;
89 piSysMet[SM_CXEDGE] = 2;
90 piSysMet[SM_CYEDGE] = 2;
91 piSysMet[SM_CXFRAME] = piSysMet[SM_CXDLGFRAME] + gspv.ncm.iBorderWidth; // 4
92 piSysMet[SM_CYFRAME] = piSysMet[SM_CYDLGFRAME] + gspv.ncm.iBorderWidth; // 4
93#if (_WIN32_WINNT >= 0x0600)
94 piSysMet[SM_CXPADDEDBORDER] = 0;
95#endif
96
97 /* Window sizes */
98 TRACE("ncm.iCaptionWidth=%d,GetSystemMetrics(SM_CYSIZE)=%d,GetSystemMetrics(SM_CXFRAME)=%d,avcwCaption=%d \n",
99 gspv.ncm.iCaptionWidth, piSysMet[SM_CYSIZE],piSysMet[SM_CXFRAME], gspv.tmCaptionFont.tmAveCharWidth);
100
101 piSysMet[SM_CXMIN] = 3 * max(gspv.ncm.iCaptionWidth, 8) // 112
102 + piSysMet[SM_CYSIZE] + 4
104 + 2 * piSysMet[SM_CXFRAME];
105 piSysMet[SM_CYMIN] = piSysMet[SM_CYCAPTION] + 2 * piSysMet[SM_CYFRAME]; // 27
106 piSysMet[SM_CXMAXIMIZED] = piSysMet[SM_CXSCREEN] + 2 * piSysMet[SM_CXFRAME];
107 piSysMet[SM_CYMAXIMIZED] = piSysMet[SM_CYSCREEN] - 20;
108 piSysMet[SM_CXFULLSCREEN] = piSysMet[SM_CXSCREEN];
109 piSysMet[SM_CYFULLSCREEN] = piSysMet[SM_CYMAXIMIZED] - piSysMet[SM_CYMIN];
110 piSysMet[SM_CYKANJIWINDOW] = 0;
111 piSysMet[SM_CXMINIMIZED] = gspv.mm.iWidth + 6;
112 piSysMet[SM_CYMINIMIZED] = piSysMet[SM_CYCAPTION] + 5;
113 piSysMet[SM_CXMINSPACING] = piSysMet[SM_CXMINIMIZED] + gspv.mm.iHorzGap;
114 piSysMet[SM_CYMINSPACING] = piSysMet[SM_CYMINIMIZED] + gspv.mm.iVertGap;
115 piSysMet[SM_CXMAXTRACK] = piSysMet[SM_CXVIRTUALSCREEN] + 4
116 + 2 * piSysMet[SM_CXFRAME];
117 piSysMet[SM_CYMAXTRACK] = piSysMet[SM_CYVIRTUALSCREEN] + 4
118 + 2 * piSysMet[SM_CYFRAME];
119
120 /* Icon */
121 piSysMet[SM_CXVSCROLL] = gspv.ncm.iScrollWidth; // 16;
122 piSysMet[SM_CYVTHUMB] = gspv.ncm.iScrollHeight; // 16;
123 piSysMet[SM_CYHSCROLL] = gspv.ncm.iScrollWidth; // 16;
124 piSysMet[SM_CXHTHUMB] = gspv.ncm.iScrollHeight; // 16;
125 piSysMet[SM_CYVSCROLL] = gspv.ncm.iScrollHeight; // 16
126 piSysMet[SM_CXHSCROLL] = gspv.ncm.iScrollHeight; // 16;
127 piSysMet[SM_CXICON] = 32;
128 piSysMet[SM_CYICON] = 32;
129 piSysMet[SM_CXSMICON] = 16;
130 piSysMet[SM_CYSMICON] = 16;
131 piSysMet[SM_CXICONSPACING] = gspv.im.iHorzSpacing; // 64;
132 piSysMet[SM_CYICONSPACING] = gspv.im.iVertSpacing; // 64;
133 piSysMet[SM_CXCURSOR] = 32;
134 piSysMet[SM_CYCURSOR] = 32;
135 piSysMet[SM_CXMINTRACK] = piSysMet[SM_CXMIN]; // 117
136 piSysMet[SM_CYMINTRACK] = piSysMet[SM_CYMIN]; // 27
137 piSysMet[SM_CXDRAG] = 4;
138 piSysMet[SM_CYDRAG] = 4;
139 piSysMet[SM_ARRANGE] = gspv.mm.iArrange; // 8;
140
141 /* Menu */
142 piSysMet[SM_CYMENU] = gspv.ncm.iMenuHeight + 1; // 19;
144 piSysMet[SM_CXMENUCHECK] = ((1 + gspv.tmMenuFont.tmHeight +
145 gspv.tmMenuFont.tmExternalLeading) & ~1) - 1; // 13;
146 piSysMet[SM_CYMENUCHECK] = piSysMet[SM_CXMENUCHECK];
147 piSysMet[SM_CXMENUSIZE] = gspv.ncm.iMenuWidth; // 18;
148 piSysMet[SM_CYMENUSIZE] = gspv.ncm.iMenuHeight; // 18;
149
150 /* Mouse */
151 piSysMet[SM_MOUSEPRESENT] = 1;
152 piSysMet[SM_MOUSEWHEELPRESENT] = 1;
153 piSysMet[SM_CMOUSEBUTTONS] = 2;
154 piSysMet[SM_SWAPBUTTON] = gspv.bMouseBtnSwap ? 1 : 0;
157#if (_WIN32_WINNT >= 0x0600)
158 piSysMet[SM_MOUSEHORIZONTALWHEELPRESENT] = 0;
159#endif
160
161 /* Version info */
162 piSysMet[SM_TABLETPC] = 0;
163 piSysMet[SM_MEDIACENTER] = 0;
164 piSysMet[SM_STARTER] = 0;
165 piSysMet[SM_SERVERR2] = 0;
166 piSysMet[SM_PENWINDOWS] = 0;
167
168 /* Other */
169 piSysMet[SM_DEBUG] = 0;
170 piSysMet[SM_NETWORK] = 3;
171 piSysMet[SM_SLOWMACHINE] = 0;
172 piSysMet[SM_SECURE] = 0;
174 piSysMet[SM_SHOWSOUNDS] = gspv.bShowSounds;
175 piSysMet[SM_MIDEASTENABLED] = 0;
176 piSysMet[SM_CMONITORS] = 1;
177 piSysMet[SM_SAMEDISPLAYFORMAT] = 1;
178 piSysMet[SM_IMMENABLED] = NLS_MB_CODE_PAGE_TAG;
179
180 /* Reserved */
181 piSysMet[SM_RESERVED1] = 0;
182 piSysMet[SM_RESERVED2] = 0;
183 piSysMet[SM_RESERVED3] = 0;
184 piSysMet[SM_RESERVED4] = 0;
185 piSysMet[64] = 0;
186 piSysMet[65] = 0;
187 piSysMet[66] = 0;
188#if (_WIN32_WINNT >= 0x0600)
189 piSysMet[90] = 0;
190#endif
191
192 if (UserIsDBCSEnabled())
193 gpsi->dwSRVIFlags |= SRVINFO_DBCSENABLED; /* DBCS Support */
194
196 gpsi->dwSRVIFlags |= SRVINFO_IMM32; /* IME Support */
197
199 gpsi->dwSRVIFlags |= SRVINFO_CICERO_ENABLED; /* Cicero support */
200
201 Setup = TRUE;
202
203 return TRUE;
204}
#define TRUE
Definition: types.h:120
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:32
PSERVERINFO gpsi
Definition: imm.c:18
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
#define SRVINFO_DBCSENABLED
Definition: ntuser.h:944
#define SRVINFO_CICERO_ENABLED
Definition: ntuser.h:947
#define SRVINFO_IMM32
Definition: ntuser.h:945
if(dx< 0)
Definition: linetemp.h:194
PMDEVOBJ gpmdev
Definition: mdevobj.c:14
NTSYSAPI NTSTATUS NTAPI ZwClose(_In_ HANDLE Handle)
#define NLS_MB_CODE_PAGE_TAG
Definition: nt_native.h:212
#define L(x)
Definition: ntvdm.h:50
#define INT
Definition: polytest.cpp:20
#define TRACE(s)
Definition: solgame.cpp:4
ULONG ulVertRes
Definition: winddi.h:883
ULONG ulHorzRes
Definition: winddi.h:882
PPDEVOBJ ppdevGlobal
Definition: mdevobj.h:16
GDIINFO gdiinfo
Definition: pdevobj.h:123
MINIMIZEDMETRICS mm
Definition: sysparams.h:52
TEXTMETRICW tmCaptionFont
Definition: sysparams.h:139
NONCLIENTMETRICSW ncm
Definition: sysparams.h:51
INT iDblClickHeight
Definition: sysparams.h:89
BOOL bMouseBtnSwap
Definition: sysparams.h:82
TEXTMETRICW tmMenuFont
Definition: sysparams.h:138
ICONMETRICSW im
Definition: sysparams.h:53
BOOL bMenuDropAlign
Definition: sysparams.h:130
BOOL bShowSounds
Definition: sysparams.h:71
INT iDblClickWidth
Definition: sysparams.h:88
DWORD dwSRVIFlags
Definition: ntuser.h:1047
LONG tmAveCharWidth
Definition: wingdi.h:2388
LONG tmExternalLeading
Definition: wingdi.h:2387
LONG tmHeight
Definition: wingdi.h:2383
#define max(a, b)
Definition: svc.c:63
int32_t INT
Definition: typedefs.h:58
uint32_t ULONG
Definition: typedefs.h:59
_In_ HFONT _Out_ PUINT _Out_ PUINT Width
Definition: font.h:89
_In_ HFONT _Out_ PUINT Height
Definition: font.h:88
BOOL NTAPI RegReadDWORD(HKEY hkey, PWSTR pwszValue, PDWORD pdwData)
Definition: registry.c:150
static BOOL Setup
Definition: metric.c:13
BOOL FASTCALL UserIsIMMEnabled(VOID)
Definition: metric.c:22
BOOL FASTCALL UserIsDBCSEnabled(VOID)
Definition: metric.c:17
BOOL FASTCALL UserIsCiceroEnabled(VOID)
Definition: metric.c:32
SPIVALUES gspv
Definition: sysparams.c:17
#define RegOpenKey
Definition: winreg.h:519
#define SM_MENUDROPALIGNMENT
Definition: winuser.h:1002
#define SM_CXMINIMIZED
Definition: winuser.h:1019
#define SM_NETWORK
Definition: winuser.h:1025
#define SM_CYVIRTUALSCREEN
Definition: winuser.h:1038
#define SM_CYEDGE
Definition: winuser.h:1008
#define SM_MIDEASTENABLED
Definition: winuser.h:1033
#define SM_CXDRAG
Definition: winuser.h:1027
#define SM_CXDOUBLECLK
Definition: winuser.h:998
#define SM_CXHTHUMB
Definition: winuser.h:970
#define SM_CYSCREEN
Definition: winuser.h:959
#define SM_RESERVED3
Definition: winuser.h:986
#define SM_CXEDGE
Definition: winuser.h:1007
#define SM_CYVSCROLL
Definition: winuser.h:980
#define SM_CMOUSEBUTTONS
Definition: winuser.h:1005
#define SM_CXMENUCHECK
Definition: winuser.h:1030
#define SM_CYSIZE
Definition: winuser.h:991
#define SM_PENWINDOWS
Definition: winuser.h:1003
#define SM_CXMINTRACK
Definition: winuser.h:996
#define SM_MOUSEPRESENT
Definition: winuser.h:979
#define SM_CXVSCROLL
Definition: winuser.h:960
#define SM_SAMEDISPLAYFORMAT
Definition: winuser.h:1040
#define SM_CYVTHUMB
Definition: winuser.h:969
#define SM_CYMINIMIZED
Definition: winuser.h:1020
#define SM_DEBUG
Definition: winuser.h:982
#define SM_CXFRAME
Definition: winuser.h:993
#define SM_CYICONSPACING
Definition: winuser.h:1001
#define SM_MOUSEWHEELPRESENT
Definition: winuser.h:1034
#define SM_CYMENU
Definition: winuser.h:975
#define SM_CYSMICON
Definition: winuser.h:1012
#define SM_CYDOUBLECLK
Definition: winuser.h:999
#define SM_CXSIZE
Definition: winuser.h:990
#define SM_CYFRAME
Definition: winuser.h:995
#define SM_CYHSCROLL
Definition: winuser.h:961
#define SM_CXFULLSCREEN
Definition: winuser.h:976
#define SM_RESERVED1
Definition: winuser.h:984
#define SM_CXVIRTUALSCREEN
Definition: winuser.h:1037
#define SM_CXMIN
Definition: winuser.h:988
#define SM_CYBORDER
Definition: winuser.h:964
#define SM_CXSMICON
Definition: winuser.h:1011
#define SM_CYMIN
Definition: winuser.h:989
#define SM_CYMENUCHECK
Definition: winuser.h:1031
#define SM_CYICON
Definition: winuser.h:972
#define SM_CXMAXTRACK
Definition: winuser.h:1021
#define SM_CXMAXIMIZED
Definition: winuser.h:1023
#define SM_CYMINSPACING
Definition: winuser.h:1010
#define SM_CXSMSIZE
Definition: winuser.h:1014
#define SM_CXBORDER
Definition: winuser.h:963
#define SM_RESERVED2
Definition: winuser.h:985
#define SM_CYMAXTRACK
Definition: winuser.h:1022
#define SM_CYFULLSCREEN
Definition: winuser.h:977
#define SM_DBCSENABLED
Definition: winuser.h:1004
#define SM_CXDLGFRAME
Definition: winuser.h:965
#define SM_CYKANJIWINDOW
Definition: winuser.h:978
#define SM_CXHSCROLL
Definition: winuser.h:981
#define SM_RESERVED4
Definition: winuser.h:987
#define SM_SHOWSOUNDS
Definition: winuser.h:1029
#define SM_CXMENUSIZE
Definition: winuser.h:1016
#define SM_ARRANGE
Definition: winuser.h:1018
#define SM_CYSMCAPTION
Definition: winuser.h:1013
#define SM_CYSMSIZE
Definition: winuser.h:1015
#define SM_CYDLGFRAME
Definition: winuser.h:967
#define SM_CLEANBOOT
Definition: winuser.h:1026
#define SM_CXSCREEN
Definition: winuser.h:958
#define SM_SWAPBUTTON
Definition: winuser.h:983
#define SM_SLOWMACHINE
Definition: winuser.h:1032
#define SM_CYMENUSIZE
Definition: winuser.h:1017
#define SM_XVIRTUALSCREEN
Definition: winuser.h:1035
#define SM_CYCURSOR
Definition: winuser.h:974
#define SM_CYDRAG
Definition: winuser.h:1028
#define SM_CXICON
Definition: winuser.h:971
#define SM_CMONITORS
Definition: winuser.h:1039
#define SM_CYMAXIMIZED
Definition: winuser.h:1024
#define SM_CYCAPTION
Definition: winuser.h:962
#define SM_CYMINTRACK
Definition: winuser.h:997
#define SM_CXICONSPACING
Definition: winuser.h:1000
#define SM_CXMINSPACING
Definition: winuser.h:1009
#define SM_YVIRTUALSCREEN
Definition: winuser.h:1036
#define SM_SECURE
Definition: winuser.h:1006
#define SM_CXCURSOR
Definition: winuser.h:973

Referenced by co_IntInitializeDesktopGraphics(), SpiUpdatePerUserSystemParameters(), UserChangeDisplaySettings(), UserRefreshDisplay(), and UserSystemParametersInfo().

◆ UserGetSystemMetrics()

LONG NTAPI UserGetSystemMetrics ( ULONG  Index)

Definition at line 208 of file metric.c.

209{
210 ASSERT(gpsi);
211 ASSERT(Setup);
212 TRACE("UserGetSystemMetrics(%lu)\n", Index);
213
214 if (Index == SM_DBCSENABLED)
216
217 if (Index == SM_IMMENABLED)
218 return !!(gpsi->dwSRVIFlags & SRVINFO_IMM32);
219
220 /* Get metrics from array */
221 if (Index < SM_CMETRICS)
222 {
223 return gpsi->aiSysMet[Index];
224 }
225
226 /* Handle special values */
227 switch (Index)
228 {
229 case SM_REMOTESESSION:
230 return 0; // FIXME
231
232 case SM_SHUTTINGDOWN:
233 return 0; // FIXME
234
235 case SM_REMOTECONTROL:
236 return 0; // FIXME
237 }
238
239 ERR("UserGetSystemMetrics() called with invalid index %lu\n", Index);
240 return 0;
241}
#define ERR(fmt,...)
Definition: debug.h:110
#define ASSERT(a)
Definition: mode.c:44
_In_ WDFCOLLECTION _In_ ULONG Index
#define SM_REMOTESESSION
Definition: winuser.h:1057
#define SM_CMETRICS
Definition: winuser.h:1064

Referenced by co_IntProcessMouseMessage(), co_WinPosArrangeIconicWindows(), co_WinPosDoWinPosChanging(), co_WinPosGetMinMaxInfo(), co_WinPosMinMaximize(), DefWndDoSizeMove(), DefWndStartSizeMove(), GetNCHitEx(), IntCalculateThumb(), IntCreateDesktop(), IntCreateWindow(), IntDefWindowProc(), IntDrawMenuBarTemp(), IntFixWindowCoordinates(), IntGetClientRect(), IntGetScrollBarRect(), intGetTitleBarInfo(), IntGetWindowBorderMeasures(), IntIsWindowFullscreen(), IntPaintDesktop(), MENU_CalcItemSize(), MENU_DrawBitmapItem(), MENU_DrawMenuBar(), MENU_DrawMenuItem(), MENU_EnsureMenuItemVisible(), MENU_FindItemByCoords(), MENU_FindItemByKey(), MENU_GetBitmapItemSize(), MENU_GetMaxPopupHeight(), MENU_ShowPopup(), MENU_ShowSubPopup(), NC_DoNCPaint(), NC_DrawFrame(), NC_GetInsideRect(), NC_GetSysPopupPos(), NC_HandleNCCalcSize(), NtUserCreateCaret(), NtUserDragDetect(), NtUserGetClipCursor(), NtUserSwitchDesktop(), UserDrawCaption(), UserDrawCaptionBar(), UserDrawCaptionButton(), UserDrawCaptionText(), UserDrawIconEx(), UserDrawMovingFrame(), UserDrawSysMenuButton(), UserGetWindowBorders(), UserSendMouseInput(), UserSetClassLongPtr(), and WinPosFindIconPos().

◆ UserIsCiceroEnabled()

BOOL FASTCALL UserIsCiceroEnabled ( VOID  )

Definition at line 32 of file metric.c.

33{
34 return FALSE; /* FIXME: Cicero is not supported yet */
35}
#define FALSE
Definition: types.h:117

Referenced by InitMetrics().

◆ UserIsDBCSEnabled()

BOOL FASTCALL UserIsDBCSEnabled ( VOID  )

Definition at line 17 of file metric.c.

18{
20}

Referenced by InitMetrics().

◆ UserIsIMMEnabled()

BOOL FASTCALL UserIsIMMEnabled ( VOID  )

Definition at line 22 of file metric.c.

23{
24 static WCHAR s_szLoadIMM[] = L"LoadIMM";
25
27 return TRUE;
28
29 return !!RegGetSectionDWORD(L"IMM", s_szLoadIMM, TRUE);
30}
DWORD NTAPI RegGetSectionDWORD(LPCWSTR pszSection, LPWSTR pszValue, DWORD dwDefault)
Definition: registry.c:173
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by InitMetrics(), and NtUserCallNoParam().

Variable Documentation

◆ Setup

BOOL Setup = FALSE
static

Definition at line 13 of file metric.c.

Referenced by InitMetrics(), and UserGetSystemMetrics().