diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-12-05 17:37:02 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-12-05 17:37:02 (GMT) |
commit | b6724839df8779fb7f3f75cbb44966abe23fe696 (patch) | |
tree | cee33339e8570f1a91b2a6e7febddfb72497be30 /src/wxwidgets-test.cpp | |
parent | 2e669a02c59b25558ee9a46fc34170071433c7b1 (diff) | |
download | mxe-b6724839df8779fb7f3f75cbb44966abe23fe696.zip mxe-b6724839df8779fb7f3f75cbb44966abe23fe696.tar.gz mxe-b6724839df8779fb7f3f75cbb44966abe23fe696.tar.bz2 |
add test program for package wxwidgets
Diffstat (limited to 'src/wxwidgets-test.cpp')
-rw-r--r-- | src/wxwidgets-test.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wxwidgets-test.cpp b/src/wxwidgets-test.cpp new file mode 100644 index 0000000..714f917 --- /dev/null +++ b/src/wxwidgets-test.cpp @@ -0,0 +1,18 @@ +/* This file is part of mingw-cross-env. */ +/* See doc/index.html for further information. */ + +#include <wx/wx.h> + +class TestApp: public wxApp +{ +private: + bool OnInit() + { + wxFrame *frame = new wxFrame(0, -1, _("Hello, World!")); + frame->Show(true); + SetTopWindow(frame); + return true; + } +}; + +IMPLEMENT_APP(TestApp) |