473,396 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Standard GUI Toolkit

Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the project
will be under development for the years to come)

Thanks

CIAO
Alessandro
Jul 22 '05 #1
13 2461
db
On Fri, 6 Feb 2004 23:37:25 -0800
"Alessandro Pinto" <ap****@eecs.berkeley.edu> wrote:
Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the project
will be under development for the years to come)


www.wxwindows.org ?

br
db
Jul 22 '05 #2
Alessandro Pinto wrote:
Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the project
will be under development for the years to come)


www.wxwindows.org is your answer.

/David
Jul 22 '05 #3
Alessandro Pinto wrote:
Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the project will be under development for the years to come)


TCL/Tk has bindings for Ruby, Python, Perl, & doubtless others. It might
have a binding for C++.

Why are you using C++?

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces
Jul 22 '05 #4
Alessandro Pinto wrote:
Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the project
will be under development for the years to come)

Thanks

CIAO
Alessandro


Take a look at FLTK. www.fltk.org

--
Kees

Jul 22 '05 #5
Phlip wrote:
Alessandro Pinto wrote:

Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the
project
will be under development for the years to come)

TCL/Tk has bindings for Ruby, Python, Perl, & doubtless others. It might
have a binding for C++.

Why are you using C++?


The main reason is that I'm developing a synthesis software. For
performance reasons C or C++ are the most commonly used languages.
It woould be nice to have a graphical user interface and I want the
whole thing to be integrated within the same language.

Why should I use another language?

Thanks
Alessandro

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces

Jul 22 '05 #6
Cornelis Wessels wrote:
Alessandro Pinto wrote:
Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the
project
will be under development for the years to come)

Thanks

CIAO
Alessandro


Take a look at FLTK. www.fltk.org

You are the second person that suggest me to use FLTK. The only think I
don't like is the use of callbacks instead of messages (singnal and
slots in Qt terminology). I know that Qt is becoming a standard in the
commercial world and I was wandering if there is somenthing similar from
the free world.
I'm using WxWindows now and it seems good.

Thanks to you All

Alessandro
Jul 22 '05 #7
Alessandro Pinto wrote:
You are the second person that suggest me to use FLTK. The only think I
don't like is the use of callbacks instead of messages (singnal and
slots in Qt terminology). I know that Qt is becoming a standard in the
commercial world and I was wandering if there is somenthing similar from
the free world.
Qt relies on MOC, IIRC, which is a strap-on addition to C++ providing
"signals and slots" messages. This is yet another example of folks using C++
for GUI code and finding themselves re-inventing dynamic typing. But I
suspect I could have re-invented it without writing new C++ keywords.
I'm using WxWindows now and it seems good.
Write unit tests on all your code, including GUI code, and see about using
the Model View Controller pattern. It might give you what "signals and
slots" was giving you.

But props for demanding real Free Software.
Why should I use another language?


Folks sometimes adopt a technology because "everyone else was doing it", not
because they thought thru the options. So I request they reveal the thought
process. I'm leery of your "performance reasons" - the GUI hardly toasts CPU
cycles these days. But "integrated within the same language" is always a
good one.

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces


Jul 22 '05 #8
"Alessandro Pinto" <ap****@eecs.berkeley.edu> wrote
I know that Qt is becoming a standard in the commercial world
and I was wandering if there is somenthing similar from the free
world.


Yes, Qt.

Qt is available with a free non-commercial license that allows you to write
open-source software, freeware, etc. and, I assume, software for your personal
non-commercial use.

Now, as it's been said many times before, GUI toolkits are OFF-TOPIC for this
newsgroup. This newsgroup is about the standard C++ language, not about
compilers or libraries or newfangled languages or operating systems.

Claudio Puviani
Jul 22 '05 #9
Claudio Puviani wrote:
I know that Qt is becoming a standard in the commercial world
and I was wandering if there is somenthing similar from the free
world.
Yes, Qt.

Qt is available with a free non-commercial license that allows you to

write open-source software, freeware, etc. and, I assume, software for your personal non-commercial use.
That's "free" as in "beer", not "speech". There's a slight (but utterly
off-topic) difference.
Now, as it's been said many times before, GUI toolkits are OFF-TOPIC for this newsgroup. This newsgroup is about the standard C++ language, not about
compilers or libraries or newfangled languages or operating systems.


Beer is off topic on this newsgroup too! Snarl snarl gnash gnash!

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces
Jul 22 '05 #10
Claudio Puviani wrote:
"Alessandro Pinto" <ap****@eecs.berkeley.edu> wrote
I know that Qt is becoming a standard in the commercial world
and I was wandering if there is somenthing similar from the free
world.

Yes, Qt.

Qt is available with a free non-commercial license that allows you to write
open-source software, freeware, etc. and, I assume, software for your personal
non-commercial use.

Now, as it's been said many times before, GUI toolkits are OFF-TOPIC for this
newsgroup. This newsgroup is about the standard C++ language, not about
compilers or libraries or newfangled languages or operating systems.

Claudio Puviani

I don't want to be polemic. As stated:

"[Off Topic] The article must primarily concern itself with some issue
related to the C++ language, and be pertinent to the global C++
Community. Topics include the syntax and semantics of the language,
discussion of tricks and techniques, case studies and example programs,
issues of software engineering related to C++, issues of software
management related to C++, issue of design philosophy related to C++,
design patterns related to C++, etc. In particular, articles pertaining
solely to the C subset of the C++ language are off-topic and belong in C
newsgroups, such as comp.lang.c.moderated.

Articles that do not pertain directly to the issues listed above, or
articles that target a particular geographic area (e.g. announcements
for C++ classes in California), or a particular institution (e.g. C++
Compilers are available at a reduced rate to employees of XYZ Corp.), or
any other limited segment of the C++ community are liable to rejection.
Short announcements of new books and events are currently the only
acceptable articles of a commercial nature."

There is nothing concerning GUI in C++. I think my question fits in
"issues of software engineering related to C++".

Thanks to to all of you that have provided USEFUL answers.

Alessandro Pinto
Jul 22 '05 #11
Alessandro Pinto wrote:
There is nothing concerning GUI in C++. I think my question fits in
"issues of software engineering related to C++".

Thanks to to all of you that have provided USEFUL answers.


Some folks like a definition of "on topic" small enough to fit in their
brains.

If the question is "what relatively portable library does X", then the
answer should be "try libraries A,B or C, but their forums can give the best
answers for questions directly about them."

Posting to the narrowest technical newsgroup is always good - after the
topic has been narrowed.

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces
Jul 22 '05 #12
Try wxWindows (www.wxWindows.org).
It's free (even less restrictive than LGPL I think).
It gives native look n feel. I've tried it on Windows and Solaris with
satisfaction.

Duncus

"Alessandro Pinto" <ap****@eecs.berkeley.edu> wrote in message
news:HH******************@newssvr29.news.prodigy.c om...
Phlip wrote:
Alessandro Pinto wrote:

Dear All,
I'm looking for C++ GUI toolkit which is free and standard.
I'm currently using the Fox toolkit.

The features I'm looking for are:
-Platform independence
-Reasonable users support
-Some guarantees on the toolkit llifetime (it is important that the


project
will be under development for the years to come)

TCL/Tk has bindings for Ruby, Python, Perl, & doubtless others. It might
have a binding for C++.

Why are you using C++?


The main reason is that I'm developing a synthesis software. For
performance reasons C or C++ are the most commonly used languages.
It woould be nice to have a graphical user interface and I want the
whole thing to be integrated within the same language.

Why should I use another language?

Thanks
Alessandro

--
Phlip
http://www.xpsd.org/cgi-bin/wiki?Tes...UserInterfaces

Jul 22 '05 #13
"Duncus Colossus" <no****@nospam.com> wrote in message news:<c0**********@newshost.mot.com>...
Try wxWindows (www.wxWindows.org).
It's free (even less restrictive than LGPL I think).
It gives native look n feel. I've tried it on Windows and Solaris with
satisfaction.

I wouldn't recommend it particularly to non-expert C++ programmers, as
it was designed and written before modern compilers and techniques
became wide-spread. It is not exception-safe or type-safe, being full
of C-style casts from untyped (non-standard) container classes. The
justifications for these problems were understandable enough 5 years
ago, but today are somewhat questionable, and certainly likely to
encourage poor programming style.

Having said that however, it does do the job it was designed to do
pretty damn well.

Dylan
Jul 22 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

25
by: BJörn Lindqvist | last post by:
See: http://www.wxpython.org/quotes.php. especially: "wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard...
0
by: Chive Software | last post by:
Chive Software are pleased to announce a new version of its Apoc PDF Toolkit, part a of its Apoc suite of products. Apoc PDF Toolkit is a high quality software component that developers can add...
43
by: Steven T. Hatton | last post by:
Now that I have a better grasp of the scope and capabilities of the C++ Standard Library, I understand that products such as Qt actually provide much of the same functionality through their own...
3
by: Dark Cowherd | last post by:
Hi, Multiple threads running currently about reinventing the wheel, Multiple GUI's etc. Being able to write a usable GUI is key task for all programmers today - read. ESR's...
2
by: zorro | last post by:
Hi, I use the Visual C++ .NET 2003 Standard Edition which doesn't include an optimizing compiler. But Microsoft released the VC++ 2003 Toolkit (http://msdn.microsoft.com/visualc/vctoolkit2003/)...
1
by: noleander | last post by:
Ive got Vis C++ 2003 standard edition. I want to optimize my application for speed (use the /O2 directive). The "optimization" field in my Project Properties window shows /O2 (in my Release...
6
by: Rental | last post by:
I'm having the sam problem as described below with the Localization toolkit. Does anyone know if there is a solution to this problem. --->When attempting to generate resource dlls with...
24
by: invitro81 | last post by:
Hello I've recently learnt python and I do love it! I congratulate all those geeks who produce this nice language; well, because I could be called a nearby newbee I've decided to improve my...
37
by: Michael Palmer | last post by:
As anyone knows, the state of Python GUI programming is a little fractured at this time, with many toolkits, wrappers and meta-wrappers dead and alive, with or without documentation. I've come...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.