summaryrefslogtreecommitdiffstats
path: root/Tests/FindGTK2/gtkmm/helloworld.h
blob: ae9af17591c2d889c90e2e71442cf0034863db73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef GTKMM_EXAMPLE_HELLOWORLD_H
#define GTKMM_EXAMPLE_HELLOWORLD_H

#include <gtkmm.h>

class HelloWorld : public Gtk::Window
{
public:
  HelloWorld();
  virtual ~HelloWorld();

protected:
  // Signal handlers:
  void on_button_clicked();

  // Member widgets:
  Gtk::Button m_button;
};

#endif // GTKMM_EXAMPLE_HELLOWORLD_H