cmake/Tests/FindGTK2/gtkmm/helloworld.h

21 lines
329 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef GTKMM_EXAMPLE_HELLOWORLD_H
#define GTKMM_EXAMPLE_HELLOWORLD_H
#include <gtkmm.h>
class HelloWorld : public Gtk::Window
{
public:
2016-07-09 11:21:54 +02:00
HelloWorld();
virtual ~HelloWorld();
2014-08-03 19:52:23 +02:00
protected:
2016-07-09 11:21:54 +02:00
// Signal handlers:
void on_button_clicked();
2014-08-03 19:52:23 +02:00
2016-07-09 11:21:54 +02:00
// Member widgets:
Gtk::Button m_button;
2014-08-03 19:52:23 +02:00
};
#endif // GTKMM_EXAMPLE_HELLOWORLD_H