annotate src/gtkmm2-test.cpp @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents d44625615017
children 8a6c466753e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1772
diff changeset
1 /* This file is part of MXE. */
1772
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
2 /* See doc/index.html for further information. */
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 #include <gtkmm/window.h>
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 #include <gtkmm/main.h>
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
6
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 int main(int argc, char *argv[])
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 {
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
9 Gtk::Main g(argc, argv);
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
10
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11 Gtk::Window window;
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1772
diff changeset
12 window.set_title("Test App MXE");
1772
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 window.set_default_size(200, 200);
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 window.show_all();
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 g.run(window);
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 return 0;
d44625615017 rename package gtkmm to gtkmm2
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 }