| View previous topic :: View next topic |
| Author |
Message |
ron
Joined: 16 Jul 2005 Posts: 143
|
Posted: Fri Jul 22, 2005 1:26 am Post subject: Enhancement request - Foward/Back with mouse |
|
|
| In the Internal Preview window it would be nice to support the forward/back buttons on most mice. |
|
| Back to top |
|
 |
Martin Aignesberger Site Admin

Joined: 11 May 2005 Posts: 5845
|
Posted: Sat Jul 23, 2005 9:01 am Post subject: |
|
|
Is now on the wish list, will probably come in a higher version. _________________ Martin Aignesberger [SUPPORT] |
|
| Back to top |
|
 |
ron
Joined: 16 Jul 2005 Posts: 143
|
Posted: Sun Jul 24, 2005 1:02 am Post subject: |
|
|
Cool. Here's a head start
BEGIN_MESSAGE_MAP(CUIView, CScrollView)
//{{AFX_MSG_MAP(CUIView)
ON_MESSAGE(WM_APPCOMMAND, OnAppCommand)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
LRESULT CUIView::OnAppCommand(WPARAM, LPARAM lParam)
{
switch( GET_APPCOMMAND_LPARAM(lParam) )
{
case APPCOMMAND_BROWSER_BACKWARD:
// Go back code...
return TRUE;
case APPCOMMAND_BROWSER_FORWARD:
// Go forward code...
return TRUE;
}
return FALSE;
} |
|
| Back to top |
|
 |
Martin Aignesberger Site Admin

Joined: 11 May 2005 Posts: 5845
|
Posted: Sun Jul 24, 2005 7:57 am Post subject: |
|
|
Thanks for your snippet, but I think I have to hack a bit deeper into the system in that case, concretely into the message handler of the embedded Internet Explorer... I'll play with it after v4.04 final. Would be great if you could give some feedback after it's implemented in a future beta version, also when it works  _________________ Martin Aignesberger [SUPPORT] |
|
| Back to top |
|
 |
wjvii
Joined: 01 Aug 2005 Posts: 3
|
Posted: Mon Aug 01, 2005 6:29 pm Post subject: |
|
|
| I too would love to see support for the mouse forward and back buttons. It is a feature of native Internet Explorer that I have come to use almost constantly and I really miss it whenever I am using Website-Watcher. |
|
| Back to top |
|
 |
ron
Joined: 16 Jul 2005 Posts: 143
|
Posted: Sun Oct 23, 2005 5:58 am Post subject: |
|
|
I'm not sure how difficult the implementation was, but the folks that wrote this...
http://www.metaproducts.com/mp/mpProducts_Detail.asp?id=30
appear to use the MSHTML view and were able to get the forward/back mouse buttons working after I passed them the same code snippet.
I just started monitoring forums with WSW, amazingly it was the easiest thing I've set up so far. The wizard was straight forward and it works great! But now I really miss the forward/back via mouse even more  |
|
| Back to top |
|
 |
Martin Aignesberger Site Admin

Joined: 11 May 2005 Posts: 5845
|
Posted: Mon Oct 24, 2005 7:13 am Post subject: |
|
|
| Quote: | | I just started monitoring forums with WSW, amazingly it was the easiest thing I've set up so far. The wizard was straight forward and it works great! |
yep, nice to hear that it works
| Quote: | | But now I really miss the forward/back via mouse even more |
I personally don't miss it because it works already in an internal beta here
Will be supported in the next major update v4.5 _________________ Martin Aignesberger [SUPPORT] |
|
| Back to top |
|
 |
ron
Joined: 16 Jul 2005 Posts: 143
|
Posted: Tue Oct 25, 2005 1:21 am Post subject: |
|
|
 |
|
| Back to top |
|
 |
|