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
54bb7bc5
Commit
54bb7bc5
authored
Sep 27, 2011
by
Erich Hoover
Committed by
Alexandre Julliard
Sep 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Use a modified (two color) refresh icon for the 'Sync' toolbar button.
parent
1cabe301
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
help.c
dlls/hhctrl.ocx/help.c
+5
-6
hhtoolbar.bmp
dlls/hhctrl.ocx/hhtoolbar.bmp
+0
-0
hhtoolbar.svg
dlls/hhctrl.ocx/hhtoolbar.svg
+0
-0
resource.h
dlls/hhctrl.ocx/resource.h
+5
-3
No files found.
dlls/hhctrl.ocx/help.c
View file @
54bb7bc5
...
...
@@ -796,7 +796,7 @@ static void TB_AddButtonsFromFlags(HHInfo *pHHInfo, TBBUTTON *pButtons, DWORD dw
/* hhctrl.ocx bitmaps */
tbAB
.
hInst
=
hhctrl_hinstance
;
tbAB
.
nID
=
IDB_HHTOOLBAR
;
nHHBitmaps
=
SendMessageW
(
hToolbar
,
TB_ADDBITMAP
,
0
,
(
LPARAM
)
&
tbAB
);
nHHBitmaps
=
SendMessageW
(
hToolbar
,
TB_ADDBITMAP
,
HHTB_NUMBITMAPS
,
(
LPARAM
)
&
tbAB
);
*
pdwNumButtons
=
0
;
...
...
@@ -826,17 +826,16 @@ static void TB_AddButtonsFromFlags(HHInfo *pHHInfo, TBBUTTON *pButtons, DWORD dw
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_FORWARD
,
nHistBitmaps
+
HIST_FORWARD
);
if
(
dwButtonFlags
&
HHWIN_BUTTON_STOP
)
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_STOP
,
nHHBitmaps
+
HH_STOP
);
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_STOP
,
nHHBitmaps
+
HH
TB
_STOP
);
if
(
dwButtonFlags
&
HHWIN_BUTTON_REFRESH
)
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_REFRESH
,
nHHBitmaps
+
HH_REFRESH
);
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_REFRESH
,
nHHBitmaps
+
HH
TB
_REFRESH
);
if
(
dwButtonFlags
&
HHWIN_BUTTON_HOME
)
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_HOME
,
nHHBitmaps
+
HH_HOME
);
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_HOME
,
nHHBitmaps
+
HH
TB
_HOME
);
/* FIXME: Load the correct button bitmaps */
if
(
dwButtonFlags
&
HHWIN_BUTTON_SYNC
)
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_SYNC
,
n
StdBitmaps
+
STD_PRINT
);
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_SYNC
,
n
HHBitmaps
+
HHTB_SYNC
);
if
(
dwButtonFlags
&
HHWIN_BUTTON_OPTIONS
)
TB_AddButton
(
pButtons
,
(
*
pdwNumButtons
)
++
,
IDTB_OPTIONS
,
nStdBitmaps
+
STD_PROPERTIES
);
...
...
dlls/hhctrl.ocx/hhtoolbar.bmp
View replaced file @
1cabe301
View file @
54bb7bc5
6.87 KB
|
W:
|
H:
9.12 KB
|
W:
|
H:
2-up
Swipe
Onion skin
dlls/hhctrl.ocx/hhtoolbar.svg
View file @
54bb7bc5
This diff is collapsed.
Click to expand it.
dlls/hhctrl.ocx/resource.h
View file @
54bb7bc5
...
...
@@ -34,6 +34,8 @@
#define IDB_HHTOOLBAR 1000
/* IDB_HHTOOLBAR bitmaps: */
#define HH_STOP 0
#define HH_REFRESH 1
#define HH_HOME 2
#define HHTB_STOP 0
#define HHTB_REFRESH 1
#define HHTB_HOME 2
#define HHTB_SYNC 3
#define HHTB_NUMBITMAPS HHTB_SYNC
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