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
b075ce5f
Commit
b075ce5f
authored
Oct 24, 1998
by
Eric Kohl
Committed by
Alexandre Julliard
Oct 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved the rebar control.
parent
9feb5319
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
7 deletions
+26
-7
rebar.c
dlls/comctl32/rebar.c
+0
-0
rebar.h
include/rebar.h
+26
-7
No files found.
dlls/comctl32/rebar.c
View file @
b075ce5f
This diff is collapsed.
Click to expand it.
include/rebar.h
View file @
b075ce5f
...
...
@@ -26,23 +26,42 @@ typedef struct tagREBAR_BAND
LPARAM
lParam
;
UINT32
cxHeader
;
UINT32
uMinHeight
;
UINT32
fDraw
;
/* drawing flags */
RECT32
rcBand
;
/* calculated band rectangle */
RECT32
rcGripper
;
/* calculated gripper rectangle */
RECT32
rcCapImage
;
/* calculated caption image rectangle */
RECT32
rcCapText
;
/* calculated caption text rectangle */
RECT32
rcChild
;
/* calculated child rectangle */
LPSTR
lpText
;
HWND32
hwndPrevParent
;
}
REBAR_BAND
;
typedef
struct
tagREBAR_INFO
{
COLORREF
clrBk
;
/* background color */
COLORREF
clrText
;
/* text color */
HIMAGELIST
himl
;
/* handle to imagelist */
UINT32
uNumBands
;
/* number of bands in the rebar */
COLORREF
clrBk
;
/* background color */
COLORREF
clrText
;
/* text color */
HIMAGELIST
himl
;
/* handle to imagelist */
UINT32
uNumBands
;
/* number of bands in the rebar */
HWND32
hwndToolTip
;
/* handle to the tool tip control */
HWND32
hwndNotify
;
/* notification window (parent) */
HFONT32
hFont
;
/* handle to the rebar's font */
SIZE32
imageSize
;
/* image size (image list) */
SIZE32
calcSize
;
/* calculated rebar size */
BOOL32
bAutoResize
;
/* auto resize deadlock flag */
HCURSOR32
hcurArrow
;
/* handle to the arrow cursor */
HCURSOR32
hcurHorz
;
/* handle to the EW cursor */
HCURSOR32
hcurVert
;
/* handle to the NS cursor */
HCURSOR32
hcurDrag
;
/* handle to the drag cursor */
REBAR_BAND
*
bands
;
/* pointer to the array of rebar bands */
REBAR_BAND
*
bands
;
/* pointer to the array of rebar bands */
}
REBAR_INFO
;
extern
void
REBAR_Register
(
void
);
extern
VOID
REBAR_Register
(
VOID
);
extern
VOID
REBAR_Unregister
(
VOID
);
#endif
/* __WINE_REBAR_H */
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