summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-08 21:31:04 -0600
committerJeff Carr <[email protected]>2025-02-08 21:31:04 -0600
commit010bd2a33fc64e182fe1190e11d6ef2f841088f8 (patch)
tree3a2795ce24e142103b21ac75cd704fb9402c6e25
parentba629f1892ff99e40f8c3419e3ae1eaf7ed4c71d (diff)
just remove this I guessv0.22.20
-rw-r--r--gocuiView.proto44
1 files changed, 0 insertions, 44 deletions
diff --git a/gocuiView.proto b/gocuiView.proto
deleted file mode 100644
index 5dab35d..0000000
--- a/gocuiView.proto
+++ /dev/null
@@ -1,44 +0,0 @@
-syntax = "proto3";
-
-// including this in a plugin seems to keep it from loading at this point
-
-package main;
-
-import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
-
-// maybe put all the gocui specific stuff here.
-message GocuiState { // `autogenpb:nomutex`
- bool visible = 1;
- bool internal = 2;
- int64 w0 = 3;
- int64 h0 = 4;
- int64 w1 = 5;
- int64 h1 = 6;
-}
-
-message ViewSettings { // `autogenpb:nomutex`
- bool pack = 1;
- int64 framesize = 5;
-}
-
-message Tree {
- View parent = 1;
- repeated View children = 2;
- View node = 3;
-}
-
-// this is the gocui 'view' in binary tree form
-message GocuiView {
- int64 widgetId = 3; // `autogenpb:unique` `autogenpb:sort`
- string name = 4; // `autogenpb:unique` `autogenpb:sort`
- GocuiState state = 7;
-}
-
-message GocuiViews { // `autogenpb:marshal` `autogenpb:mutex`
- string uuid = 1; // `autogenpb:uuid:d19c1fbb-32c2-4957-aee6-f8128a511dca`
- string version = 2; // `autogenpb:version:v0.0.1`
- repeated GocuiView GocuiViews = 3;
- Tree tree = 4;
- map<string, string> junk = 5;
- ViewSettings settings = 6;
-}