Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e6b16cce
Commit
e6b16cce
authored
Oct 10, 2008
by
Dylan Smith
Committed by
Alexandre Julliard
Oct 13, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: Added test for word wrapping behaviour.
parent
440db38e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
editor.c
dlls/riched20/tests/editor.c
+77
-0
No files found.
dlls/riched20/tests/editor.c
View file @
e6b16cce
...
...
@@ -5461,6 +5461,82 @@ static void test_EM_CHARFROMPOS(void)
DestroyWindow
(
hwnd
);
}
static
void
test_word_wrap
(
void
)
{
HWND
hwnd
;
POINTL
point
=
{
0
,
60
};
/* This point must be below the first line */
const
char
*
text
=
"Must be long enough to test line wrapping"
;
DWORD
dwCommonStyle
=
WS_VISIBLE
|
WS_POPUP
|
WS_VSCROLL
|
ES_MULTILINE
;
int
res
,
pos
;
/* Test the effect of WS_HSCROLL and ES_AUTOHSCROLL styles on wrapping
* when specified on window creation and set later. */
hwnd
=
CreateWindow
(
RICHEDIT_CLASS
,
NULL
,
dwCommonStyle
,
0
,
0
,
200
,
80
,
NULL
,
NULL
,
hmoduleRichEdit
,
NULL
);
ok
(
hwnd
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
res
=
SendMessage
(
hwnd
,
WM_SETTEXT
,
0
,
(
LPARAM
)
text
);
ok
(
res
,
"WM_SETTEXT failed.
\n
"
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
pos
,
"pos=%d indicating no word wrap when it is expected.
\n
"
,
pos
);
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
dwCommonStyle
|
WS_HSCROLL
|
ES_AUTOHSCROLL
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
pos
,
"pos=%d indicating no word wrap when it is expected.
\n
"
,
pos
);
DestroyWindow
(
hwnd
);
hwnd
=
CreateWindow
(
RICHEDIT_CLASS
,
NULL
,
dwCommonStyle
|
WS_HSCROLL
,
0
,
0
,
200
,
80
,
NULL
,
NULL
,
hmoduleRichEdit
,
NULL
);
ok
(
hwnd
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
res
=
SendMessage
(
hwnd
,
WM_SETTEXT
,
0
,
(
LPARAM
)
text
);
ok
(
res
,
"WM_SETTEXT failed.
\n
"
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
dwCommonStyle
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
DestroyWindow
(
hwnd
);
hwnd
=
CreateWindow
(
RICHEDIT_CLASS
,
NULL
,
dwCommonStyle
|
ES_AUTOHSCROLL
,
0
,
0
,
200
,
80
,
NULL
,
NULL
,
hmoduleRichEdit
,
NULL
);
ok
(
hwnd
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
res
=
SendMessage
(
hwnd
,
WM_SETTEXT
,
0
,
(
LPARAM
)
text
);
ok
(
res
,
"WM_SETTEXT failed.
\n
"
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
dwCommonStyle
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
DestroyWindow
(
hwnd
);
hwnd
=
CreateWindow
(
RICHEDIT_CLASS
,
NULL
,
dwCommonStyle
|
WS_HSCROLL
|
ES_AUTOHSCROLL
,
0
,
0
,
200
,
80
,
NULL
,
NULL
,
hmoduleRichEdit
,
NULL
);
ok
(
hwnd
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
res
=
SendMessage
(
hwnd
,
WM_SETTEXT
,
0
,
(
LPARAM
)
text
);
ok
(
res
,
"WM_SETTEXT failed.
\n
"
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
SetWindowLongW
(
hwnd
,
GWL_STYLE
,
dwCommonStyle
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
/* Test the effect of EM_SETTARGETDEVICE on word wrap. */
res
=
SendMessage
(
hwnd
,
EM_SETTARGETDEVICE
,
0
,
1
);
todo_wine
ok
(
res
,
"EM_SETTARGETDEVICE failed (returned %d).
\n
"
,
res
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
!
pos
,
"pos=%d indicating word wrap when none is expected.
\n
"
,
pos
);
res
=
SendMessage
(
hwnd
,
EM_SETTARGETDEVICE
,
0
,
0
);
todo_wine
ok
(
res
,
"EM_SETTARGETDEVICE failed (returned %d).
\n
"
,
res
);
pos
=
SendMessage
(
hwnd
,
EM_CHARFROMPOS
,
0
,
(
LPARAM
)
&
point
);
ok
(
pos
,
"pos=%d indicating no word wrap when it is expected.
\n
"
,
pos
);
DestroyWindow
(
hwnd
);
}
START_TEST
(
editor
)
{
/* Must explicitly LoadLibrary(). The test has no references to functions in
...
...
@@ -5508,6 +5584,7 @@ START_TEST( editor )
test_word_movement
();
test_EM_CHARFROMPOS
();
test_SETPARAFORMAT
();
test_word_wrap
();
/* Set the environment variable WINETEST_RICHED20 to keep windows
* responsive and open for 30 seconds. This is useful for debugging.
...
...
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