]> git.tdb.fi Git - libs/gltk.git/blob - examples/widgetdemo/dialogdemo.h
4e5f7706e91c7fba7bb55ccb3d6595039dd4637d
[libs/gltk.git] / examples / widgetdemo / dialogdemo.h
1 #ifndef DIALOGDEMO_H_
2 #define DIALOGDEMO_H_
3
4 #include <msp/gltk/label.h>
5 #include <msp/gltk/panel.h>
6
7 class DialogDemo: public Msp::GLtk::Panel
8 {
9 private:
10         Msp::GLtk::Label lbl_text;
11
12 public:
13         DialogDemo();
14
15 private:
16         void button_clicked();
17         void got_response(const std::string &);
18 };
19
20 #endif