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
0d30e510
Commit
0d30e510
authored
Apr 02, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Added GoForward implementation.
parent
0f5badf4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
ie.c
dlls/ieframe/ie.c
+2
-2
ieframe.h
dlls/ieframe/ieframe.h
+1
-0
navigate.c
dlls/ieframe/navigate.c
+10
-0
webbrowser.c
dlls/ieframe/webbrowser.c
+2
-2
No files found.
dlls/ieframe/ie.c
View file @
0d30e510
...
...
@@ -149,8 +149,8 @@ static HRESULT WINAPI InternetExplorer_GoBack(IWebBrowser2 *iface)
static
HRESULT
WINAPI
InternetExplorer_GoForward
(
IWebBrowser2
*
iface
)
{
InternetExplorer
*
This
=
impl_from_IWebBrowser2
(
iface
);
FIXM
E
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)
\n
"
,
This
);
return
go_forward
(
&
This
->
doc_host
->
doc_host
)
;
}
static
HRESULT
WINAPI
InternetExplorer_GoHome
(
IWebBrowser2
*
iface
)
...
...
dlls/ieframe/ieframe.h
View file @
0d30e510
...
...
@@ -269,6 +269,7 @@ void call_sink(ConnectionPoint*,DISPID,DISPPARAMS*) DECLSPEC_HIDDEN;
HRESULT
navigate_url
(
DocHost
*
,
LPCWSTR
,
const
VARIANT
*
,
const
VARIANT
*
,
VARIANT
*
,
VARIANT
*
)
DECLSPEC_HIDDEN
;
HRESULT
go_home
(
DocHost
*
)
DECLSPEC_HIDDEN
;
HRESULT
go_back
(
DocHost
*
)
DECLSPEC_HIDDEN
;
HRESULT
go_forward
(
DocHost
*
)
DECLSPEC_HIDDEN
;
HRESULT
refresh_document
(
DocHost
*
)
DECLSPEC_HIDDEN
;
HRESULT
get_location_url
(
DocHost
*
,
BSTR
*
)
DECLSPEC_HIDDEN
;
HRESULT
set_dochost_url
(
DocHost
*
,
const
WCHAR
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/ieframe/navigate.c
View file @
0d30e510
...
...
@@ -1099,6 +1099,16 @@ HRESULT go_back(DocHost *This)
return
navigate_history
(
This
,
This
->
travellog
.
position
-
1
);
}
HRESULT
go_forward
(
DocHost
*
This
)
{
if
(
This
->
travellog
.
position
>=
This
->
travellog
.
length
)
{
WARN
(
"No history available
\n
"
);
return
E_FAIL
;
}
return
navigate_history
(
This
,
This
->
travellog
.
position
+
1
);
}
HRESULT
get_location_url
(
DocHost
*
This
,
BSTR
*
ret
)
{
FIXME
(
"semi-stub
\n
"
);
...
...
dlls/ieframe/webbrowser.c
View file @
0d30e510
...
...
@@ -259,8 +259,8 @@ static HRESULT WINAPI WebBrowser_GoBack(IWebBrowser2 *iface)
static
HRESULT
WINAPI
WebBrowser_GoForward
(
IWebBrowser2
*
iface
)
{
WebBrowser
*
This
=
impl_from_IWebBrowser2
(
iface
);
FIXM
E
(
"(%p)
\n
"
,
This
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)
\n
"
,
This
);
return
go_forward
(
&
This
->
doc_host
)
;
}
static
HRESULT
WINAPI
WebBrowser_GoHome
(
IWebBrowser2
*
iface
)
...
...
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