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
7fef23ea
Commit
7fef23ea
authored
May 04, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add getMainMonitor
parent
761d9d42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
monitor.h
jlib/win32/monitor.h
+9
-6
No files found.
jlib/win32/monitor.h
View file @
7fef23ea
...
...
@@ -9,9 +9,7 @@ namespace win32 {
struct
MonitorInfo
{
struct
Resolution
{
int
w
;
int
h
;
int
hz
;
int
w
=
0
,
h
=
0
,
hz
=
0
;
bool
operator
==
(
const
Resolution
&
r
)
const
{
return
w
==
r
.
w
&&
h
==
r
.
h
&&
hz
==
r
.
hz
;
...
...
@@ -23,9 +21,7 @@ struct MonitorInfo {
return
res
;
}
bool
valid
()
const
{
return
!
(
w
==
0
||
h
==
0
||
hz
==
0
);
}
bool
valid
()
const
{
return
!
(
w
==
0
||
h
==
0
||
hz
==
0
);
}
};
bool
isMain
=
false
;
...
...
@@ -185,8 +181,15 @@ static MonitorInfos getMonitors()
return
mis
;
}
//! 获取主显示器信息
static
MonitorInfo
getMainMonitor
(
MonitorInfos
mis
=
{})
{
if
(
mis
.
empty
())
{
mis
=
getMonitors
();
}
for
(
const
auto
&
mi
:
mis
)
{
if
(
mi
.
isMain
)
{
return
mi
;
}
}
return
MonitorInfo
{};
}
//////////////////////////////////////////////////////////////////////////////////////////////
//! 设置显示模式:扩展模式
...
...
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