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
Zbigniew Rębacz bcb86d8728
Initial Circle CI Integration (#102)
CircleCI allow us to build each commit and especially commits from master branch. In the version dedicated to open source it can only works within Linux environment. Resource are also limited, but it offers 4 cores and 8 GB of RAM, which is sufficient to build TheIDE.

My implementation runs TheIDE and UMK makiles. In the future it can be extended for more advanced things such as running auto-test scripts.

Image cimg/base:2022.09 offers Clang 11, which is sufficient for our needs.

No more DDUMPS :)
2022-09-30 01:02:17 +02:00
.circleci Initial Circle CI Integration (#102) 2022-09-30 01:02:17 +02:00
autotest .autotest 2022-09-20 13:43:46 +02:00
benchmarks VirtualButtons improvements 2022-04-26 13:13:27 +02:00
examples Example: removed WeirdBug from examples. 2022-08-03 15:45:09 +02:00
rainbow sizeof(wchar) is changed to 4 (32 bits) to support non BMP unicode characters 2021-12-02 12:03:19 +01:00
reference Core/SMTP: Fixed header duplicates with AddHeader, remove reference/CoPipe 2022-09-19 01:45:52 +02:00
tutorial Revert "CtrlCore, ide: Support for namespace agnostic layouts refactored" 2022-05-08 08:48:22 +02:00
uppbox UppWeb, Doc: Further removla of Ultimate++. 2022-09-25 02:03:51 +02:00
uppsrc Initial Circle CI Integration (#102) 2022-09-30 01:02:17 +02:00
upptst Merge branch 'master' of https://github.com/ultimatepp/ultimatepp 2022-09-19 01:46:17 +02:00
.editorconfig .editorconfig (#46) 2021-10-15 08:54:48 +02:00
configure configure script for solaris 2020-08-07 10:07:55 +00:00
configure_makefile configure_makefile MacOS support 2021-01-19 12:16:53 +00:00
Makefile Makefile(s) updated 2022-09-16 10:40:05 +02:00
Makefile.in Makefile(s) updated 2022-09-16 10:40:05 +02:00
README.md README.md - replace Ultimate++ with U++ 2022-01-21 13:34:47 +01:00
umkMakefile Makefile(s) updated 2022-09-16 10:40:05 +02:00
umkMakefile.in Makefile(s) updated 2022-09-16 10:40:05 +02:00

U++

alt text

U++ 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, Clang, 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 U++?

  • 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 "Hello World" string inside window:

#include <CtrlLib/CtrlLib.h>

class MyApp: public Upp::TopWindow {
public:
    MyApp()
    {
        Title("My application").Zoomable().Sizeable().SetRect(0, 0, 320, 200);
    }

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

GUI_APP_MAIN
{
    MyApp().Run();
}

TheIDE

Standard part of U++ framework is integrated development environment, TheIDE.

TheIDE - U++ Integrated Developemnt Enviroment

Additional examples

See here: examples. Moreover, exactly the same examples can be found in the examples and references directories located in this repository.

If you would like to see more screenshots, click here.

Repository

Repository layout

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

  • examples - exemplary codes of complex applications
  • references - reference examples demonstrating individual features of U++
  • uppsrc - main sources of the framework