Changeset 62fbb7e in mainline for uspace/lib
- Timestamp:
- 2014-01-16T20:43:22Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6a3d0c7
- Parents:
- ba02baa
- Location:
- uspace/lib
- Files:
-
- 5 edited
-
c/generic/io/window.c (modified) (2 diffs)
-
c/include/io/window.h (modified) (4 diffs)
-
gui/connection.c (modified) (1 diff)
-
gui/window.c (modified) (8 diffs)
-
gui/window.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/window.c
rba02baa r62fbb7e 40 40 #include <stdio.h> 41 41 42 int win_register(async_sess_t *sess, service_id_t *in, service_id_t *out, 43 sysarg_t x_offset, sysarg_t y_offset) 42 int win_register(async_sess_t *sess, service_id_t *in, service_id_t *out) 44 43 { 45 44 async_exch_t *exch = async_exchange_begin(sess); 46 int ret = async_req_ 2_2(exch, WINDOW_REGISTER, x_offset, y_offset, in, out);45 int ret = async_req_0_2(exch, WINDOW_REGISTER, in, out); 47 46 async_exchange_end(exch); 48 47 49 48 return ret; 50 49 } … … 92 91 } 93 92 94 int win_resize(async_sess_t *sess, sysarg_t width, sysarg_t height, void *cells) 93 int win_resize(async_sess_t *sess, sysarg_t x, sysarg_t y, sysarg_t width, 94 sysarg_t height, window_placement_flags_t placement_flags, void *cells) 95 95 { 96 96 async_exch_t *exch = async_exchange_begin(sess); 97 97 98 98 ipc_call_t answer; 99 aid_t req = async_send_2(exch, WINDOW_RESIZE, width, height, &answer); 100 99 aid_t req = async_send_5(exch, WINDOW_RESIZE, x, y, width, height, 100 (sysarg_t) placement_flags, &answer); 101 101 102 int rc = async_share_out_start(exch, cells, AS_AREA_READ | AS_AREA_CACHEABLE); 102 103 103 104 async_exchange_end(exch); 104 105 105 106 sysarg_t ret; 106 107 async_wait_for(req, &ret); 107 108 if (rc != EOK) {108 109 if (rc != EOK) 109 110 return rc; 110 } else if (ret != EOK) {111 else if (ret != EOK) 111 112 return ret; 112 } else { 113 return EOK; 114 } 113 114 return EOK; 115 115 } 116 116 -
uspace/lib/c/include/io/window.h
rba02baa r62fbb7e 43 43 #include <io/pos_event.h> 44 44 45 typedef enum { 46 GF_EMPTY = 0, 47 GF_MOVE_X = 1, 48 GF_MOVE_Y = 2, 49 GF_RESIZE_X = 4, 50 GF_RESIZE_Y = 8, 51 GF_SCALE_X = 16, 52 GF_SCALE_Y = 32 53 } window_grab_flags_t; 54 55 typedef enum { 56 WINDOW_PLACEMENT_ANY = 0, 57 WINDOW_PLACEMENT_CENTER_X = 1, 58 WINDOW_PLACEMENT_CENTER_Y = 2, 59 WINDOW_PLACEMENT_CENTER = 60 WINDOW_PLACEMENT_CENTER_X | WINDOW_PLACEMENT_CENTER_Y, 61 WINDOW_PLACEMENT_LEFT = 4, 62 WINDOW_PLACEMENT_RIGHT = 8, 63 WINDOW_PLACEMENT_TOP = 16, 64 WINDOW_PLACEMENT_BOTTOM = 32, 65 WINDOW_PLACEMENT_ABSOLUTE_X = 64, 66 WINDOW_PLACEMENT_ABSOLUTE_Y = 128, 67 WINDOW_PLACEMENT_ABSOLUTE = 68 WINDOW_PLACEMENT_ABSOLUTE_X | WINDOW_PLACEMENT_ABSOLUTE_Y 69 } window_placement_flags_t; 70 45 71 typedef struct { 46 72 sysarg_t object; 47 73 sysarg_t slot; 48 74 sysarg_t argument; 49 } sig _event_t;75 } signal_event_t; 50 76 51 77 typedef struct { 78 sysarg_t offset_x; 79 sysarg_t offset_y; 52 80 sysarg_t width; 53 81 sysarg_t height; 54 } rsz_event_t; 82 window_placement_flags_t placement_flags; 83 } resize_event_t; 55 84 56 85 typedef enum { … … 69 98 kbd_event_t kbd; 70 99 pos_event_t pos; 71 sig _event_t sig;72 r sz_event_t rsz;100 signal_event_t signal; 101 resize_event_t resize; 73 102 } window_event_data_t; 74 103 … … 79 108 } window_event_t; 80 109 81 typedef enum { 82 GF_EMPTY = 0, 83 GF_MOVE_X = 1, 84 GF_MOVE_Y = 2, 85 GF_RESIZE_X = 4, 86 GF_RESIZE_Y = 8, 87 GF_SCALE_X = 16, 88 GF_SCALE_Y = 32 89 } window_grab_flags_t; 90 91 extern int win_register(async_sess_t *, service_id_t *, service_id_t *, sysarg_t, sysarg_t); 110 extern int win_register(async_sess_t *, service_id_t *, service_id_t *); 92 111 93 112 extern int win_get_event(async_sess_t *, window_event_t *); … … 95 114 extern int win_damage(async_sess_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t); 96 115 extern int win_grab(async_sess_t *, sysarg_t, sysarg_t); 97 extern int win_resize(async_sess_t *, sysarg_t, sysarg_t, void *); 116 extern int win_resize(async_sess_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t, 117 window_placement_flags_t, void *); 98 118 extern int win_close(async_sess_t *); 99 119 extern int win_close_request(async_sess_t *); -
uspace/lib/gui/connection.c
rba02baa r62fbb7e 210 210 link_initialize(&event->link); 211 211 event->type = ET_SIGNAL_EVENT; 212 event->data.sig .object = (sysarg_t) cur->widget;213 event->data.sig .slot = (sysarg_t) cur->slot;214 event->data.sig .argument = (sysarg_t) data_copy;212 event->data.signal.object = (sysarg_t) cur->widget; 213 event->data.signal.slot = (sysarg_t) cur->slot; 214 event->data.signal.argument = (sysarg_t) data_copy; 215 215 prodcons_produce(&cur->widget->window->events, &event->link); 216 216 } else { -
uspace/lib/gui/window.c
rba02baa r62fbb7e 352 352 } 353 353 354 static void handle_signal_event(window_t *win, sig _event_t event)354 static void handle_signal_event(window_t *win, signal_event_t event) 355 355 { 356 356 widget_t *widget = (widget_t *) event.object; … … 363 363 } 364 364 365 static void handle_resize(window_t *win, sysarg_t width, sysarg_t height) 366 { 367 int rc; 368 surface_t *old_surface; 369 surface_t *new_surface; 370 365 static void handle_resize(window_t *win, sysarg_t offset_x, sysarg_t offset_y, 366 sysarg_t width, sysarg_t height, window_placement_flags_t placement_flags) 367 { 371 368 if (width < 2 * border_thickness + header_min_width) { 372 369 win_damage(win->osess, 0, 0, 0, 0); 373 370 return; 374 371 } 375 372 376 373 if (height < 2 * border_thickness + header_height) { 377 374 win_damage(win->osess, 0, 0, 0, 0); 378 375 return; 379 376 } 380 377 381 378 /* Allocate resources for new surface. */ 382 new_surface = surface_create(width, height, NULL, SURFACE_FLAG_SHARED); 383 if (!new_surface) { 379 surface_t *new_surface = surface_create(width, height, NULL, 380 SURFACE_FLAG_SHARED); 381 if (!new_surface) 384 382 return; 385 } 386 383 387 384 /* Switch new and old surface. */ 388 385 fibril_mutex_lock(&win->guard); 389 old_surface = win->surface;386 surface_t *old_surface = win->surface; 390 387 win->surface = new_surface; 391 388 fibril_mutex_unlock(&win->guard); 392 393 /* Let all widgets in the tree alter their position and size. Widgets might 394 * also paint themselves onto the new surface. */ 389 390 /* 391 * Let all widgets in the tree alter their position and size. 392 * Widgets might also paint themselves onto the new surface. 393 */ 395 394 win->root.rearrange(&win->root, 0, 0, width, height); 396 395 397 396 fibril_mutex_lock(&win->guard); 398 397 surface_reset_damaged_region(win->surface); 399 398 fibril_mutex_unlock(&win->guard); 400 399 401 400 /* Inform compositor about new surface. */ 402 rc = win_resize(win->osess,403 width, height, surface_direct_access(new_surface));404 401 int rc = win_resize(win->osess, offset_x, offset_y, width, height, 402 placement_flags, surface_direct_access(new_surface)); 403 405 404 if (rc != EOK) { 406 405 /* Rollback to old surface. Reverse all changes. */ 407 406 408 407 sysarg_t old_width = 0; 409 408 sysarg_t old_height = 0; 410 if (old_surface) {409 if (old_surface) 411 410 surface_get_resolution(old_surface, &old_width, &old_height); 412 } 413 411 414 412 fibril_mutex_lock(&win->guard); 415 413 new_surface = win->surface; 416 414 win->surface = old_surface; 417 415 fibril_mutex_unlock(&win->guard); 418 416 419 417 win->root.rearrange(&win->root, 0, 0, old_width, old_height); 420 418 … … 424 422 fibril_mutex_unlock(&win->guard); 425 423 } 426 424 427 425 surface_destroy(new_surface); 428 return; 429 } 430 431 /* Finally deallocate old surface. */ 432 if (old_surface) { 433 surface_destroy(old_surface); 426 } else { 427 /* Deallocate old surface. */ 428 if (old_surface) 429 surface_destroy(old_surface); 434 430 } 435 431 } … … 513 509 break; 514 510 case ET_SIGNAL_EVENT: 515 handle_signal_event(win, event->data.sig );511 handle_signal_event(win, event->data.signal); 516 512 break; 517 513 case ET_WINDOW_RESIZE: 518 handle_resize(win, event->data.rsz.width, event->data.rsz.height); 514 handle_resize(win, event->data.resize.offset_x, 515 event->data.resize.offset_y, event->data.resize.width, 516 event->data.resize.height, event->data.resize.placement_flags); 519 517 break; 520 518 case ET_WINDOW_FOCUS: … … 590 588 591 589 window_t *window_open(const char *winreg, bool is_main, bool is_decorated, 592 const char *caption , sysarg_t x_offset, sysarg_t y_offset)590 const char *caption) 593 591 { 594 592 window_t *win = (window_t *) malloc(sizeof(window_t)); … … 630 628 service_id_t in_dsid; 631 629 service_id_t out_dsid; 632 rc = win_register(reg_sess, &in_dsid, &out_dsid , x_offset, y_offset);630 rc = win_register(reg_sess, &in_dsid, &out_dsid); 633 631 async_hangup(reg_sess); 634 632 if (rc != EOK) { … … 658 656 } 659 657 660 void window_resize(window_t *win, sysarg_t width, sysarg_t height) 658 void window_resize(window_t *win, sysarg_t offset_x, sysarg_t offset_y, 659 sysarg_t width, sysarg_t height, window_placement_flags_t placement_flags) 661 660 { 662 661 window_event_t *event = (window_event_t *) malloc(sizeof(window_event_t)); … … 664 663 link_initialize(&event->link); 665 664 event->type = ET_WINDOW_RESIZE; 666 event->data.rsz.width = width; 667 event->data.rsz.height = height; 665 event->data.resize.offset_x = offset_x; 666 event->data.resize.offset_y = offset_y; 667 event->data.resize.width = width; 668 event->data.resize.height = height; 669 event->data.resize.placement_flags = placement_flags; 668 670 prodcons_produce(&win->events, &event->link); 669 671 } -
uspace/lib/gui/window.h
rba02baa r62fbb7e 66 66 * If the window is declared as main, its closure causes termination of the 67 67 * whole application. Note that opened window does not have any surface yet. */ 68 extern window_t *window_open(const char *, bool, bool, const char *, sysarg_t, 69 sysarg_t); 68 extern window_t *window_open(const char *, bool, bool, const char *); 70 69 71 70 /** … … 74 73 * and to paint themselves on the new surface (top-bottom order). Should be 75 74 * called also after opening new window to obtain surface. */ 76 extern void window_resize(window_t *, sysarg_t, sysarg_t); 75 extern void window_resize(window_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t, 76 window_placement_flags_t); 77 77 78 78 /**
Note:
See TracChangeset
for help on using the changeset viewer.
