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
ad3ed40f
Commit
ad3ed40f
authored
Jul 04, 2016
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename namespace detail in win32.h to rc_detail
parent
9aa20c50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
win32.h
win32.h
+6
-6
No files found.
win32.h
View file @
ad3ed40f
...
@@ -137,7 +137,7 @@ public:
...
@@ -137,7 +137,7 @@ public:
};
};
namespace
detail
{
namespace
rc_
detail
{
inline
auto
Width
(
LPCRECT
rc
)
{
inline
auto
Width
(
LPCRECT
rc
)
{
return
rc
->
right
-
rc
->
left
;
return
rc
->
right
-
rc
->
left
;
...
@@ -165,7 +165,7 @@ inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
...
@@ -165,7 +165,7 @@ inline void InflateRect(LPRECT rc, int l, int t, int r, int b) {
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
// 将矩形平均分割成n份,间距2*gap, n is x^2, x={1,2,3...}
inline
std
::
vector
<
RECT
>
split_rect
(
LPCRECT
rc
,
int
n
,
int
gap
=
50
)
{
inline
std
::
vector
<
RECT
>
split_rect
(
LPCRECT
rc
,
int
n
,
int
gap
=
50
)
{
using
namespace
detail
;
using
namespace
rc_
detail
;
std
::
vector
<
RECT
>
v
;
std
::
vector
<
RECT
>
v
;
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
...
@@ -175,15 +175,15 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
...
@@ -175,15 +175,15 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
double
l
=
sqrt
(
n
);
double
l
=
sqrt
(
n
);
int
line
=
int
(
l
);
int
line
=
int
(
l
);
int
col_step
=
(
int
)(
detail
::
Width
(
rc
)
/
line
);
int
col_step
=
(
int
)(
Width
(
rc
)
/
line
);
int
row_step
=
(
int
)(
detail
::
Height
(
rc
)
/
line
);
int
row_step
=
(
int
)(
Height
(
rc
)
/
line
);
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
for
(
int
i
=
0
;
i
<
n
;
i
++
)
{
v
[
i
].
left
=
rc
->
left
+
(
i
%
line
)
*
col_step
;
v
[
i
].
left
=
rc
->
left
+
(
i
%
line
)
*
col_step
;
v
[
i
].
right
=
v
[
i
].
left
+
col_step
;
v
[
i
].
right
=
v
[
i
].
left
+
col_step
;
v
[
i
].
top
=
rc
->
top
+
(
i
/
line
)
*
row_step
;
v
[
i
].
top
=
rc
->
top
+
(
i
/
line
)
*
row_step
;
v
[
i
].
bottom
=
v
[
i
].
top
+
row_step
;
v
[
i
].
bottom
=
v
[
i
].
top
+
row_step
;
detail
::
DeflateRect
(
&
v
[
i
],
gap
,
gap
,
gap
,
gap
);
DeflateRect
(
&
v
[
i
],
gap
,
gap
,
gap
,
gap
);
}
}
return
v
;
return
v
;
...
@@ -191,7 +191,7 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
...
@@ -191,7 +191,7 @@ inline std::vector<RECT> split_rect(LPCRECT rc, int n, int gap = 50) {
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
// 将矩形水平平均分割为n份矩形, 当hgap==-1时,分割出的矩形与源矩形保持比例
inline
std
::
vector
<
RECT
>
split_rect_horizontal
(
LPCRECT
rc
,
int
n
,
int
wgap
=
50
,
int
hgap
=
-
1
)
{
inline
std
::
vector
<
RECT
>
split_rect_horizontal
(
LPCRECT
rc
,
int
n
,
int
wgap
=
50
,
int
hgap
=
-
1
)
{
using
namespace
detail
;
using
namespace
rc_
detail
;
std
::
vector
<
RECT
>
v
;
std
::
vector
<
RECT
>
v
;
int
w
=
(
Width
(
rc
)
-
(
n
+
1
)
*
wgap
)
/
n
;
int
w
=
(
Width
(
rc
)
-
(
n
+
1
)
*
wgap
)
/
n
;
...
...
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