Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
761d9d42
Commit
761d9d42
authored
May 04, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
call EnumDisplayMonitors to get HMONITOR/HDC/RECT
parent
4f3b52c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
53 deletions
+60
-53
monitor.h
jlib/win32/monitor.h
+59
-52
test_monitor.cpp
test/test_monitor/test_monitor.cpp
+1
-1
No files found.
jlib/win32/monitor.h
View file @
761d9d42
...
...
@@ -35,6 +35,10 @@ struct MonitorInfo {
Resolution
curResolution
=
{};
std
::
vector
<
Resolution
>
supportResolutions
=
{};
HMONITOR
hMonitor
=
nullptr
;
HDC
hDC
=
nullptr
;
RECT
rc
=
{};
bool
isResolutionSupport
(
int
w
,
int
h
,
int
hz
)
const
{
for
(
const
auto
&
r
:
supportResolutions
)
{
if
(
r
.
w
==
w
&&
r
.
h
==
h
&&
r
.
hz
==
hz
)
{
return
true
;
}
...
...
@@ -59,6 +63,16 @@ struct MonitorInfo {
str
+=
L" name : "
+
name
+
L"
\n
"
;
str
+=
L" deviceName : "
+
deviceName
+
L"
\n
"
;
str
+=
L" deviceString : "
+
deviceString
+
L"
\n
"
;
str
+=
L" hMonitor : "
;
str
+=
hMonitor
?
L"valid"
:
L"nullptr"
;
str
+=
L"
\n
"
;
str
+=
L" hDC : "
;
str
+=
hDC
?
L"valid"
:
L"nullptr"
;
str
+=
L"
\n
"
;
str
+=
L" rect : "
;
str
+=
L"left="
+
std
::
to_wstring
(
rc
.
left
);
str
+=
L" top="
+
std
::
to_wstring
(
rc
.
top
);
str
+=
L" right="
+
std
::
to_wstring
(
rc
.
right
);
str
+=
L" bottom="
+
std
::
to_wstring
(
rc
.
bottom
);
str
+=
L" ("
+
std
::
to_wstring
(
rc
.
right
-
rc
.
left
)
+
L"x"
+
std
::
to_wstring
(
rc
.
bottom
-
rc
.
top
)
+
L")
\n
"
;
str
+=
L" curResolution : "
+
curResolution
.
toString
()
+
L"
\n
"
;
if
(
withSupportRes
)
{
str
+=
L" supportResolutions : {
\n
"
;
...
...
@@ -99,13 +113,15 @@ static MonitorInfos getMonitors()
mi
.
isMain
=
true
;
}
// get current resolution
DEVMODE
dm
=
{
0
};
dm
.
dmSize
=
sizeof
(
dm
);
EnumDisplaySettings
(
displayDevice
.
DeviceName
,
ENUM_CURRENT_SETTINGS
,
&
dm
);
EnumDisplaySettings
W
(
displayDevice
.
DeviceName
,
ENUM_CURRENT_SETTINGS
,
&
dm
);
mi
.
curResolution
.
w
=
dm
.
dmPelsWidth
;
mi
.
curResolution
.
h
=
dm
.
dmPelsHeight
;
mi
.
curResolution
.
hz
=
dm
.
dmDisplayFrequency
;
// get supported resolutions
for
(
int
i
=
0
;
0
!=
EnumDisplaySettingsW
(
displayDevice
.
DeviceName
,
i
,
&
dm
);
i
++
)
{
MonitorInfo
::
Resolution
r
{
(
int
)
dm
.
dmPelsWidth
,
(
int
)
dm
.
dmPelsHeight
,
(
int
)
dm
.
dmDisplayFrequency
};
if
(
!
mi
.
isResolutionSupport
(
r
))
{
...
...
@@ -113,66 +129,54 @@ static MonitorInfos getMonitors()
}
}
// detached device, use first supportted res
if
(
!
mi
.
supportResolutions
.
empty
())
{
// detached device, use first supportted res
if
(
!
mi
.
curResolution
.
valid
())
{
mi
.
curResolution
=
mi
.
supportResolutions
.
front
();
}
DISPLAY_DEVICE
dd
;
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
int
iMonitorNum
=
0
;
if
(
EnumDisplayDevices
(
displayDevice
.
DeviceName
,
iMonitorNum
,
&
dd
,
0
))
{
//MYQDEBUG << "Device #" << iDevNum << "Monitor #" << iMonitorNum;
//dumpDISPLAY_DEVICE(dd);
std
::
wstring
name
=
dd
.
DeviceString
;
if
(
name
!=
L"Generic PnP Monitor"
&&
name
!=
L"通用即插即用监视器"
)
{
mi
.
name
=
name
;
}
else
{
std
::
wstring
deviceId
=
dd
.
DeviceID
;
deviceId
=
deviceId
.
substr
(
8
,
deviceId
.
find
(
L"
\\
"
,
9
)
-
8
);
mi
.
name
=
deviceId
;
}
//dumpMoniterInfo(mi);
mis
.
push_back
(
mi
);
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
iMonitorNum
++
;
}
}
}
else
{
#ifdef _DEBUG
//MYQDEBUG << "no supported resolutions!";
#endif
DISPLAY_DEVICE
dd
;
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
int
iMonitorNum
=
0
;
if
(
EnumDisplayDevices
(
displayDevice
.
DeviceName
,
iMonitorNum
,
&
dd
,
0
))
{
//MYQDEBUG << "Device #" << iDevNum << "Monitor #" << iMonitorNum;
//dumpDISPLAY_DEVICE(dd);
std
::
wstring
name
=
dd
.
DeviceString
;
if
(
name
!=
L"Generic PnP Monitor"
&&
name
!=
L"通用即插即用监视器"
)
{
mi
.
name
=
name
;
}
else
{
std
::
wstring
deviceId
=
dd
.
DeviceID
;
deviceId
=
deviceId
.
substr
(
8
,
deviceId
.
find
(
L"
\\
"
,
9
)
-
8
);
mi
.
name
=
deviceId
;
}
//dumpMoniterInfo(mi);
mis
.
push_back
(
mi
);
}
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
iMonitorNum
++
;
// get HMONITOR/HDC/etc.. by EnumDisplayMonitors
EnumDisplayMonitors
(
NULL
,
NULL
,
[](
HMONITOR
hMonitor
,
HDC
hDC
,
LPRECT
rc
,
LPARAM
data
)
->
BOOL
{
auto
&
mi
=
*
reinterpret_cast
<
MonitorInfo
*>
(
data
);
MONITORINFOEX
info
;
info
.
cbSize
=
sizeof
(
info
);
if
(
GetMonitorInfoW
(
hMonitor
,
&
info
)
&&
mi
.
deviceName
==
info
.
szDevice
)
{
mi
.
hMonitor
=
hMonitor
;
mi
.
hDC
=
hDC
;
mi
.
rc
=
*
rc
;
return
FALSE
;
}
return
TRUE
;
},
reinterpret_cast
<
LPARAM
>
(
&
mi
));
// get human readable name
DISPLAY_DEVICE
dd
;
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
int
iMonitorNum
=
0
;
if
(
EnumDisplayDevices
(
displayDevice
.
DeviceName
,
iMonitorNum
,
&
dd
,
0
))
{
//MYQDEBUG << "Device #" << iDevNum << "Monitor #" << iMonitorNum;
//dumpDISPLAY_DEVICE(dd);
std
::
wstring
name
=
dd
.
DeviceString
;
if
(
name
!=
L"Generic PnP Monitor"
&&
name
!=
L"通用即插即用监视器"
)
{
mi
.
name
=
name
;
}
else
{
std
::
wstring
deviceId
=
dd
.
DeviceID
;
deviceId
=
deviceId
.
substr
(
8
,
deviceId
.
find
(
L"
\\
"
,
9
)
-
8
);
mi
.
name
=
deviceId
;
}
//dumpMoniterInfo(mi);
mis
.
push_back
(
mi
);
ZeroMemory
(
&
dd
,
sizeof
(
DISPLAY_DEVICE
));
dd
.
cb
=
sizeof
(
dd
);
iMonitorNum
++
;
}
}
iDevNum
++
;
...
...
@@ -182,6 +186,9 @@ static MonitorInfos getMonitors()
}
//! 设置显示模式:扩展模式
static
bool
setExtendMode
()
{
auto
ret
=
SetDisplayConfig
(
0
,
NULL
,
0
,
NULL
,
SDC_TOPOLOGY_EXTEND
|
SDC_APPLY
);
...
...
test/test_monitor/test_monitor.cpp
View file @
761d9d42
...
...
@@ -8,6 +8,6 @@ int main()
auto
mis
=
getMonitors
();
printf
(
"total %zu monitors:
\n
"
,
mis
.
size
());
for
(
const
auto
&
mi
:
mis
)
{
wprintf
(
mi
.
toString
(
true
).
data
());
wprintf
(
mi
.
toString
().
data
());
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment