summaryrefslogtreecommitdiffabout
path: root/src/dialogs.h
Side-by-side diff
Diffstat (limited to 'src/dialogs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--src/dialogs.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/dialogs.h b/src/dialogs.h
new file mode 100644
index 0000000..0a7f1b0
--- a/dev/null
+++ b/src/dialogs.h
@@ -0,0 +1,25 @@
+#ifndef __N_DIALOGS_H
+#define __N_DIALOGS_H
+
+#include <gtkmm/dialog.h>
+#include <gtkmm/box.h>
+#include "widgets.h"
+
+namespace napkin {
+ namespace gtk {
+
+ class hypnoinfo_dialog_t : public Gtk::Dialog {
+ public:
+ hypnoinfo_t w_hinfo;
+
+ hypnoinfo_dialog_t(Gtk::Window& w);
+
+ inline void update_data(const hypnodata_ptr_t& hd) {
+ w_hinfo.update_data(hd); }
+ };
+
+
+ }
+}
+
+#endif /* __N_DIALOGS_H */