summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/WindowClient.ipc
blob: a3219415f03d6b3a7937dbd3d68b4aaa1177851d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
endpoint WindowClient
{
    fast_greet(Vector<Gfx::IntRect> screen_rects, u32 main_screen_index, Core::AnonymousBuffer theme_buffer, String default_font_query, String fixed_width_font_query) =|

    paint(i32 window_id, Gfx::IntSize window_size, Vector<Gfx::IntRect> rects) =|
    mouse_move(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta, bool is_drag, Vector<String> mime_types) =|
    mouse_down(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta) =|
    mouse_double_click(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta) =|
    mouse_up(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta) =|
    mouse_wheel(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta) =|
    window_entered(i32 window_id) =|
    window_left(i32 window_id) =|
    window_input_entered(i32 window_id) =|
    window_input_left(i32 window_id) =|
    key_down(i32 window_id, u32 code_point, u32 key, u32 modifiers, u32 scancode) =|
    key_up(i32 window_id, u32 code_point, u32 key, u32 modifiers, u32 scancode) =|
    window_activated(i32 window_id) =|
    window_deactivated(i32 window_id) =|
    window_state_changed(i32 window_id, bool minimized, bool occluded) =|
    window_close_request(i32 window_id) =|
    window_resized(i32 window_id, Gfx::IntRect new_rect) =|

    menu_item_activated(i32 menu_id, u32 identifier) =|
    menu_item_entered(i32 menu_id, u32 identifier) =|
    menu_item_left(i32 menu_id, u32 identifier) =|
    menu_visibility_did_change(i32 menu_id, bool visible) =|

    screen_rects_changed(Vector<Gfx::IntRect> rects, u32 main_screen_index) =|

    set_wallpaper_finished(bool success) =|

    drag_accepted() =|
    drag_cancelled() =|

    drag_dropped(i32 window_id, Gfx::IntPoint mouse_position, [UTF8] String text, HashMap<String,ByteBuffer> mime_data) =|

    update_system_theme(Core::AnonymousBuffer theme_buffer) =|
    update_system_fonts(String default_font_query, String fixed_width_font_query) =|

    display_link_notification() =|

    ping() =|
}