Changeset b0ae23f in mainline
- Timestamp:
- 2023-01-17T15:21:13Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0d4afe
- Parents:
- 46a47c0
- git-author:
- Jiri Svoboda <jiri@…> (2023-01-17 18:21:02)
- git-committer:
- Jiri Svoboda <jiri@…> (2023-01-17 15:21:13)
- Location:
- uspace
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/disp_srv.h
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 59 59 errno_t (*window_move_req)(void *, sysarg_t, gfx_coord2_t *); 60 60 errno_t (*window_resize_req)(void *, sysarg_t, display_wnd_rsztype_t, 61 gfx_coord2_t * );61 gfx_coord2_t *, sysarg_t); 62 62 errno_t (*window_move)(void *, sysarg_t, gfx_coord2_t *); 63 63 errno_t (*window_get_pos)(void *, sysarg_t, gfx_coord2_t *); -
uspace/lib/display/include/display.h
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 56 56 extern errno_t display_window_move_req(display_window_t *, gfx_coord2_t *); 57 57 extern errno_t display_window_resize_req(display_window_t *, 58 display_wnd_rsztype_t, gfx_coord2_t * );58 display_wnd_rsztype_t, gfx_coord2_t *, sysarg_t); 59 59 extern errno_t display_window_move(display_window_t *, gfx_coord2_t *); 60 60 extern errno_t display_window_get_pos(display_window_t *, gfx_coord2_t *); -
uspace/lib/display/src/disp_srv.c
r46a47c0 rb0ae23f 320 320 display_wnd_rsztype_t rsztype; 321 321 gfx_coord2_t pos; 322 sysarg_t pos_id; 322 323 size_t size; 323 324 errno_t rc; … … 325 326 wnd_id = ipc_get_arg1(icall); 326 327 rsztype = (display_wnd_rsztype_t) ipc_get_arg2(icall); 328 pos_id = ipc_get_arg3(icall); 327 329 328 330 if (!async_data_write_receive(&call, &size)) { … … 350 352 } 351 353 352 rc = srv->ops->window_resize_req(srv->arg, wnd_id, rsztype, &pos); 354 rc = srv->ops->window_resize_req(srv->arg, wnd_id, rsztype, &pos, 355 pos_id); 353 356 async_answer_0(icall, rc); 354 357 } -
uspace/lib/display/src/display.c
r46a47c0 rb0ae23f 414 414 * @param rsztype Resize type (which part of window frame is being dragged) 415 415 * @param pos Position in the window where the button was pressed 416 * @param pos_id Positioning device ID 416 417 * @return EOK on success or an error code 417 418 */ 418 419 errno_t display_window_resize_req(display_window_t *window, 419 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos )420 { 421 async_exch_t *exch; 422 aid_t req; 423 ipc_call_t answer; 424 errno_t rc; 425 426 exch = async_exchange_begin(window->display->sess); 427 req = async_send_ 2(exch, DISPLAY_WINDOW_RESIZE_REQ, window->id,428 (sysarg_t) rsztype, &answer);420 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 421 { 422 async_exch_t *exch; 423 aid_t req; 424 ipc_call_t answer; 425 errno_t rc; 426 427 exch = async_exchange_begin(window->display->sess); 428 req = async_send_3(exch, DISPLAY_WINDOW_RESIZE_REQ, window->id, 429 (sysarg_t) rsztype, pos_id, &answer); 429 430 rc = async_data_write_start(exch, (void *)pos, sizeof (gfx_coord2_t)); 430 431 async_exchange_end(exch); -
uspace/lib/display/test/display.c
r46a47c0 rb0ae23f 63 63 static errno_t test_window_get_max_rect(void *, sysarg_t, gfx_rect_t *); 64 64 static errno_t test_window_resize_req(void *, sysarg_t, display_wnd_rsztype_t, 65 gfx_coord2_t * );65 gfx_coord2_t *, sysarg_t); 66 66 static errno_t test_window_resize(void *, sysarg_t, gfx_coord2_t *, 67 67 gfx_rect_t *); … … 141 141 display_wnd_rsztype_t resize_req_rsztype; 142 142 gfx_coord2_t resize_req_pos; 143 sysarg_t resize_req_pos_id; 143 144 144 145 bool window_resize_called; … … 831 832 display_wnd_rsztype_t rsztype; 832 833 gfx_coord2_t pos; 834 sysarg_t pos_id; 833 835 834 836 async_set_fallback_port_handler(test_display_conn, &resp); … … 863 865 pos.x = 42; 864 866 pos.y = 43; 865 866 rc = display_window_resize_req(wnd, rsztype, &pos); 867 pos_id = 44; 868 869 rc = display_window_resize_req(wnd, rsztype, &pos, pos_id); 867 870 PCUT_ASSERT_TRUE(resp.window_resize_req_called); 868 871 PCUT_ASSERT_ERRNO_VAL(resp.rc, rc); … … 871 874 PCUT_ASSERT_INT_EQUALS(pos.x, resp.resize_req_pos.x); 872 875 PCUT_ASSERT_INT_EQUALS(pos.y, resp.resize_req_pos.y); 876 PCUT_ASSERT_INT_EQUALS(pos_id, resp.resize_req_pos_id); 873 877 874 878 display_window_destroy(wnd); … … 889 893 display_wnd_rsztype_t rsztype; 890 894 gfx_coord2_t pos; 895 sysarg_t pos_id; 891 896 892 897 async_set_fallback_port_handler(test_display_conn, &resp); … … 921 926 pos.x = 42; 922 927 pos.y = 43; 923 924 rc = display_window_resize_req(wnd, rsztype, &pos); 928 pos_id = 44; 929 930 rc = display_window_resize_req(wnd, rsztype, &pos, pos_id); 925 931 PCUT_ASSERT_TRUE(resp.window_resize_req_called); 926 932 PCUT_ASSERT_ERRNO_VAL(resp.rc, rc); … … 929 935 PCUT_ASSERT_INT_EQUALS(pos.x, resp.resize_req_pos.x); 930 936 PCUT_ASSERT_INT_EQUALS(pos.y, resp.resize_req_pos.y); 937 PCUT_ASSERT_INT_EQUALS(pos_id, resp.resize_req_pos_id); 931 938 932 939 display_window_destroy(wnd); … … 2188 2195 2189 2196 static errno_t test_window_resize_req(void *arg, sysarg_t wnd_id, 2190 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos )2197 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 2191 2198 { 2192 2199 test_response_t *resp = (test_response_t *) arg; … … 2196 2203 resp->resize_req_wnd_id = wnd_id; 2197 2204 resp->resize_req_pos = *pos; 2205 resp->resize_req_pos_id = pos_id; 2198 2206 return resp->rc; 2199 2207 } -
uspace/lib/ui/include/types/ui/wdecor.h
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 87 87 void (*move)(ui_wdecor_t *, void *, gfx_coord2_t *); 88 88 void (*resize)(ui_wdecor_t *, void *, ui_wdecor_rsztype_t, 89 gfx_coord2_t * );89 gfx_coord2_t *, sysarg_t); 90 90 void (*set_cursor)(ui_wdecor_t *, void *, ui_stock_cursor_t); 91 91 } ui_wdecor_cb_t; -
uspace/lib/ui/private/wdecor.h
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 100 100 extern void ui_wdecor_move(ui_wdecor_t *, gfx_coord2_t *); 101 101 extern void ui_wdecor_resize(ui_wdecor_t *, ui_wdecor_rsztype_t, 102 gfx_coord2_t * );102 gfx_coord2_t *, sysarg_t); 103 103 extern void ui_wdecor_set_cursor(ui_wdecor_t *, ui_stock_cursor_t); 104 104 extern void ui_wdecor_get_geom(ui_wdecor_t *, ui_wdecor_geom_t *); -
uspace/lib/ui/src/wdecor.c
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 477 477 * @param rsztype Resize type 478 478 * @param pos Position where the button was pressed 479 * @param pos_id Positioning device ID 479 480 */ 480 481 void ui_wdecor_resize(ui_wdecor_t *wdecor, ui_wdecor_rsztype_t rsztype, 481 gfx_coord2_t *pos )482 gfx_coord2_t *pos, sysarg_t pos_id) 482 483 { 483 484 if (wdecor->cb != NULL && wdecor->cb->resize != NULL) 484 wdecor->cb->resize(wdecor, wdecor->arg, rsztype, pos );485 wdecor->cb->resize(wdecor, wdecor->arg, rsztype, pos, pos_id); 485 486 } 486 487 … … 826 827 /* Press on window border? */ 827 828 if (rsztype != ui_wr_none && event->type == POS_PRESS) 828 ui_wdecor_resize(wdecor, rsztype, &pos );829 ui_wdecor_resize(wdecor, rsztype, &pos, event->pos_id); 829 830 } 830 831 -
uspace/lib/ui/src/window.c
r46a47c0 rb0ae23f 80 80 static void wd_move(ui_wdecor_t *, void *, gfx_coord2_t *); 81 81 static void wd_resize(ui_wdecor_t *, void *, ui_wdecor_rsztype_t, 82 gfx_coord2_t * );82 gfx_coord2_t *, sysarg_t); 83 83 static void wd_set_cursor(ui_wdecor_t *, void *, ui_stock_cursor_t); 84 84 … … 988 988 * @param rsztype Resize type 989 989 * @param pos Position where the button was pressed 990 * @param pos_id Positioning device ID 990 991 */ 991 992 static void wd_resize(ui_wdecor_t *wdecor, void *arg, 992 ui_wdecor_rsztype_t rsztype, gfx_coord2_t *pos) 993 { 994 ui_window_t *window = (ui_window_t *) arg; 995 996 if (window->dwindow != NULL) 997 (void) display_window_resize_req(window->dwindow, rsztype, pos); 993 ui_wdecor_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 994 { 995 ui_window_t *window = (ui_window_t *) arg; 996 997 if (window->dwindow != NULL) { 998 (void) display_window_resize_req(window->dwindow, rsztype, 999 pos, pos_id); 1000 } 998 1001 } 999 1002 -
uspace/lib/ui/test/wdecor.c
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 68 68 static void test_wdecor_move(ui_wdecor_t *, void *, gfx_coord2_t *); 69 69 static void test_wdecor_resize(ui_wdecor_t *, void *, ui_wdecor_rsztype_t, 70 gfx_coord2_t * );70 gfx_coord2_t *, sysarg_t); 71 71 static void test_wdecor_set_cursor(ui_wdecor_t *, void *, ui_stock_cursor_t); 72 72 … … 108 108 bool move; 109 109 gfx_coord2_t pos; 110 sysarg_t pos_id; 110 111 bool resize; 111 112 ui_wdecor_rsztype_t rsztype; … … 373 374 ui_wdecor_rsztype_t rsztype; 374 375 gfx_coord2_t pos; 376 sysarg_t pos_id; 375 377 376 378 rc = ui_wdecor_create(NULL, "Hello", ui_wds_none, &wdecor); … … 380 382 pos.x = 3; 381 383 pos.y = 4; 384 pos_id = 5; 382 385 383 386 /* Resize callback with no callbacks set */ 384 ui_wdecor_resize(wdecor, rsztype, &pos );387 ui_wdecor_resize(wdecor, rsztype, &pos, pos_id); 385 388 386 389 /* Resize callback with move callback not implemented */ 387 390 ui_wdecor_set_cb(wdecor, &dummy_wdecor_cb, NULL); 388 ui_wdecor_resize(wdecor, rsztype, &pos );391 ui_wdecor_resize(wdecor, rsztype, &pos, pos_id); 389 392 390 393 /* Resize callback with real callback set */ … … 394 397 resp.pos.y = 0; 395 398 ui_wdecor_set_cb(wdecor, &test_wdecor_cb, &resp); 396 ui_wdecor_resize(wdecor, rsztype, &pos );399 ui_wdecor_resize(wdecor, rsztype, &pos, pos_id); 397 400 PCUT_ASSERT_TRUE(resp.resize); 398 401 PCUT_ASSERT_INT_EQUALS(rsztype, resp.rsztype); 399 402 PCUT_ASSERT_INT_EQUALS(pos.x, resp.pos.x); 400 403 PCUT_ASSERT_INT_EQUALS(pos.y, resp.pos.y); 404 PCUT_ASSERT_INT_EQUALS(pos_id, resp.pos_id); 401 405 402 406 ui_wdecor_destroy(wdecor); … … 1080 1084 1081 1085 static void test_wdecor_resize(ui_wdecor_t *wdecor, void *arg, 1082 ui_wdecor_rsztype_t rsztype, gfx_coord2_t *pos )1086 ui_wdecor_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 1083 1087 { 1084 1088 test_cb_resp_t *resp = (test_cb_resp_t *) arg; … … 1087 1091 resp->rsztype = rsztype; 1088 1092 resp->pos = *pos; 1093 resp->pos_id = pos_id; 1089 1094 } 1090 1095 -
uspace/srv/hid/display/dsops.c
r46a47c0 rb0ae23f 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 51 51 static errno_t disp_window_get_max_rect(void *, sysarg_t, gfx_rect_t *); 52 52 static errno_t disp_window_resize_req(void *, sysarg_t, 53 display_wnd_rsztype_t, gfx_coord2_t * );53 display_wnd_rsztype_t, gfx_coord2_t *, sysarg_t); 54 54 static errno_t disp_window_resize(void *, sysarg_t, gfx_coord2_t *, 55 55 gfx_rect_t *); … … 206 206 207 207 static errno_t disp_window_resize_req(void *arg, sysarg_t wnd_id, 208 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos )208 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 209 209 { 210 210 ds_client_t *client = (ds_client_t *) arg; … … 223 223 224 224 log_msg(LOG_DEFAULT, LVL_DEBUG, "disp_window_resize_req()"); 225 ds_window_resize_req(wnd, rsztype, pos );225 ds_window_resize_req(wnd, rsztype, pos, pos_id); 226 226 ds_display_unlock(client->display); 227 227 return EOK; -
uspace/srv/hid/display/test/window.c
r46a47c0 rb0ae23f 758 758 display_wnd_params_t params; 759 759 gfx_coord2_t pos; 760 sysarg_t pos_id; 760 761 errno_t rc; 761 762 … … 783 784 pos.x = 42; 784 785 pos.y = 43; 785 ds_window_resize_req(wnd, display_wr_top_right, &pos); 786 pos_id = 44; 787 ds_window_resize_req(wnd, display_wr_top_right, &pos, pos_id); 786 788 787 789 PCUT_ASSERT_INT_EQUALS(dsw_resizing, wnd->state); -
uspace/srv/hid/display/types/display/window.h
r46a47c0 rb0ae23f 103 103 /** Original position before started to move or resize the window */ 104 104 gfx_coord2_t orig_pos; 105 /** Positioning device that started the resize */ 106 sysarg_t orig_pos_id; 105 107 /** Window resize type (if state is dsw_resizing) */ 106 108 display_wnd_rsztype_t rsztype; -
uspace/srv/hid/display/window.c
r46a47c0 rb0ae23f 510 510 * @param rsztype Resize type (which part of window is being dragged) 511 511 * @param pos Position where mouse button was pressed 512 * @param pos_id Positioning device ID 512 513 */ 513 514 static void ds_window_start_resize(ds_window_t *wnd, 514 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos )515 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 515 516 { 516 517 ds_seat_t *seat; … … 523 524 return; 524 525 526 /* Determine which seat started the resize */ 527 seat = ds_display_seat_by_idev(wnd->display, pos_id); 528 if (seat == NULL) 529 return; 530 525 531 wnd->orig_pos = *pos; 532 wnd->orig_pos_id = pos_id; 526 533 wnd->state = dsw_resizing; 527 534 wnd->rsztype = rsztype; 528 535 wnd->preview_rect = wnd->rect; 529 536 530 // TODO Multi-seat: need client to tell us which seat started the resize!531 seat = ds_display_first_seat(wnd->display);532 537 ctype = display_cursor_from_wrsz(rsztype); 533 538 ds_seat_set_wm_cursor(seat, wnd->display->cursor[ctype]); … … 559 564 ds_client_post_resize_event(wnd->client, wnd, &nrect); 560 565 561 // TODO Multi-seat: Need to know which seat started the resize! 562 seat = ds_display_first_seat(wnd->display); 563 ds_seat_set_wm_cursor(seat, NULL); 566 /* Determine which seat started the resize */ 567 seat = ds_display_seat_by_idev(wnd->display, wnd->orig_pos_id); 568 if (seat != NULL) 569 ds_seat_set_wm_cursor(seat, NULL); 564 570 565 571 (void) ds_display_paint(wnd->display, NULL); … … 787 793 * @param pos Position where the pointer was when the resize started 788 794 * relative to the window 795 * @param pos_id Positioning device ID 789 796 * @param event Button press event 790 797 */ 791 798 void ds_window_resize_req(ds_window_t *wnd, display_wnd_rsztype_t rsztype, 792 gfx_coord2_t *pos )799 gfx_coord2_t *pos, sysarg_t pos_id) 793 800 { 794 801 gfx_coord2_t orig_pos; 795 802 796 log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_resize_req (%d, %d, %d )",797 (int) rsztype, (int) pos->x, (int) pos->y);803 log_msg(LOG_DEFAULT, LVL_DEBUG, "ds_window_resize_req (%d, %d, %d, %d)", 804 (int)rsztype, (int)pos->x, (int)pos->y, (int)pos_id); 798 805 799 806 gfx_coord2_add(&wnd->dpos, pos, &orig_pos); 800 ds_window_start_resize(wnd, rsztype, &orig_pos );807 ds_window_start_resize(wnd, rsztype, &orig_pos, pos_id); 801 808 } 802 809 -
uspace/srv/hid/display/window.h
r46a47c0 rb0ae23f 68 68 extern void ds_window_get_max_rect(ds_window_t *, gfx_rect_t *); 69 69 extern void ds_window_resize_req(ds_window_t *, display_wnd_rsztype_t, 70 gfx_coord2_t * );70 gfx_coord2_t *, sysarg_t); 71 71 extern errno_t ds_window_resize(ds_window_t *, gfx_coord2_t *, gfx_rect_t *); 72 72 extern errno_t ds_window_minimize(ds_window_t *);
Note:
See TracChangeset
for help on using the changeset viewer.