473,657 Members | 2,407 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2481
db
On Fri, 6 Feb 2004 23:37:25 -0800
"Alessandro Pinto" <ap****@eecs.be rkeley.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 "performanc e 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.be rkeley.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

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

Similar topics

25
3345
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 Python GUI toolkit is that Tkinter was there first." - Guido van Rossum Guess, that answers my question, but isn't "Tkinter was there first" a very bad answer? :) It is kinda ugly too, so I wonder why it can't be replaced? Or maybe another GUI...
0
1655
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 to their applications in order to manipulate existing PDF documents and create new PDF documents. Developed using Microsoft's ..NET environment, this 100% managed code toolkit is compatible with any .NET application such as ASP.NET applications,...
43
4965
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 libraries. I'm not sure if that's a good thing or not. AFAIK, most of Qt is compatable with the Standard Library. That is, QLT can interoperate with STL, and you can convert back and forth between std::string and Qt::QString, etc. Are there any...
3
1306
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 http://www.catb.org/~esr/writings/cups-horror.html And look at ESR's reason to come over to Python - he wanted to write a GUI !!! I love the Delphi Environment and the Python language.
2
1496
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/) which provides an optimizing compiler. Is it possible to replace the original "Standard" compiler with this one ? How could I do this ?
1
1215
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 build) but it is dimmed out. I cannot change it. My BuildLog.htm file says "Optimization not available in Vis C++ standard edition. This seems to imply that I have to buy Vis C++ Professional edition to get optimization.
6
1981
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 --->LocalizationManagement.exe, I get an exception: --->Unable to generate loose file resources
24
2848
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 abilities by writing my own nice editor with python; so I've to choose among all those GUI toolkit's available there.. But I've no idea which one I should use to start with.. I've read that tkinter seems to be the de facto standart in the pyhon...
37
9043
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 across two projects that have the appeal of striving for simple, pythonic APIs: PyGUI and wax. The latter is a wrapper around wxPython. It is lacking documentation but actually quite usable and concise. The other, PyGUI, has an even nicer API and...
0
8323
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8838
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8513
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7351
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4329
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1969
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1732
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.