cstring header was included. (Compile in Debian)
[gtkmmProject.git] / src / EventBox.h
blobbfb70813046e6ae6def0fa121f7e5fc1bfc5e8b2
1 #ifndef _NEW_EVENT_BOX_H
2 #define _NEW_EVENT_BOX_H
4 #include <gtkmm/box.h>
5 #include <gtkmm/eventbox.h>
7 class NewEventBox : public Gtk::EventBox
9 private:
10 // Gtk::Button btn1;
11 // Gtk::Button btn2;
12 Gtk::VBox vBox;
13 Gtk::HBox hBoxUp;
14 Gtk::HBox hBoxDown;
16 public :
17 NewEventBox();
18 virtual ~NewEventBox() {}
20 protected:
21 virtual bool on_expose_event(GdkEventExpose* e);
22 virtual void on_realize (void);
25 #endif