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
1f2eb859
Commit
1f2eb859
authored
Aug 27, 2006
by
Brian Chang
Committed by
Alexandre Julliard
Aug 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: EM_EXSETSEL fixes and conformance tests.
parent
6ba5d2e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
4 deletions
+73
-4
editor.c
dlls/riched20/editor.c
+21
-4
editor.c
dlls/riched20/tests/editor.c
+52
-0
No files found.
dlls/riched20/editor.c
View file @
1f2eb859
...
...
@@ -1602,13 +1602,30 @@ LRESULT WINAPI RichEditANSIWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lP
}
case
EM_EXSETSEL
:
{
CHARRANGE
*
pRange
=
(
CHARRANGE
*
)
lParam
;
TRACE
(
"EM_EXSETSEL (%ld,%ld)
\n
"
,
pRange
->
cpMin
,
pRange
->
cpMax
);
int
start
,
end
;
CHARRANGE
range
=
*
(
CHARRANGE
*
)
lParam
;
TRACE
(
"EM_EXSETSEL (%ld,%ld)
\n
"
,
range
.
cpMin
,
range
.
cpMax
);
/* if cpMin < 0, then selection is deselected and caret moved to end of
* the current selection */
if
(
range
.
cpMin
<
0
)
{
ME_GetSelection
(
editor
,
&
start
,
&
end
);
range
.
cpMin
=
end
;
range
.
cpMax
=
end
;
}
else
if
(
range
.
cpMax
>
ME_GetTextLength
(
editor
)
+
1
)
{
range
.
cpMax
=
ME_GetTextLength
(
editor
)
+
1
;
}
ME_InvalidateSelection
(
editor
);
ME_SetSelection
(
editor
,
pRange
->
cpMin
,
pRange
->
cpMax
);
ME_SetSelection
(
editor
,
range
.
cpMin
,
range
.
cpMax
);
ME_InvalidateSelection
(
editor
);
ME_SendSelChange
(
editor
);
return
0
;
return
range
.
cpMax
;
}
case
EM_SHOWSCROLLBAR
:
{
...
...
dlls/riched20/tests/editor.c
View file @
1f2eb859
...
...
@@ -1316,6 +1316,57 @@ static void test_EM_GETMODIFY(void)
DestroyWindow
(
hwndRichEdit
);
}
static
void
test_EM_EXSETSEL
(
void
)
{
HWND
hwndRichEdit
=
new_richedit
(
NULL
);
long
result
;
CHARRANGE
cr
;
int
start
,
end
;
/* sending some text to the window */
SendMessage
(
hwndRichEdit
,
WM_SETTEXT
,
0
,
(
LPARAM
)
"testing selection"
);
/* 01234567890123456*/
/* 10 */
/* EM_EXSETSEL returns (cr.cpMax < strlen+1 ? cr.cpMax:strlen+1 if cpMin is positive */
cr
.
cpMin
=
0
;
cr
.
cpMax
=
100
;
result
=
SendMessage
(
hwndRichEdit
,
EM_EXSETSEL
,
0
,
(
LPARAM
)
&
cr
);
ok
(
result
==
18
,
"EM_EXSETSEL: expected: 18 actual: %ld
\n
"
,
result
);
SendMessage
(
hwndRichEdit
,
EM_GETSEL
,
(
WPARAM
)
&
start
,
(
LPARAM
)
&
end
);
/* FIXME: EM_GETSEL needs to return proper ending value */
todo_wine
{
ok
(
start
==
0
&&
end
==
18
,
"EM_EXSETSEL: expected (0,18) actual:(%d,%d)
\n
"
,
start
,
end
);
}
cr
.
cpMin
=
5
;
cr
.
cpMax
=
10
;
result
=
SendMessage
(
hwndRichEdit
,
EM_EXSETSEL
,
0
,
(
LPARAM
)
&
cr
);
ok
(
result
==
10
,
"EM_EXSETSEL: expected: 10 actual: %ld
\n
"
,
result
);
SendMessage
(
hwndRichEdit
,
EM_GETSEL
,
(
WPARAM
)
&
start
,
(
LPARAM
)
&
end
);
ok
(
start
==
5
&&
end
==
10
,
"EM_EXSETSEL: expected (5,10) actual:(%d,%d)
\n
"
,
start
,
end
);
cr
.
cpMin
=
15
;
cr
.
cpMax
=
17
;
result
=
SendMessage
(
hwndRichEdit
,
EM_EXSETSEL
,
0
,
(
LPARAM
)
&
cr
);
ok
(
result
==
17
,
"EM_EXSETSEL: expected: 17 actual: %ld
\n
"
,
result
);
SendMessage
(
hwndRichEdit
,
EM_GETSEL
,
(
WPARAM
)
&
start
,
(
LPARAM
)
&
end
);
ok
(
start
==
15
&&
end
==
17
,
"EM_EXSETSEL: expected (15,17) actual:(%d,%d)
\n
"
,
start
,
end
);
/* bug 4462 - the following values get used in FileZilla */
/* when min < 0, selection is deselected and caret is moved to end of last selection */
cr
.
cpMin
=
-
3
;
cr
.
cpMax
=
0
;
result
=
SendMessage
(
hwndRichEdit
,
EM_EXSETSEL
,
0
,
(
LPARAM
)
&
cr
);
ok
(
result
==
17
,
"EM_EXSETSEL: expected: 17 actual: %ld
\n
"
,
result
);
SendMessage
(
hwndRichEdit
,
EM_GETSEL
,
(
WPARAM
)
&
start
,
(
LPARAM
)
&
end
);
ok
(
start
==
17
&&
end
==
17
,
"EM_EXSETSEL: expected (17,17) actual:(%d,%d)
\n
"
,
start
,
end
);
DestroyWindow
(
hwndRichEdit
);
}
START_TEST
(
editor
)
{
MSG
msg
;
...
...
@@ -1341,6 +1392,7 @@ START_TEST( editor )
test_EM_GETLIMITTEXT
();
test_WM_SETFONT
();
test_EM_GETMODIFY
();
test_EM_EXSETSEL
();
/* 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