mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
435a566751
* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
96 lines
3.1 KiB
C
96 lines
3.1 KiB
C
/*++
|
|
|
|
Copyright (c) 2003 Microsoft Corporation
|
|
|
|
Abstract:
|
|
|
|
Include file for SHGetUIMetric.
|
|
|
|
--*/
|
|
|
|
#ifndef __SHGUIM_H__
|
|
#define __SHGUIM_H__
|
|
|
|
#include <windows.h>
|
|
|
|
//
|
|
// Call RegisterWindowMessage on this string if you are interested in knowing
|
|
// when the UI metrics have changed. wParam will be 0, lParam will be one of the
|
|
// SHUIMETRICTYPE values to indicate what value has changed. Call SHGetUIMetrics
|
|
// to find out the new value.
|
|
//
|
|
#define SH_UIMETRIC_CHANGE TEXT("SH_UIMETRIC_CHANGE")
|
|
|
|
#if _MSC_VER >= 1400
|
|
#include <aygshell.h>
|
|
#else
|
|
|
|
//
|
|
// Enumeration of metrics you can ask for. Note that you will only receive a
|
|
// notification for SHUIM_FONTSIZE_POINT when any these three values changes.
|
|
//
|
|
typedef enum tagSHUIMETRIC
|
|
{
|
|
SHUIM_INVALID = 0, // Illegal
|
|
SHUIM_FONTSIZE_POINT, // Application font size (hundredths of a point) -- buffer is pointer to DWORD
|
|
SHUIM_FONTSIZE_PIXEL, // Application font size (in pixels) -- buffer is pointer to DWORD
|
|
SHUIM_FONTSIZE_PERCENTAGE, // Application font size as percentage of normal -- buffer is pointer to DWORD
|
|
} SHUIMETRIC;
|
|
|
|
typedef HRESULT (*PSHGETUIMETRICS)(SHUIMETRIC, PVOID, DWORD, DWORD*);
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// FUNCTION: SHGetUIMetrics
|
|
//
|
|
// PURPOSE: retrieves the shell's UI metrics. Although this function does not
|
|
// exist in the Pocket PC 2003 SDK, it exists AYGSHELL.DLL in newer
|
|
// versions of the Pocket PC. This function simply LoadLibrary's AYGSHELL
|
|
// and calls the function if it exists.
|
|
//
|
|
// ON ENTRY:
|
|
// SHUIMETRIC shuim: the metric to retrieve.
|
|
// PVOID pvBuffer: the retrieved data for the metric.
|
|
// DWORD cbBufferSize: the size of pvBuffer (should be sizeof(DWORD)).
|
|
// DWORD* pcbRequired: retrieves the minimum size of the buffer necessary
|
|
// to get the specified system UI metric. This can be NULL.
|
|
//
|
|
|
|
__inline HRESULT SHGetUIMetrics(SHUIMETRIC shuim, PVOID pvBuffer, DWORD cbBufferSize, DWORD *pcbRequired)
|
|
{
|
|
PSHGETUIMETRICS pSHGetUIMetrics = (PSHGETUIMETRICS)GetProcAddress(LoadLibrary(_T("AYGSHELL")), _T("SHGetUIMetrics"));
|
|
if (pSHGetUIMetrics)
|
|
{
|
|
return pSHGetUIMetrics(shuim, pvBuffer, cbBufferSize, pcbRequired);
|
|
}
|
|
else if (pvBuffer != NULL && cbBufferSize >= sizeof(DWORD))
|
|
{
|
|
//
|
|
// Not supported on this version of Pocket PC, so come up with a reasonable default.
|
|
//
|
|
LOGFONT lf;
|
|
HFONT hFont = (HFONT)GetStockObject(SYSTEM_FONT);
|
|
GetObject(hFont, sizeof(lf), &lf);
|
|
switch (shuim)
|
|
{
|
|
case SHUIM_FONTSIZE_POINT:
|
|
{
|
|
HDC hDC = GetDC(NULL);
|
|
int nDPI = GetDeviceCaps(hDC, LOGPIXELSY);
|
|
ReleaseDC(NULL, hDC);
|
|
*(DWORD*)pvBuffer = (-lf.lfHeight * 7200) / nDPI;
|
|
break;
|
|
}
|
|
case SHUIM_FONTSIZE_PIXEL: *(DWORD*)pvBuffer = -lf.lfHeight; break;
|
|
case SHUIM_FONTSIZE_PERCENTAGE: *(DWORD*)pvBuffer = 100; break;
|
|
}
|
|
}
|
|
else if (pcbRequired)
|
|
{
|
|
*pcbRequired = sizeof(DWORD);
|
|
}
|
|
return S_OK;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|