From cb68df6a7f2af99c70dfb36fe70508b9fec3c36b Mon Sep 17 00:00:00 2001 From: Able <abl3theabove@gmail.com> Date: Tue, 11 Feb 2025 17:01:19 -0600 Subject: [PATCH] Add in a new library for clipboard api work --- sysdata/libraries/clippy/README.md | 2 + sysdata/libraries/clippy/meta.toml | 11 +++++ sysdata/libraries/clippy/src/lib.hb | 63 +++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 sysdata/libraries/clippy/README.md create mode 100644 sysdata/libraries/clippy/meta.toml create mode 100644 sysdata/libraries/clippy/src/lib.hb diff --git a/sysdata/libraries/clippy/README.md b/sysdata/libraries/clippy/README.md new file mode 100644 index 0000000..ed287c7 --- /dev/null +++ b/sysdata/libraries/clippy/README.md @@ -0,0 +1,2 @@ +# clippy +Uhm maybe change the name haha \ No newline at end of file diff --git a/sysdata/libraries/clippy/meta.toml b/sysdata/libraries/clippy/meta.toml new file mode 100644 index 0000000..ba07b64 --- /dev/null +++ b/sysdata/libraries/clippy/meta.toml @@ -0,0 +1,11 @@ +[package] +name = "clippy" +authors = [""] + +[dependants.libraries] + +[dependants.binaries] +hblang.version = "1.0.0" + +[build] +command = "hblang src/main.hb" diff --git a/sysdata/libraries/clippy/src/lib.hb b/sysdata/libraries/clippy/src/lib.hb new file mode 100644 index 0000000..e09e202 --- /dev/null +++ b/sysdata/libraries/clippy/src/lib.hb @@ -0,0 +1,63 @@ +TagType := enum { + Binary, + // Text is in UTF8 format. + Text, + // Images are in QOI format + Image, + // A path to a file or folder on disk. In the format of FileID. + Path, +} + +// Transdimensionally located here to make following code easier +FileID := struct { + host_id: HostID, + id: ID, +} + +Note := struct { + tag: TagType, + data_length: uint, + data: ^u8, + next_note: ^Note, + last_note: ^Note, +} + + +Clipboard = struct { + current_note_count: u8, + // Maybe max it at like 5. + total_note_count: u8, + start_notes: ^Note, + // Does it even make sense to have this? + end_notes: ^Note, +} + + +// Ctrl + Up arrow moves the clip board forward +flip_board_forward = fn(): void { + +} + +// Ctrl + arrow moves the clip board backward +flip_board_backward = fn(): void { + +} + + +// Ctrl + V soft paste. Pastes text without removing it from your clipboard. +soft_paste = fn(): void { + +} + + +// Ctrl + Shift + V hard paste. Pastes text removing it from your clipboard. +hard_paste = fn(): void { + +} + +// Ctrl + C copy. Copies text into the clipboard on a new page. Filling a blank one or pushing the oldest page out. +copy = fn(): void {} + + +// Ctrl + X Cut. Cuts text into the clipboard on a new page. Filling a blank one or pushing the oldest page out. +cut = fn(): void {} \ No newline at end of file