singlepost

Как поймать событие мышки? << На главную или назад  

Привет. Возникла проблема. Мучился долго – как отловить в winapi событие мышки, когда крутится ролик. Облазил библиотеки – никаких WM_MOUSEWHEELDOWN и WM_MOUSEWHEELUP или что-то на них похожее даже близко не нашел. Может, у кого встречалось аналогичное?

7 ответов в теме “Как поймать событие мышки?”

  1. 6
    Алексей Тимофеев ответил:

    The WM_MOUSEWHEEL message is sent to the focus window when the mouse wheel is rotated. The DefWindowProc function propagates the message to the window's parent. There should be no internal forwarding of the message, since DefWindowProc propagates it up the parent chain until it finds a window that processes it.

    WM_MOUSEWHEEL
    fwKeys = LOWORD(wParam);// key flags
    zDelta = (short) HIWORD(wParam);// wheel rotation
    xPos = (short) LOWORD(lParam);// horizontal position of pointer
    yPos = (short) HIWORD(lParam);// vertical position of pointer

    Parameters

    fwKeys

    Value of the low-order word of wParam. Indicates whether various virtual keys are down. This parameter can be any combination of the following values:

    ValueDescription
    MK_CONTROLSet if the CTRL key is down.
    MK_LBUTTONSet if the left mouse button is down.
    MK_MBUTTONSet if the middle mouse button is down.
    MK_RBUTTONSet if the right mouse button is down.
    MK_SHIFTSet if the SHIFT key is down.

    zDelta

    The value of the high-order word of wParam. Indicates the distance that the wheel is rotated, expressed in multiples or divisions of WHEEL_DELTA, which is 120. A positive value indicates that the wheel was rotated forward, away from the user; a negative value indicates that the wheel was rotated backward, toward the user.

    xPos

    Value of the low-order word of lParam. Specifies the x-coordinate of the pointer, relative to the upper-left corner of the screen.

    yPos

    Value of the high-order word of lParam. Specifies the y-coordinate of the pointer, relative to the upper-left corner of the screen.

    Remarks

    The zDelta parameter will be a multiple of WHEEL_DELTA, which is set at 120. This is the threshold for action to be taken, and one such action (for example, scrolling one increment) should occur for each delta.
    The delta was set to 120 to allow Microsoft or other vendors to build finer-resolution wheels in the future, including perhaps a freely-rotating wheel with no notches. The expectation is that such a device would send more messages per rotation, but with a smaller value in each message. To support this possibility, you should either add the incoming delta values until WHEEL_DELTA is reached (so for a given delta-rotation you get the same response), or scroll partial lines in response to the more frequent messages. You could also choose your scroll granularity and accumulate deltas until it is reached.

  2. 5
    Иван Афанасьев ответил:

    СПАСИБО!!! 10х.

  3. 4
    Тимур Рузиев ответил:

    >Был бы у меня MSDN, стал бы сюда обращаться, как вы думаете? :) :):)

    Эм…
    //msdn2.microsoft.com/ru-ru/default.aspx ?

  4. 3
    Иван Афанасьев ответил:

    Был бы у меня MSDN, стал бы сюда обращаться, как вы думаете? :) :):)

  5. 2
    Алексей Терещенко ответил:

    Шукай в MSDN по поводу WM_MOUSEWHEEL.

  6. 1
    Александр Пинский ответил:

    Есть событие просто WM_MOUSEWHEEL :)

    Параметры поступающие в процедуру окна следующие:
    wParam – старшее слово показывает на сколько повернулось колёсико и в каком направлении. Если больше нуля, то повернулось вперёд, если меньше, то назад. Младшее слово показывает, какие кнопки нажаты в этот момент.
    lParam – координаты курсора мыши относительно левого-верхнего угла экрана
    Подробнее в MSDN почитай

Клуб программистов работает уже ой-ой-ой сколько, а если поточнее, то с 2007 года.