setIntProperty(propName, win32.GetSystemMetrics(idx), props);
}
private int getIntSPI(int idx) {
NativeBridge bridge = NativeBridge.getInstance();
Int32Pointer ptr = bridge.createInt32Pointer(1, false);
win32.SystemParametersInfoW(idx, 0, ptr, 0);
return ptr.get(0);
}
private void getBoolSPI(String propName, int idx, Map<String, Object> props) {