Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
92d77c9b
Commit
92d77c9b
authored
Feb 14, 2002
by
Bill Medland
Committed by
Alexandre Julliard
Feb 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DrawText should not split words just because of clipping.
parent
07539673
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
20 deletions
+4
-20
text.c
dlls/user/text.c
+4
-20
No files found.
dlls/user/text.c
View file @
92d77c9b
...
...
@@ -71,7 +71,6 @@ DEFAULT_DEBUG_CHANNEL(text);
#define SPACE 32
#define PREFIX 38
#define ELLIPSIS "..."
#define FORWARD_SLASH '/'
#define BACK_SLASH '\\'
...
...
@@ -144,7 +143,7 @@ static void TEXT_Ellipsify (HDC hdc, WCHAR *str, unsigned int max_len,
}
/*********************************************************************
* TEXT_PathEll
l
ipsify (static)
* TEXT_PathEllipsify (static)
*
* Add an ellipsis to the provided string in order to make it fit within
* the width. The ellipsis is added as specified for the DT_PATH_ELLIPSIS
...
...
@@ -394,12 +393,11 @@ static const WCHAR *TEXT_NextLineW( HDC hdc, const WCHAR *str, int *count,
wb_i
=
i
+
1
;
wb_j
=
j
;
wb_count
=
*
count
;
plen
=
((
plen
/
tabwidth
)
+
1
)
*
tabwidth
;
}
normal_char
=
0
;
dest
[
j
++
]
=
str
[
i
++
];
if
(
!
(
format
&
DT_NOCLIP
)
||
(
format
&
DT_WORDBREAK
))
plen
=
((
plen
/
tabwidth
)
+
1
)
*
tabwidth
;
}
break
;
...
...
@@ -418,7 +416,7 @@ static const WCHAR *TEXT_NextLineW( HDC hdc, const WCHAR *str, int *count,
if
(
normal_char
)
{
dest
[
j
++
]
=
str
[
i
++
];
if
(
!
(
format
&
DT_NOCLIP
)
||
(
format
&
DT_WORDBREAK
))
if
((
format
&
DT_WORDBREAK
))
{
if
(
!
GetTextExtentPointW
(
hdc
,
&
dest
[
j
-
1
],
1
,
&
size
))
return
NULL
;
...
...
@@ -427,25 +425,11 @@ static const WCHAR *TEXT_NextLineW( HDC hdc, const WCHAR *str, int *count,
}
(
*
count
)
--
;
if
(
!
(
format
&
DT_NOCLIP
)
||
(
format
&
DT_WORDBREAK
)
)
if
(
(
format
&
DT_WORDBREAK
)
&&
plen
>
width
&&
wb_j
)
{
if
(
plen
>
width
)
{
if
(
format
&
DT_WORDBREAK
)
{
if
(
wb_j
)
{
*
len
=
wb_j
;
*
count
=
wb_count
-
1
;
return
(
&
str
[
wb_i
]);
}
}
else
{
*
len
=
j
;
return
(
&
str
[
i
]);
}
}
}
}
...
...
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