From: DarioProgramer on
I wanted to know if C++ has its own library for GUI (Buttons, Labels,
TxtFields....) or do you have to use QT, wxwidgets?

--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

From: Ulrich Eckhardt on
DarioProgramer wrote:
> I wanted to know if C++ has its own library for GUI (Buttons, Labels,
> TxtFields....) or do you have to use QT, wxwidgets?

Standard C++ doesn't have any GUI libraries, so the latter.

Uli

--
Sator Laser GmbH
Geschäftsführer: Thorsten Föcking, Amtsgericht Hamburg HR B62 932


[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

From: Goran on
On Jan 20, 3:14 pm, DarioProgramer <oiradran...(a)bellsouth.net> wrote:
> I wanted to know if C++ has its own library for GUI (Buttons, Labels,
> TxtFields....) or do you have to use QT, wxwidgets?

, or U++, VCL (Borland-specific), MFC (MS specific)...

No, GUI is not a subject of standard C++. IMO, that's good. UI is too
complex as a subject matter and considering "standard" design would
detract committee from doing useful things with the language itself.
(As if committee is not slow enough already) :-)

Goran.


--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

From: Thomas Richter on
DarioProgramer schrieb:
> I wanted to know if C++ has its own library for GUI (Buttons, Labels,
> TxtFields....) or do you have to use QT, wxwidgets?

The C++ standard does not define a GUI library, quite unlike Java.

Greetings,
Thomas


--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

From: news on
On 20.1.2010 16:14, DarioProgramer wrote:
> I wanted to know if C++ has its own library for GUI (Buttons, Labels,
> TxtFields....) or do you have to use QT, wxwidgets?
>

You wanted? So what happened to that desire?

Anyway, C++ has has no standard GUI features.

--
Many pages make a thick book.

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]