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
986306cd
Commit
986306cd
authored
May 20, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/syslink: Use wine list to keep items.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f4640b04
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
70 deletions
+39
-70
syslink.c
dlls/comctl32/syslink.c
+39
-70
No files found.
dlls/comctl32/syslink.c
View file @
986306cd
...
...
@@ -38,6 +38,7 @@
#include "comctl32.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/list.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
syslink
);
...
...
@@ -61,7 +62,7 @@ typedef enum
typedef
struct
_DOC_ITEM
{
struct
_DOC_ITEM
*
Next
;
/* Address to the next item */
struct
list
entry
;
UINT
nText
;
/* Number of characters of the text */
SL_ITEM_TYPE
Type
;
/* type of the item */
PDOC_TEXTBLOCK
Blocks
;
/* Array of text blocks */
...
...
@@ -86,7 +87,7 @@ typedef struct
HWND
Self
;
/* The window handle for this control */
HWND
Notify
;
/* The parent handle to receive notifications */
DWORD
Style
;
/* Styles for this control */
PDOC_ITEM
Items
;
/* Address to the first document item
*/
struct
list
Items
;
/* Document items list
*/
BOOL
HasFocus
;
/* Whether the control has the input focus */
int
MouseDownID
;
/* ID of the link that the mouse button first selected */
HFONT
Font
;
/* Handle to the font for text */
...
...
@@ -147,21 +148,14 @@ static PDOC_ITEM SYSLINK_AppendDocItem (SYSLINK_INFO *infoPtr, LPCWSTR Text, UIN
return
NULL
;
}
Item
->
Next
=
NULL
;
Item
->
nText
=
textlen
;
Item
->
Type
=
type
;
Item
->
Blocks
=
NULL
;
if
(
LastItem
!=
NULL
)
{
LastItem
->
Next
=
Item
;
}
else
{
infoPtr
->
Items
=
Item
;
}
lstrcpynW
(
Item
->
Text
,
Text
,
textlen
+
1
);
if
(
LastItem
)
list_add_after
(
&
LastItem
->
entry
,
&
Item
->
entry
);
else
list_add_tail
(
&
infoPtr
->
Items
,
&
Item
->
entry
);
return
Item
;
}
...
...
@@ -172,17 +166,13 @@ static PDOC_ITEM SYSLINK_AppendDocItem (SYSLINK_INFO *infoPtr, LPCWSTR Text, UIN
*/
static
VOID
SYSLINK_ClearDoc
(
SYSLINK_INFO
*
infoPtr
)
{
PDOC_ITEM
Item
,
Next
;
DOC_ITEM
*
Item
,
*
Item2
;
Item
=
infoPtr
->
Items
;
while
(
Item
!=
NULL
)
LIST_FOR_EACH_ENTRY_SAFE
(
Item
,
Item2
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
Next
=
Item
->
Next
;
list_remove
(
&
Item
->
entry
)
;
SYSLINK_FreeDocItem
(
Item
);
Item
=
Next
;
}
infoPtr
->
Items
=
NULL
;
}
/***********************************************************************
...
...
@@ -526,16 +516,13 @@ static VOID SYSLINK_RepaintLink (const SYSLINK_INFO *infoPtr, const DOC_ITEM *Do
*/
static
PDOC_ITEM
SYSLINK_GetLinkItemByIndex
(
const
SYSLINK_INFO
*
infoPtr
,
int
iLink
)
{
PDOC_ITEM
Current
=
infoPtr
->
Items
;
DOC_ITEM
*
Current
;
while
(
Current
!=
NULL
)
{
if
((
Current
->
Type
==
slLink
)
&&
(
iLink
--
<=
0
))
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
((
Current
->
Type
==
slLink
)
&&
(
iLink
--
<=
0
))
return
Current
;
}
Current
=
Current
->
Next
;
}
return
NULL
;
}
...
...
@@ -545,10 +532,10 @@ static PDOC_ITEM SYSLINK_GetLinkItemByIndex (const SYSLINK_INFO *infoPtr, int iL
*/
static
PDOC_ITEM
SYSLINK_GetFocusLink
(
const
SYSLINK_INFO
*
infoPtr
,
int
*
LinkId
)
{
PDOC_ITEM
Current
=
infoPtr
->
Items
;
DOC_ITEM
*
Current
;
int
id
=
0
;
while
(
Current
!=
NULL
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
(
Current
->
Type
==
slLink
)
{
...
...
@@ -560,8 +547,8 @@ static PDOC_ITEM SYSLINK_GetFocusLink (const SYSLINK_INFO *infoPtr, int *LinkId)
}
id
++
;
}
Current
=
Current
->
Next
;
}
return
NULL
;
}
...
...
@@ -571,13 +558,13 @@ static PDOC_ITEM SYSLINK_GetFocusLink (const SYSLINK_INFO *infoPtr, int *LinkId)
*/
static
PDOC_ITEM
SYSLINK_GetNextLink
(
const
SYSLINK_INFO
*
infoPtr
,
PDOC_ITEM
Current
)
{
for
(
Current
=
(
Current
!=
NULL
?
Current
->
Next
:
infoPtr
->
Items
)
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
DOC_ITEM
*
Next
;
LIST_FOR_EACH_ENTRY
(
Next
,
Current
?
&
Current
->
entry
:
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
(
Curren
t
->
Type
==
slLink
)
if
(
Nex
t
->
Type
==
slLink
)
{
return
Curren
t
;
return
Nex
t
;
}
}
return
NULL
;
...
...
@@ -589,38 +576,17 @@ static PDOC_ITEM SYSLINK_GetNextLink (const SYSLINK_INFO *infoPtr, PDOC_ITEM Cur
*/
static
PDOC_ITEM
SYSLINK_GetPrevLink
(
const
SYSLINK_INFO
*
infoPtr
,
PDOC_ITEM
Current
)
{
if
(
Current
==
NULL
)
{
/* returns the last link */
PDOC_ITEM
Last
=
NULL
;
DOC_ITEM
*
Prev
;
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY_REV
(
Prev
,
Current
?
&
Current
->
entry
:
list_tail
(
&
infoPtr
->
Items
),
DOC_ITEM
,
entry
)
{
if
(
Current
->
Type
==
slLink
)
if
(
Prev
->
Type
==
slLink
)
{
Last
=
Current
;
}
return
Prev
;
}
return
Last
;
}
else
{
/* returns the previous link */
PDOC_ITEM
Cur
,
Prev
=
NULL
;
for
(
Cur
=
infoPtr
->
Items
;
Cur
!=
NULL
;
Cur
=
Cur
->
Next
)
{
if
(
Cur
==
Current
)
{
break
;
}
if
(
Cur
->
Type
==
slLink
)
{
Prev
=
Cur
;
}
}
return
Prev
;
}
return
NULL
;
}
/***********************************************************************
...
...
@@ -684,7 +650,7 @@ static VOID SYSLINK_Render (const SYSLINK_INFO *infoPtr, HDC hdc, PRECT pRect)
GetTextMetricsW
(
hdc
,
&
tm
);
LineHeight
=
tm
.
tmHeight
+
tm
.
tmExternalLeading
;
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
int
n
,
nBlocks
;
LPWSTR
tx
;
...
...
@@ -861,7 +827,7 @@ static LRESULT SYSLINK_Draw (const SYSLINK_INFO *infoPtr, HDC hdc)
DeleteObject
(
hBrush
);
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
int
n
;
LPWSTR
tx
;
...
...
@@ -1026,7 +992,7 @@ static PDOC_ITEM SYSLINK_SetFocusLink (const SYSLINK_INFO *infoPtr, const DOC_IT
{
PDOC_ITEM
Current
,
PrevFocus
=
NULL
;
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
(
Current
->
Type
==
slLink
)
{
...
...
@@ -1234,7 +1200,7 @@ static LRESULT SYSLINK_HitTest (const SYSLINK_INFO *infoPtr, PLHITTESTINFO HitTe
PDOC_ITEM
Current
;
int
id
=
0
;
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
(
Current
->
Type
==
slLink
)
{
...
...
@@ -1383,7 +1349,7 @@ static PDOC_ITEM SYSLINK_LinkAtPt (const SYSLINK_INFO *infoPtr, const POINT *pt,
PDOC_ITEM
Current
;
int
id
=
0
;
for
(
Current
=
infoPtr
->
Items
;
Current
!=
NULL
;
Current
=
Current
->
Next
)
LIST_FOR_EACH_ENTRY
(
Current
,
&
infoPtr
->
Items
,
DOC_ITEM
,
entry
)
{
if
((
Current
->
Type
==
slLink
)
&&
SYSLINK_PtInDocItem
(
Current
,
*
pt
)
&&
(
!
MustBeEnabled
||
(
Current
->
u
.
Link
.
state
&
LIS_ENABLED
)))
...
...
@@ -1749,6 +1715,9 @@ static LRESULT WINAPI SysLinkWindowProc(HWND hwnd, UINT message,
return
0
;
case
WM_CREATE
:
{
CREATESTRUCTW
*
cs
=
(
CREATESTRUCTW
*
)
lParam
;
/* allocate memory for info struct */
infoPtr
=
Alloc
(
sizeof
(
SYSLINK_INFO
));
if
(
!
infoPtr
)
return
-
1
;
...
...
@@ -1756,11 +1725,11 @@ static LRESULT WINAPI SysLinkWindowProc(HWND hwnd, UINT message,
/* initialize the info struct */
infoPtr
->
Self
=
hwnd
;
infoPtr
->
Notify
=
((
LPCREATESTRUCTW
)
lParam
)
->
hwndParent
;
infoPtr
->
Style
=
((
LPCREATESTRUCTW
)
lParam
)
->
style
;
infoPtr
->
Notify
=
cs
->
hwndParent
;
infoPtr
->
Style
=
cs
->
style
;
infoPtr
->
Font
=
0
;
infoPtr
->
LinkFont
=
0
;
infoPtr
->
Items
=
NULL
;
list_init
(
&
infoPtr
->
Items
)
;
infoPtr
->
HasFocus
=
FALSE
;
infoPtr
->
MouseDownID
=
-
1
;
infoPtr
->
TextColor
=
comctl32_color
.
clrWindowText
;
...
...
@@ -1769,9 +1738,9 @@ static LRESULT WINAPI SysLinkWindowProc(HWND hwnd, UINT message,
infoPtr
->
BreakChar
=
' '
;
infoPtr
->
IgnoreReturn
=
infoPtr
->
Style
&
LWS_IGNORERETURN
;
TRACE
(
"SysLink Ctrl creation, hwnd=%p
\n
"
,
hwnd
);
SYSLINK_SetText
(
infoPtr
,
((
LPCREATESTRUCTW
)
lParam
)
->
lpszName
);
SYSLINK_SetText
(
infoPtr
,
cs
->
lpszName
);
return
0
;
}
case
WM_DESTROY
:
TRACE
(
"SysLink Ctrl destruction, hwnd=%p
\n
"
,
hwnd
);
SYSLINK_ClearDoc
(
infoPtr
);
...
...
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