blob: 00ca8ddeb66e4ffc2cbd31da10fa62266c9ac64c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include <X11/Fresco/figures.h>
#include <X11/Fresco/fresco.h>
#include <X11/Fresco/layouts.h>
#include <X11/Fresco/widgets.h>
#include <X11/Fresco/Impls/action.h>
#include <stdio.h>
class App {
public:
App() { }
~App() { }
int main(int argc, char** argv);
private:
void push_me();
};
declareActionCallback(App)
implementActionCallback(App)
int main(int argc, char** argv) {
App a;
return a.main(argc, argv);
}
int App::main(int argc, char** argv) {
Fresco* f = Fresco_open("Test", argc, argv);
FigureKit figures = f->figure_kit();
WidgetKit widgets = f->widget_kit();
LayoutKit layouts = f->layout_kit();
Button b = widgets->push_button(
figures->label(
figures->default_style(), Fresco::string_ref("Push me")
),
new ActionCallback(App)(this, &App::push_me)
);
f->main(b, layouts->margin(b, 10.0));
Fresco::unref(f);
return 0;
}
void App::push_me() {
printf("pushed\n");
}
|