ultimatepp/README.md
cxl 28786da6c5 Squashed commit of the following:
commit c4dac38fb0ff1806e392a1f07f44f395ef3ead1f
Merge: 7e1b177b8 13e2da7bd
Author: Mirek Fidler <mirek.fidler@gmail.com>
Date:   Sun Nov 17 17:26:11 2019 +0100

    Merge branch 'klugier/initial-pr' of https://github.com/klugier/ultimatepp into klugier-klugier/initial-pr

commit 13e2da7bdc
Author: Zbigniew Rębacz <klugier@poczta.onet.pl>
Date:   Sun Nov 17 12:50:55 2019 +0100

    Supported platforms - README.md

commit e9b3d6424d
Author: Zbigniew Rębacz <klugier@poczta.onet.pl>
Date:   Sat Nov 16 20:42:45 2019 +0100

    Update README.md

commit 632d0ae2c4
Author: Zbigniew Rębacz <klugier@poczta.onet.pl>
Date:   Sat Nov 16 20:32:29 2019 +0100

    .README.MD

git-svn-id: svn://ultimatepp.org/upp/trunk@13700 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-11-17 16:34:24 +00:00

3.3 KiB

Ultimate++

Ultimate++ is a C++ cross-platform rapid application development framework focused on programmers productivity. It includes a set of libraries (GUI, SQL, etc.), and an integrated development environment.

Rapid development is achieved by the smart and aggressive use of C++ rather than through fancy code generators. In this respect, U++ competes with popular scripting languages while preserving C/C++ runtime characteristics.

The U++ integrated development environment, TheIDE, introduces modular concepts to C++ programming. It features BLITZ-build technology to speedup C++ rebuilds up to 4 times, Visual designers for U++ libraries, a Topic++ system for documenting code and creating rich text resources for applications (like help and code documentation) and Assist++ - a powerful C++ code analyzer that provides features like code completion, navigation and transformation.

TheIDE can work with GCC, MinGW and Visual C++ and contains a full featured debugger. TheIDE can also be used to develop non-U++ applications.

U++ supports following platforms on the production level: Windows, macOS, GNU/Linux & FreeBSD.

What you can get with Ultimate++?

  • A very effective C++ library for cross-platform development in source form.
  • A good integrated development environment, designed for developing large C++ applications.

You can use both, or you can use whichever you need.

License

U++ uses BSD license.

Download

Main downloads:

Other downloads:

U++ Resources

More information about the framework, can be found on the official site. Don't forget to check our rich documentation.

Examples

GUI

Below is the code of trivial GUI application that displays "Hellow World" string inside window:

#include <CtrlLib/CtrlLib.h>

class MyAppWindow : public Upp::TopWindow {
public:
    MyAppWindow() {
        Title("My application").Zoomable().Sizeable();
    }

    virtual void Paint(Upp::Draw& w) override {
        w.DrawRect(GetSize(), Upp::SWhite);
        w.DrawText(20, 20, "Hello world!", Upp::Arial(30), Upp::Magenta);
    }
};

GUI_APP_MAIN
{
    MyAppWindow app;
    app.SetRect(0, 0, 200, 100);
    app.Run();
}

Additional examples

More examples you can find directly on special section of U++ framework website deticated to examples. Moreover, exactly the same examples can be find in examples and references directories located in this repository.

Repository

Repository layout

The U++ repository is divided into several directories. The most important ones are:

  • examples - examplary code of complex applications
  • references - referential implementation
  • uppsrc - contains main sources of the framework