repo.or.cz
/
gtkmmProject.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cstring header was included. (Compile in Debian)
[gtkmmProject.git]
/
src
/
EventBox.h
blob
bfb70813046e6ae6def0fa121f7e5fc1bfc5e8b2
1
#ifndef _NEW_EVENT_BOX_H
2
#define _NEW_EVENT_BOX_H
3
4
#include <gtkmm/box.h>
5
#include <gtkmm/eventbox.h>
6
7
class
NewEventBox
:
public Gtk
::
EventBox
8
{
9
private
:
10
// Gtk::Button btn1;
11
// Gtk::Button btn2;
12
Gtk
::
VBox vBox
;
13
Gtk
::
HBox hBoxUp
;
14
Gtk
::
HBox hBoxDown
;
15
16
public
:
17
NewEventBox
();
18
virtual
~
NewEventBox
() {}
19
20
protected
:
21
virtual
bool
on_expose_event
(
GdkEventExpose
*
e
);
22
virtual
void
on_realize
(
void
);
23
};
24
25
#endif