Re: controls/scroll.c

2004-03-29 Thread Dmitry Timoshkov
"Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > If you double click on the arrow of a scrollbar control the slider will > move only 1 position instead of the expected 2. This is because the > second click is delivered as a WM_LBUTTONDBLCLK (due to the CS_DBLCLKS > class style) which is not handled b

RE: controls/scroll.c

2004-03-28 Thread Ge van Geldorp
> From: Dmitry Timoshkov [mailto:[EMAIL PROTECTED] > > "Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > > > Ok, I guess that means that the double click messages need to be > > handled then? > > Not necessarily. If the control does not need a particular > type of message it can just ignore it. > > > W

Re: controls/scroll.c

2004-03-28 Thread Dmitry Timoshkov
"Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > Ok, I guess that means that the double click messages need to be handled > then? Not necessarily. If the control does not need a particular type of message it can just ignore it. > With the current implementation you miss the second click of a > doub

RE: controls/scroll.c

2004-03-28 Thread Ge van Geldorp
> From: Dmitry Timoshkov > > "Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > > > Changelog: > > Ge van Geldorp <[EMAIL PROTECTED]> > > Remove CS_DBLCKS class style from scrollbar class since the > > scrollbar doesn't handle double clicks anyway > > You can't remove it. Scrollbar in Windows has

Re: controls/scroll.c

2004-03-27 Thread Dmitry Timoshkov
"Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > Changelog: > Ge van Geldorp <[EMAIL PROTECTED]> > Remove CS_DBLCKS class style from scrollbar class since the > scrollbar doesn't handle double clicks anyway You can't remove it. Scrollbar in Windows has that style, and some applications which s