summaryrefslogtreecommitdiff
path: root/src/user/settings/editor.h
diff options
context:
space:
mode:
authorBenji Dial <benji6283@gmail.com>2021-03-11 22:00:22 -0500
committerBenji Dial <benji6283@gmail.com>2021-03-11 22:00:22 -0500
commit5fcf57739e68a8b5053e03778aaee0eed445babd (patch)
treee7a8bab18668d112e58b1b48190195035c71fa8a /src/user/settings/editor.h
parent0f2398d1f622cce37925f52d978d92e6cce1c7a9 (diff)
downloadportland-os-5fcf57739e68a8b5053e03778aaee0eed445babd.tar.gz
settings editor, and lots of changes in service of that
Diffstat (limited to 'src/user/settings/editor.h')
-rw-r--r--src/user/settings/editor.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/user/settings/editor.h b/src/user/settings/editor.h
new file mode 100644
index 0000000..2980884
--- /dev/null
+++ b/src/user/settings/editor.h
@@ -0,0 +1,20 @@
+#ifndef EDITOR_H
+#define EDITOR_H
+
+#include <raleigh/d/saving_window.h>
+
+using namespace raleigh;
+
+class editor {
+ friend bool editor_save(window_tag_t e);
+public:
+ void show();
+protected:
+ editor();
+ void editing_widget_ready(widget &e, const char *sname);
+ virtual void set_data() = 0;
+private:
+ window *w;
+};
+
+#endif \ No newline at end of file