Moving from Java to C ++ . Java had standard libraries like AWT , Swing , JavaFX for creating user interfaces.
What is C ++ for this?
Moving from Java to C ++ . Java had standard libraries like AWT , Swing , JavaFX for creating user interfaces.
What is C ++ for this?
In C ++ there are no standard libraries for the GUI.
There are third-party libraries such as: Qt, wxWidgets, JUCE, Nana, eGUI, etc. As well as Microsoft's own solutions, Borland (now Embarcadero Technologies).
Currently there are no standard libraries for graphics in C ++. It is necessary to use third-party, the list can be viewed on Wikipedia. But now there is a corresponding proposal to add such functionality to the standard part.
For example, on the page of a site dedicated to C ++ standardization there is such a picture (see bottom right corner):
The draft proposal, entitled "A Proposal to Add 2D Graphics Rendering and Display to C ++", currently contains 227 (!) Pages and is available here .
Source: https://ru.stackoverflow.com/questions/613654/
All Articles