U++ is a C++ cross-platform rapid application development framework focused on programmer's productivity. It includes a set of libraries (GUI, SQL, Network etc.), and integrated development environment (TheIDE).
Find a file
cxl d1b98bdc3f .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@13921 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-01-21 08:44:38 +00:00
archive/uppsrc Reorganizing REPO 2017-12-26 10:28:32 +00:00
autotest .autotest 2019-11-24 15:30:15 +00:00
autotst u++: init files removed 2016-11-12 06:36:54 +00:00
benchmarks .benchmarks 2019-07-02 07:02:30 +00:00
examples .cosmetics 2020-01-06 21:56:31 +00:00
rainbow VirtualGui: ch improvements 2020-01-14 12:31:40 +00:00
reference .reference 2020-01-21 08:44:38 +00:00
tutorial .docs 2019-09-08 20:07:58 +00:00
uppbox Switch to gtk+3 2020-01-15 10:32:39 +00:00
uppsrc upp.src: pkg-config issues 2020-01-20 23:54:47 +00:00
upptst .upptst 2020-01-18 16:50:23 +00:00
README.md Squashed commit of the following: 2019-11-17 16:34:24 +00:00

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