Changeset 8edec53 in mainline for uspace/lib/c/include/io/pos_event.h


Ignore:
Timestamp:
2021-10-25T17:51:10Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
91ece11b
Parents:
805a149
Message:

Support double-click

Needed to open Navigator entries using the mouse.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/io/pos_event.h

    r805a149 r8edec53  
    11/*
     2 * Copyright (c) 2021 Jiri Svoboda
    23 * Copyright (c) 2012 Petr Koupy
    3  * Copyright (c) 2013 Jiri Svoboda
    44 * All rights reserved.
    55 *
     
    4040
    4141typedef enum {
     42        /** Position update */
    4243        POS_UPDATE,
     44        /** Button press */
    4345        POS_PRESS,
    44         POS_RELEASE
     46        /** Button release */
     47        POS_RELEASE,
     48        /** Double click */
     49        POS_DCLICK
    4550} pos_event_type_t;
    4651
Note: See TracChangeset for help on using the changeset viewer.