mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:12:43 +00:00 
			
		
		
		
	 6e19ab2bbc
			
		
	
	
		6e19ab2bbc
		
	
	
	
	
		
			
			We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include <LibCore/AnonymousBuffer.h>
 | |
| #include <LibGfx/ShareableBitmap.h>
 | |
| 
 | |
| endpoint WindowClient
 | |
| {
 | |
|     fast_greet(Vector<Gfx::IntRect> screen_rects, u32 main_screen_index, u32 workspace_rows, u32 workspace_columns, Core::AnonymousBuffer theme_buffer, DeprecatedString default_font_query, DeprecatedString fixed_width_font_query, DeprecatedString window_title_font_query, Vector<bool> effects, i32 client_id) =|
 | |
| 
 | |
|     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_x, i32 wheel_delta_y, i32 wheel_raw_delta_x, i32 wheel_raw_delta_y, bool is_drag, Vector<DeprecatedString> mime_types) =|
 | |
|     mouse_down(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta_x, i32 wheel_delta_y, i32 wheel_raw_delta_x, i32 wheel_raw_delta_y) =|
 | |
|     mouse_double_click(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta_x, i32 wheel_delta_y, i32 wheel_raw_delta_x, i32 wheel_raw_delta_y) =|
 | |
|     mouse_up(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta_x, i32 wheel_delta_y, i32 wheel_raw_delta_x, i32 wheel_raw_delta_y) =|
 | |
|     mouse_wheel(i32 window_id, Gfx::IntPoint mouse_position, u32 button, u32 buttons, u32 modifiers, i32 wheel_delta_x, i32 wheel_delta_y, i32 wheel_raw_delta_x, i32 wheel_raw_delta_y) =|
 | |
|     window_entered(i32 window_id) =|
 | |
|     window_left(i32 window_id) =|
 | |
|     window_input_preempted(i32 window_id) =|
 | |
|     window_input_restored(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 maximized, bool occluded) =|
 | |
|     window_close_request(i32 window_id) =|
 | |
|     window_resized(i32 window_id, Gfx::IntRect new_rect) =|
 | |
|     window_moved(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, u32 workspace_rows, u32 workspace_columns) =|
 | |
| 
 | |
|     applet_area_rect_changed(Gfx::IntRect rect) =|
 | |
| 
 | |
|     drag_accepted() =|
 | |
|     drag_cancelled() =|
 | |
| 
 | |
|     drag_dropped(i32 window_id, Gfx::IntPoint mouse_position, [UTF8] DeprecatedString text, HashMap<DeprecatedString,ByteBuffer> mime_data) =|
 | |
| 
 | |
|     update_system_theme(Core::AnonymousBuffer theme_buffer) =|
 | |
|     update_system_fonts(DeprecatedString default_font_query, DeprecatedString fixed_width_font_query, DeprecatedString window_title_font_query) =|
 | |
|     update_system_effects(Vector<bool> effects) =|
 | |
| 
 | |
|     display_link_notification() =|
 | |
| 
 | |
|     track_mouse_move(Gfx::IntPoint mouse_position) =|
 | |
| 
 | |
|     ping() =|
 | |
| }
 |