blob: 298088425ed362ee7e3cd2f7934fe0cd3e2107ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|