src/java.desktop/windows/native/common/awt/systemscale/systemScale.cpp
author mgronlun
Wed, 25 Sep 2019 22:40:41 +0200
branchJEP-349-branch
changeset 58343 ca19b94eac7a
parent 58129 7b751fe181a5
parent 58316 718496767a7d
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36907
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
     1
/*
48373
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     4
 *
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    10
 *
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    15
 * accompanied this code).
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    16
 *
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    20
 *
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    23
 * questions.
f9152f462cbc 8193758: Update copyright headers of files in src tree that are missing Classpath exception
alanb
parents: 47216
diff changeset
    24
 */
36907
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    25
#include "systemScale.h"
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    26
#include <d2d1.h>
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    27
#include <jdk_util.h>
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    28
#ifndef MDT_EFFECTIVE_DPI
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    29
#define MDT_EFFECTIVE_DPI 0
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    30
#endif
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    31
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    32
void GetScreenDpi(HMONITOR hmon, float *dpiX, float *dpiY)
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    33
{
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    34
    unsigned x = 0;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    35
    unsigned y = 0;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    36
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    37
    // for debug purposes
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    38
    static float scale = -2.0f;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    39
    if (scale == -2) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    40
        scale = -1;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    41
        char *uiScale = getenv("J2D_UISCALE");
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    42
        if (uiScale != NULL) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    43
            scale = (float)strtod(uiScale, NULL);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    44
            if (errno == ERANGE || scale <= 0) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    45
                scale = -1;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    46
            }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    47
        }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    48
    }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    49
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    50
    if (scale > 0) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    51
        *dpiX = *dpiY = scale;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    52
        return;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    53
    }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    54
58316
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    55
    typedef HRESULT(WINAPI D2D1CreateFactoryFunc)
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    56
                   (D2D1_FACTORY_TYPE, REFIID,
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    57
                    CONST D2D1_FACTORY_OPTIONS*, ID2D1Factory**);
36907
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    58
    typedef HRESULT(WINAPI GetDpiForMonitorFunc)(HMONITOR, int, UINT*, UINT*);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    59
    static HMODULE hLibSHCoreDll = NULL;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    60
    static GetDpiForMonitorFunc *lpGetDpiForMonitor = NULL;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    61
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    62
    if (hLibSHCoreDll == NULL) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    63
        hLibSHCoreDll = JDK_LoadSystemLibrary("shcore.dll");
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    64
        if (hLibSHCoreDll != NULL) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    65
            lpGetDpiForMonitor = (GetDpiForMonitorFunc*)GetProcAddress(
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    66
                hLibSHCoreDll, "GetDpiForMonitor");
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    67
        }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    68
    }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    69
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    70
    if (lpGetDpiForMonitor != NULL) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    71
        HRESULT hResult = lpGetDpiForMonitor(hmon,
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    72
                                             MDT_EFFECTIVE_DPI, &x, &y);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    73
        if (hResult == S_OK) {
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    74
            *dpiX = static_cast<float>(x);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    75
            *dpiY = static_cast<float>(y);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    76
        }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    77
    } else {
58316
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    78
        static HMODULE d2dDll = NULL;
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    79
        static BOOL loadAttempted = FALSE;
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    80
        static D2D1CreateFactoryFunc *lpD2D1CreateFactory = NULL;
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    81
        if (!loadAttempted && d2dDll == NULL) {
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    82
            loadAttempted = TRUE;
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    83
            d2dDll = JDK_LoadSystemLibrary("d2d1.dll");
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    84
        }
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    85
        if (d2dDll != NULL && lpD2D1CreateFactory == NULL) {
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    86
            lpD2D1CreateFactory = (D2D1CreateFactoryFunc*)GetProcAddress(
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    87
                    d2dDll, "D2D1CreateFactory");
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    88
        }
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    89
        if (lpD2D1CreateFactory != NULL) {
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    90
            ID2D1Factory* m_pDirect2dFactory;
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    91
            HRESULT res = lpD2D1CreateFactory
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    92
                          (D2D1_FACTORY_TYPE_SINGLE_THREADED,
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    93
                           __uuidof(ID2D1Factory), NULL,
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    94
                           &m_pDirect2dFactory);
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    95
            if (res == S_OK) {
58129
7b751fe181a5 Restructure stream configuration
egahlin
parents: 48373
diff changeset
    96
           // m_pDirect2dFactory->GetDesktopDpi(dpiX, dpiY);
58316
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    97
                m_pDirect2dFactory->Release();
718496767a7d 8229800: WindowsServerCore 1809 does not provide d2d1.dll library required by awt.dll
prr
parents: 48373
diff changeset
    98
            }
36907
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
    99
        }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   100
    }
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   101
    return;
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   102
}
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   103
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   104
HMONITOR WINAPI getPrimaryMonitor()
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   105
{
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   106
    const POINT point = { 0, 0 };
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   107
    return MonitorFromPoint(point, MONITOR_DEFAULTTOPRIMARY);
c3d8383e3efb 8145173: HiDPI splash screen support on Windows
rchamyal
parents:
diff changeset
   108
}