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
ebadd4ec
Commit
ebadd4ec
authored
Jan 09, 2011
by
Joel Holdsworth
Committed by
Alexandre Julliard
Jan 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/rebar: Implemented band reordering within rows.
parent
1e644a7d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
20 deletions
+77
-20
rebar.c
dlls/comctl32/rebar.c
+77
-20
No files found.
dlls/comctl32/rebar.c
View file @
ebadd4ec
...
@@ -1262,6 +1262,42 @@ static int REBAR_ShrinkBandsLTR(const REBAR_INFO *infoPtr, INT iBeginBand, INT i
...
@@ -1262,6 +1262,42 @@ static int REBAR_ShrinkBandsLTR(const REBAR_INFO *infoPtr, INT iBeginBand, INT i
return
cxShrink
;
return
cxShrink
;
}
}
/* Tries to move a band to a given offset within a row. */
static
int
REBAR_MoveBandToRowOffset
(
REBAR_INFO
*
infoPtr
,
INT
iBand
,
INT
iFirstBand
,
INT
iLastBand
,
INT
xOff
)
{
REBAR_BAND
*
insertBand
=
REBAR_GetBand
(
infoPtr
,
iBand
);
int
xPos
=
0
,
i
;
const
BOOL
setBreak
=
REBAR_GetBand
(
infoPtr
,
iFirstBand
)
->
fStyle
&
RBBS_BREAK
;
/* Find the band's new position */
for
(
i
=
iFirstBand
;
i
<
iLastBand
;
i
=
next_visible
(
infoPtr
,
i
))
{
if
(
xPos
>
xOff
)
break
;
xPos
+=
REBAR_GetBand
(
infoPtr
,
i
)
->
cxEffective
+
SEP_WIDTH
;
}
/* Move the band to its new position */
DPA_DeletePtr
(
infoPtr
->
bands
,
iBand
);
if
(
i
>
iBand
)
i
--
;
DPA_InsertPtr
(
infoPtr
->
bands
,
i
,
insertBand
);
/* Ensure only the last band has the RBBS_BREAK flag set */
insertBand
->
fStyle
&=
~
RBBS_BREAK
;
if
(
setBreak
)
REBAR_GetBand
(
infoPtr
,
iFirstBand
)
->
fStyle
|=
RBBS_BREAK
;
/* Return the currently grabbed band */
if
(
infoPtr
->
iGrabbedBand
==
iBand
)
{
infoPtr
->
iGrabbedBand
=
i
;
return
i
;
}
else
return
-
1
;
}
/* Set the heights of the visible bands in [iBeginBand; iEndBand) to the max height. iBeginBand must be visible */
/* Set the heights of the visible bands in [iBeginBand; iEndBand) to the max height. iBeginBand must be visible */
static
int
REBAR_SetBandsHeight
(
const
REBAR_INFO
*
infoPtr
,
INT
iBeginBand
,
INT
iEndBand
,
INT
yStart
)
static
int
REBAR_SetBandsHeight
(
const
REBAR_INFO
*
infoPtr
,
INT
iBeginBand
,
INT
iEndBand
,
INT
yStart
)
{
{
...
@@ -2005,7 +2041,8 @@ REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
...
@@ -2005,7 +2041,8 @@ REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
{
{
REBAR_BAND
*
hitBand
;
REBAR_BAND
*
hitBand
;
INT
iHitBand
,
iRowBegin
,
iRowEnd
;
INT
iHitBand
,
iRowBegin
,
iRowEnd
;
INT
movement
,
xBand
;
INT
movement
,
xBand
,
cxLeft
=
0
;
BOOL
shrunkBands
=
FALSE
;
/* on first significant mouse movement, issue notify */
/* on first significant mouse movement, issue notify */
if
(
!
(
infoPtr
->
fStatus
&
BEGIN_DRAG_ISSUED
))
{
if
(
!
(
infoPtr
->
fStatus
&
BEGIN_DRAG_ISSUED
))
{
...
@@ -2030,21 +2067,44 @@ REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
...
@@ -2030,21 +2067,44 @@ REBAR_HandleLRDrag (REBAR_INFO *infoPtr, const POINT *ptsmove)
movement
=
(
infoPtr
->
dwStyle
&
CCS_VERT
?
ptsmove
->
y
:
ptsmove
->
x
)
movement
=
(
infoPtr
->
dwStyle
&
CCS_VERT
?
ptsmove
->
y
:
ptsmove
->
x
)
-
(
xBand
+
REBAR_PRE_GRIPPER
-
infoPtr
->
ihitoffset
);
-
(
xBand
+
REBAR_PRE_GRIPPER
-
infoPtr
->
ihitoffset
);
if
(
movement
<
0
)
{
/* Dragging the first band in a row cannot cause shrinking */
INT
cxLeft
=
REBAR_ShrinkBandsRTL
(
infoPtr
,
iRowBegin
,
iHitBand
,
-
movement
,
TRUE
);
if
(
iHitBand
!=
iRowBegin
)
hitBand
->
cxEffective
+=
-
movement
-
cxLeft
;
{
hitBand
->
cx
=
hitBand
->
cxEffective
;
if
(
movement
<
0
)
{
}
else
if
(
movement
>
0
)
{
cxLeft
=
REBAR_ShrinkBandsRTL
(
infoPtr
,
iRowBegin
,
iHitBand
,
-
movement
,
TRUE
);
INT
prev
;
if
(
cxLeft
<
-
movement
)
if
((
prev
=
prev_visible
(
infoPtr
,
iHitBand
))
>=
0
)
{
{
INT
cxLeft
=
REBAR_ShrinkBandsLTR
(
infoPtr
,
iHitBand
,
iRowEnd
,
movement
,
TRUE
);
hitBand
->
cxEffective
+=
-
movement
-
cxLeft
;
REBAR_BAND
*
lpPrev
=
REBAR_GetBand
(
infoPtr
,
prev_visible
(
infoPtr
,
iHitBand
));
hitBand
->
cx
=
hitBand
->
cxEffective
;
lpPrev
->
cxEffective
+=
movement
-
cxLeft
;
shrunkBands
=
TRUE
;
lpPrev
->
cx
=
lpPrev
->
cxEffective
;
}
}
else
if
(
movement
>
0
)
{
cxLeft
=
movement
;
if
(
prev_visible
(
infoPtr
,
iHitBand
)
>=
0
)
cxLeft
=
REBAR_ShrinkBandsLTR
(
infoPtr
,
iHitBand
,
iRowEnd
,
movement
,
TRUE
);
if
(
cxLeft
<
movement
)
{
REBAR_BAND
*
lpPrev
=
REBAR_GetBand
(
infoPtr
,
prev_visible
(
infoPtr
,
iHitBand
));
lpPrev
->
cxEffective
+=
movement
-
cxLeft
;
lpPrev
->
cx
=
hitBand
->
cxEffective
;
shrunkBands
=
TRUE
;
}
}
}
}
}
if
(
!
shrunkBands
)
{
/* It was not possible to move the band by shrinking bands.
* Try relocating the band instead. */
REBAR_MoveBandToRowOffset
(
infoPtr
,
iHitBand
,
iRowBegin
,
iRowEnd
,
xBand
+
movement
);
}
REBAR_SetRowRectsX
(
infoPtr
,
iRowBegin
,
iRowEnd
);
REBAR_SetRowRectsX
(
infoPtr
,
iRowBegin
,
iRowEnd
);
if
(
infoPtr
->
dwStyle
&
CCS_VERT
)
if
(
infoPtr
->
dwStyle
&
CCS_VERT
)
REBAR_CalcVertBand
(
infoPtr
,
0
,
infoPtr
->
uNumBands
);
REBAR_CalcVertBand
(
infoPtr
,
0
,
infoPtr
->
uNumBands
);
...
@@ -3023,24 +3083,21 @@ REBAR_MouseMove (REBAR_INFO *infoPtr, LPARAM lParam)
...
@@ -3023,24 +3083,21 @@ REBAR_MouseMove (REBAR_INFO *infoPtr, LPARAM lParam)
/* if we are currently dragging a band */
/* if we are currently dragging a band */
if
(
infoPtr
->
iGrabbedBand
>=
0
)
if
(
infoPtr
->
iGrabbedBand
>=
0
)
{
{
REBAR_BAND
*
band
1
=
NULL
,
*
band2
;
REBAR_BAND
*
band
;
int
yPtMove
=
(
infoPtr
->
dwStyle
&
CCS_VERT
?
ptMove
.
x
:
ptMove
.
y
);
int
yPtMove
=
(
infoPtr
->
dwStyle
&
CCS_VERT
?
ptMove
.
x
:
ptMove
.
y
);
if
(
GetCapture
()
!=
infoPtr
->
hwndSelf
)
if
(
GetCapture
()
!=
infoPtr
->
hwndSelf
)
ERR
(
"We are dragging but haven't got capture?!?
\n
"
);
ERR
(
"We are dragging but haven't got capture?!?
\n
"
);
if
(
infoPtr
->
iGrabbedBand
>
0
)
band
=
REBAR_GetBand
(
infoPtr
,
infoPtr
->
iGrabbedBand
);
band1
=
REBAR_GetBand
(
infoPtr
,
infoPtr
->
iGrabbedBand
-
1
);
band2
=
REBAR_GetBand
(
infoPtr
,
infoPtr
->
iGrabbedBand
);
/* if mouse did not move much, exit */
/* if mouse did not move much, exit */
if
((
abs
(
ptMove
.
x
-
infoPtr
->
dragNow
.
x
)
<=
mindragx
)
&&
if
((
abs
(
ptMove
.
x
-
infoPtr
->
dragNow
.
x
)
<=
mindragx
)
&&
(
abs
(
ptMove
.
y
-
infoPtr
->
dragNow
.
y
)
<=
mindragy
))
return
0
;
(
abs
(
ptMove
.
y
-
infoPtr
->
dragNow
.
y
)
<=
mindragy
))
return
0
;
/* Test for valid drag case - must not be first band in row */
/* Test for valid drag case - must not be first band in row */
if
((
yPtMove
<
band2
->
rcBand
.
top
)
||
if
((
yPtMove
<
band
->
rcBand
.
top
)
||
(
yPtMove
>
band2
->
rcBand
.
bottom
)
||
(
yPtMove
>
band
->
rcBand
.
bottom
))
{
((
infoPtr
->
iGrabbedBand
>
0
)
&&
(
band1
->
iRow
!=
band2
->
iRow
)))
{
FIXME
(
"Cannot drag to other rows yet!!
\n
"
);
FIXME
(
"Cannot drag to other rows yet!!
\n
"
);
}
}
else
{
else
{
...
...
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