Nana C++

Nana C++
Developer(s) Jin Hao
Initial release 2007 (2007)
Stable release 1.3.0 / February 8, 2016 (2016-02-08)
Written in C++
Operating system Windows and Linux with X11
Type user interface library
License Boost Software License
Website nanapro.org

Nana is a cross-platform C++ library for creating graphical user interfaces. It uses a platform-independent API and currently supports Windows and Linux(X11) platforms.[1]

Nana is free and open-source software, licensed under the Boost Software License.

Architecture and design

Nana is an object-oriented widget toolkit using generic programming[2] and written in Standard C++. It can therefore be compiled by any Standard C++ compiler (VC2013, GCC/MinGW, Clang).

The primary design goal of Nana is to make things simple and intuitive to C++ developpers: it therefore uses many advanced C++ features, such as templates, standard libraries, exception and RTTI. It fully supports C++11 since 2012,[3] giving the developers the freedom to use various modern C++ features such as lambda functions, smart pointers and the standard library.

Language bindings

Nana was written in C++ and targets only this language.

The following Nana example[4] creates a window with a "Hello, World" caption and a "Quit" button:

#include<nana/gui/wvl.hpp>
#include <nana/gui/widgets/button.hpp>

int main()
{
     using namespace nana;
     form fm;                   // The form is a window with title bar and a sizable border frame, 
     fm.caption("Hello World");
     button btn(fm, nana::rectangle(20, 20, 150, 30));
     btn.caption("Quit");
     btn.events().click(API::exit);  // API::exit is a function that is triggered on click
     fm.show();
     exec();
}

Versions

The current version 1.2.2 was released on December 8, 2015.

According to the project's SourceForge repository:[5]

The SourceForge repository of the alpha release[6] of the project, traces the first release 0.1.0 back to December 4, 2007.

See also

References

External links

This article is issued from Wikipedia - version of the Thursday, April 14, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.