Nana C++ Library -- my opensource projoect

Hello,
Nana C++ Library is an Open Source library, it provides some useful toolkits, such as GUI/Threads/TextTokens, the GUI framework gives you a simple way for writting GUI applications. This library is written in Standard C++, and it is designed to be portable over multiplatforms.

This release is a pre-alpha version, I need to see how features work in action as the development process processds, it is not feature complete. If you are interested in it, please give me some advice.

Website is:
http://stdex.sourceforge.net

A Hello,world program.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <nana/gui/wvl.hpp>
#include <nana/gui/widgets/button.hpp>

int main()
{
	using namespace nana;

	gui::form form;
	form.caption(STR("Hello,world"));

	gui::button btn(form, 20, 20, 150, 30);
	btn.caption(STR("Quit"));
	btn.make_event<gui::events::click>(gui::API::exit);

	form.show();
	nana::gui::exec();
}


I will be very glad that you refer to the website for more details.

Thanks.
Topic archived. No new replies allowed.