How do you make a basic c++ GUI from scratch without using any programs?

closed account (ETA4izwU)
Hello, i am new to c++ and I have learned the basics you need to know about c++ so I was wondering, how do you make a GUI from scratch without using any programs like qt, daniweb, ect. Is there like a ongui() or something?

Thank you, Sasha.
> how do you make a GUI from scratch without using any programs like qt, daniweb

Standard C++ does not (and will not) have libraries to support programming GUIs.

If the platform natively supports programming GUIs (for example Windows, Apple, Symbian etc.), you can use the API of the platform. If not, you would need third-party library support.
closed account (ETA4izwU)
Is there anything related to a GUI?
> Is there anything related to a GUI?

Could you rephrase that question? It is not clear.
closed account (jyU4izwU)
I Know Maby Try Programing Pixels into Print Mode
closed account (ETA4izwU)
Could you give me a code for an example? Thanks, Sasha
> Could you give me a code for an example?

The example would depend on the platform.

For instance, on windows: http://www.winprog.org/tutorial/start.html
Topic archived. No new replies allowed.