summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@serenityos.org>2020-05-15 10:54:04 +0300
committerAndreas Kling <kling@serenityos.org>2020-05-15 10:01:35 +0200
commite5a231e36f41b94840f02fb12f5b0d8727b443c8 (patch)
treeb96f29f3e585864fe59b648f9ced0c2e1ee477e9
parent32f8e57834515d835fc8998af943cb3b4ab4ad36 (diff)
downloadserenity-e5a231e36f41b94840f02fb12f5b0d8727b443c8.zip
Clipboard: Remove accidentally commited file
-rw-r--r--Services/Clipboard/WindowServer.ipc97
1 files changed, 0 insertions, 97 deletions
diff --git a/Services/Clipboard/WindowServer.ipc b/Services/Clipboard/WindowServer.ipc
deleted file mode 100644
index 1d678cbfb5..0000000000
--- a/Services/Clipboard/WindowServer.ipc
+++ /dev/null
@@ -1,97 +0,0 @@
-endpoint WindowServer = 2
-{
- Greet() => (i32 client_id, Gfx::Rect screen_rect, i32 system_theme_buffer_id)
-
- CreateMenubar() => (i32 menubar_id)
- DestroyMenubar(i32 menubar_id) => ()
-
- CreateMenu(String menu_title) => (i32 menu_id)
- DestroyMenu(i32 menu_id) => ()
-
- AddMenuToMenubar(i32 menubar_id, i32 menu_id) => ()
- SetApplicationMenubar(i32 menubar_id) => ()
-
- SetSystemMenu(i32 menu_id) => ()
-
- AddMenuItem(
- i32 menu_id,
- i32 identifier,
- i32 submenu_id,
- String text,
- bool enabled,
- bool checkable,
- bool checked,
- String shortcut,
- i32 icon_buffer_id,
- bool exclusive) => ()
-
- AddMenuSeparator(i32 menu_id) => ()
-
- UpdateMenuItem(i32 menu_id, i32 identifier, i32 submenu_id, String text, bool enabled, bool checkable, bool checked, String shortcut) => ()
-
- CreateWindow(
- Gfx::Rect rect,
- bool has_alpha_channel,
- bool modal,
- bool minimizable,
- bool resizable,
- bool fullscreen,
- bool frameless,
- float opacity,
- Gfx::Size base_size,
- Gfx::Size size_increment,
- i32 type,
- String title,
- i32 parent_window_id) => (i32 window_id)
-
- DestroyWindow(i32 window_id) => (Vector<i32> destroyed_window_ids)
-
- SetWindowTitle(i32 window_id, String title) => ()
- GetWindowTitle(i32 window_id) => (String title)
-
- SetWindowRect(i32 window_id, Gfx::Rect rect) => (Gfx::Rect rect)
- GetWindowRect(i32 window_id) => (Gfx::Rect rect)
-
- InvalidateRect(i32 window_id, Vector<Gfx::Rect> rects, bool ignore_occlusion) =|
- DidFinishPainting(i32 window_id, Vector<Gfx::Rect> rects) =|
-
- SetGlobalCursorTracking(i32 window_id, bool enabled) => ()
- SetWindowOpacity(i32 window_id, float opacity) => ()
-
- SetWindowBackingStore(i32 window_id, i32 bpp, i32 pitch, i32 shbuf_id, bool has_alpha_channel, Gfx::Size size, bool flush_immediately) => ()
- GetClipboardData() => (i32 shbuf_id, i32 content_size, String content_type)
- SetClipboardData(i32 shbuf_id, i32 content_size, String content_type) => ()
-
- WM_SetActiveWindow(i32 client_id, i32 window_id) =|
- WM_SetWindowMinimized(i32 client_id, i32 window_id, bool minimized) =|
- WM_StartWindowResize(i32 client_id, i32 window_id) =|
- WM_PopupWindowMenu(i32 client_id, i32 window_id, Gfx::Point screen_position) =|
- WM_SetWindowTaskbarRect(i32 client_id, i32 window_id, Gfx::Rect rect) =|
-
- SetWindowHasAlphaChannel(i32 window_id, bool has_alpha_channel) => ()
- MoveWindowToFront(i32 window_id) => ()
- SetFullscreen(i32 window_id, bool fullscreen) => ()
- PopupMenu(i32 menu_id, Gfx::Point screen_position) => ()
- DismissMenu(i32 menu_id) => ()
-
- AsyncSetWallpaper(String path) =|
-
- SetBackgroundColor(String background_color) => ()
- SetWallpaperMode(String mode) => ()
-
- SetResolution(Gfx::Size resolution) => (bool success, Gfx::Size resolution)
- SetWindowIconBitmap(i32 window_id, Gfx::ShareableBitmap icon) => ()
-
- GetWallpaper() => (String path)
- SetWindowOverrideCursor(i32 window_id, i32 cursor_type) => ()
-
- StartDrag(String text, String data_type, String data, i32 bitmap_id, Gfx::Size bitmap_size) => (bool started)
-
- SetSystemTheme(String theme_path, String theme_name) => (bool success)
- GetSystemTheme() => (String theme_name)
-
- SetWindowBaseSizeAndSizeIncrement(i32 window_id, Gfx::Size base_size, Gfx::Size size_increment) => ()
-
- EnableDisplayLink() =|
- DisableDisplayLink() =|
-}