summaryrefslogtreecommitdiffabout
path: root/src/dialogs.h
blob: 0a7f1b0f3cef0997305f3913501254abbc7b6525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 */