summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/raleigh/d/saving_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/include/cxx/raleigh/d/saving_window.h')
-rw-r--r--src/user/include/cxx/raleigh/d/saving_window.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/user/include/cxx/raleigh/d/saving_window.h b/src/user/include/cxx/raleigh/d/saving_window.h
new file mode 100644
index 0000000..84b6f69
--- /dev/null
+++ b/src/user/include/cxx/raleigh/d/saving_window.h
@@ -0,0 +1,20 @@
+#ifndef RALEIGH_D_SAVING_WINDOW_H
+#define RALEIGH_D_SAVING_WINDOW_H
+
+#include <raleigh/w/vbox.h>
+#include <raleigh/window.h>
+
+namespace raleigh {
+ typedef void *save_tag_t;
+ class saving_window : public window {
+ public:
+ //save_func returns true if saving was successful
+ saving_window(bool (*save_func)(save_tag_t), save_tag_t save_tag, widget &root, _pixel_t bg_color=RGB(bf, bf, bf));
+ bool is_saved;
+
+ bool (*save_func)(save_tag_t);
+ save_tag_t save_tag;
+ };
+};
+
+#endif \ No newline at end of file