Lines Matching refs:g

769     lv_group_t * g = i->group;  in indev_keypad_proc()  local
770 if(g == NULL) return; in indev_keypad_proc()
772 indev_obj_act = lv_group_get_focused(g); in indev_keypad_proc()
790 … lv_group_set_editing(g, false); /*Editing is not used by KEYPAD is be sure it is disabled*/ in indev_keypad_proc()
791 lv_group_focus_next(g); in indev_keypad_proc()
796 … lv_group_set_editing(g, false); /*Editing is not used by KEYPAD is be sure it is disabled*/ in indev_keypad_proc()
797 lv_group_focus_prev(g); in indev_keypad_proc()
804 lv_group_send_data(g, LV_KEY_ENTER); in indev_keypad_proc()
812 lv_group_send_data(g, LV_KEY_ESC); in indev_keypad_proc()
819 lv_group_send_data(g, data->key); in indev_keypad_proc()
852 … lv_group_set_editing(g, false); /*Editing is not used by KEYPAD is be sure it is disabled*/ in indev_keypad_proc()
853 lv_group_focus_next(g); in indev_keypad_proc()
858 … lv_group_set_editing(g, false); /*Editing is not used by KEYPAD is be sure it is disabled*/ in indev_keypad_proc()
859 lv_group_focus_prev(g); in indev_keypad_proc()
864 lv_group_send_data(g, data->key); in indev_keypad_proc()
915 lv_group_t * g = i->group; in indev_encoder_proc() local
916 if(g == NULL) return; in indev_encoder_proc()
918 indev_obj_act = lv_group_get_focused(g); in indev_encoder_proc()
937 if(lv_group_get_editing(g) == true || editable_or_scrollable == false) { in indev_encoder_proc()
954 lv_group_send_data(g, LV_KEY_ESC); in indev_encoder_proc()
963 lv_group_send_data(g, data->key); in indev_encoder_proc()
986 if(lv_group_get_obj_count(g) > 1) { in indev_encoder_proc()
988 …lv_group_set_editing(g, lv_group_get_editing(g) ? false : true); /*Toggle edit mode on long press*/ in indev_encoder_proc()
1022 lv_group_send_data(g, data->key); in indev_encoder_proc()
1053 else if(lv_group_get_editing(g)) { in indev_encoder_proc()
1055 if(!i->long_pr_sent || lv_group_get_obj_count(g) <= 1) { in indev_encoder_proc()
1062 lv_group_send_data(g, LV_KEY_ENTER); in indev_encoder_proc()
1073 lv_group_set_editing(g, true); /*Set edit mode*/ in indev_encoder_proc()
1085 if(lv_group_get_editing(g)) { in indev_encoder_proc()
1090 lv_group_send_data(g, LV_KEY_LEFT); in indev_encoder_proc()
1096 lv_group_send_data(g, LV_KEY_RIGHT); in indev_encoder_proc()
1107 lv_group_focus_prev(g); in indev_encoder_proc()
1113 lv_group_focus_next(g); in indev_encoder_proc()