Searched refs:LV_EVENT_GESTURE (Results 1 – 17 of 17) sorted by relevance
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_qr.c | 193 … if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_TOP) { in qr_screen_event_cb() 202 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_BOTTOM)… in qr_screen_event_cb()
|
D | lv_demo_smartwatch_notifications.c | 272 … if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_LEFT) { in notification_screen_events_cb() 281 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in notification_screen_events_cb() 291 … if(event_code == LV_EVENT_GESTURE && (lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_TOP || in notification_screen_events_cb()
|
D | lv_demo_smartwatch.c | 347 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in home_tileview_event_cb() 352 … if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_TOP) { in home_tileview_event_cb() 359 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_BOTTOM)… in home_tileview_event_cb() 362 …else if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) != LV_DIR_TO… in home_tileview_event_cb() 369 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) != LV_DIR_RIGHT) { in home_tileview_event_cb()
|
D | lv_demo_smartwatch_weather.c | 416 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_BOTTOM)… in weather_screen_event_cb() 426 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in weather_screen_event_cb() 438 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) != LV_DIR_RIGHT) { in weather_screen_event_cb() 444 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) != LV_DIR_BOTTOM)… in weather_screen_event_cb()
|
D | lv_demo_smartwatch_settings.c | 443 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in settings_screen_event_cb() 447 … if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_LEFT) { in settings_screen_event_cb()
|
D | lv_demo_smartwatch_home.c | 121 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in lv_demo_smartwatch_face_events_cb() 126 … if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_TOP) { in lv_demo_smartwatch_face_events_cb()
|
D | lv_demo_smartwatch_easter_egg.c | 287 …if(event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_active()) == LV_DIR_RIGHT) { in create_screen_event_cb()
|
/lvgl-latest/src/misc/ |
D | lv_event.h | 53 …LV_EVENT_GESTURE, /**< A gesture is detected. Get gesture with `lv_indev_get_gesture_d… enumerator
|
/lvgl-latest/examples/others/gestures/ |
D | lv_example_gestures.c | 96 lv_obj_add_event_cb(label, label_scale, LV_EVENT_GESTURE, label); in lv_example_gestures()
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 1286 lv_indev_send_event(indev, LV_EVENT_GESTURE, indev_act); in indev_proc_press() 1294 if(send_event(LV_EVENT_GESTURE, indev_act) == LV_RESULT_INVALID) return; in indev_proc_press() 1387 lv_indev_send_event(indev, LV_EVENT_GESTURE, indev_act); in indev_proc_release() 1396 if(send_event(LV_EVENT_GESTURE, indev_act) == LV_RESULT_INVALID) return; in indev_proc_release() 1691 lv_obj_send_event(gesture_obj, LV_EVENT_GESTURE, indev_act); in indev_gesture() 1694 lv_indev_send_event(indev_act, LV_EVENT_GESTURE, gesture_obj); in indev_gesture()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 84 obj_setInt(self, "GESTURE", LV_EVENT_GESTURE); in pika_lvgl_EVENT___init__()
|
/lvgl-latest/docs/details/main-components/ |
D | indev.rst | 89 form of an :cpp:enumerator:`LV_EVENT_GESTURE` event. For example: 115 lv_obj_add_event_cb(screen1, my_event, LV_EVENT_GESTURE, NULL); 163 is detected a ``LV_EVENT_GESTURE`` is passed to the object on which the 217 Touch events are handled like any other event. First, setup a listener for the ``LV_EVENT_GESTURE``…
|
/lvgl-latest/src/core/ |
D | lv_obj_event.c | 197 e->code == LV_EVENT_GESTURE || in lv_event_get_indev()
|
/lvgl-latest/demos/ebike/ |
D | lv_demo_ebike_stats.c | 501 lv_obj_add_event_cb(chart, chart_gesture_event_cb, LV_EVENT_GESTURE, NULL); in chart_create()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 136 - :cpp:enumerator:`LV_EVENT_GESTURE`: A gesture is detected. Get the gesture with :cpp:expr:`lv_in…
|
D | obj.rst | 561 - :cpp:enumerator:`LV_EVENT_GESTURE` A gesture is detected. Get gesture with `lv_inde…
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_main.c | 969 lv_obj_add_event_cb(img, album_gesture_event_cb, LV_EVENT_GESTURE, NULL); in album_image_create()
|