473,800 Members | 2,368 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Good Looking UI for a stand alone application

Can someone recommend me a good API for writing a sexy looking (Rich UI like
WinForms) shrink wrap application

My requirement is that the application needs to look as good on Windows as
on the Apple Mac
Dec 16 '06 #1
21 3780
On 12/16/06, The Night Blogger <th************ *@gmail.comwrot e:
Can someone recommend me a good API for writing a sexy looking (Rich UI like
WinForms) shrink wrap application

My requirement is that the application needs to look as good on Windows as
on the Apple Mac
For my money (even though it's free!), you can't beat Dabo. It uses
the wxPython UI toolkit, so it looks great on Mac and Windows (Linux,
too), since it uses native UI widgets on each platform. They even have
tools to design your visual classes interactively.

Check it out at http://dabodev.com.
--

# p.d.
Dec 16 '06 #2
On 12/16/06, The Night Blogger <thenightblog.. .@gmail.comwrot e:
Can someone recommend me a good API for writing a sexy looking (Rich UI like
WinForms) shrink wrap application
My requirement is that the application needs to look as good on Windows as
on the Apple Mac
wxPython or something layered on it would be the way to go. I tried all
the popular toolkits (except qt) and nothing else comes close for cross
platform gui work. Don't let people persuade you otherwise, that caused
me a lot of trouble.

-Sandra

Dec 17 '06 #3
The Night Blogger <th************ *@gmail.comwrot e:
Can someone recommend me a good API for writing a sexy looking (Rich UI
like WinForms) shrink wrap application

No, because such a thing doesn't exist.
My requirement is that the application needs to look as good on Windows as
on the Apple Mac
Crossplatform GUIs are a myth, you *always* end up with a lowest common
denominator (aka Windows) which makes your application look like crap on
other platforms. And when the toolkit/framework only makes it look like
semi-crap, it makes it *feel* like crap.

Because, you know, user interfaces aren't only about the look but also
(and most importantly) the feel, and the lowest common denominator (aka
Windows) won't bring a Mac feel to your app.

Crossplatform toolkits/frameworks suck. All of them. No exception. If
you want your app to look *AND* feel great on all platform, abstract the
core of your application and embed it in platform native GUI code.

--
Luc Heinrich
Dec 17 '06 #4
Sandra-24 wrote:
On 12/16/06, The Night Blogger <thenightblog.. .@gmail.comwrot e:
>Can someone recommend me a good API for writing a sexy looking (Rich UI
like WinForms) shrink wrap application
>My requirement is that the application needs to look as good on Windows
as on the Apple Mac

wxPython or something layered on it would be the way to go. I tried all
the popular toolkits (except qt) and nothing else comes close for cross
platform gui work. Don't let people persuade you otherwise, that caused
me a lot of trouble.
Well, you should try qt too ;)

BTW, does wxWindow/wxPython have something that allows you to switch the OK
and Cancel button position according to the current machine GUI guidelines?

Dec 17 '06 #5
On Sun, 17 Dec 2006 09:37:04 +0100, lu*@honk-honk.com (Luc Heinrich)
wrote:
>Crossplatfor m toolkits/frameworks suck. All of them. No exception. If
you want your app to look *AND* feel great on all platform, abstract the
core of your application and embed it in platform native GUI code.
+1. Applications beyond very basic GUI's are better off rewriting the
GUI for each application, while keeping the business logic separate.
Even something as basic as QuickTime sucks on Windows.

I'd be curious to see the source code to Skype: I just installed the
Linux version, and it looks very nice. Maybe it was recompiled with
Kylix.
Dec 18 '06 #6
Vincent Delporte wrote:
On Sun, 17 Dec 2006 09:37:04 +0100, lu*@honk-honk.com (Luc Heinrich)
wrote:
>>Crossplatfo rm toolkits/frameworks suck. All of them. No exception. If
you want your app to look *AND* feel great on all platform, abstract the
core of your application and embed it in platform native GUI code.

+1. Applications beyond very basic GUI's are better off rewriting the
GUI for each application, while keeping the business logic separate.
Even something as basic as QuickTime sucks on Windows.
Read my second reply before reading that part again ;)
I'd be curious to see the source code to Skype: I just installed the
Linux version, and it looks very nice. Maybe it was recompiled with
Kylix.
They use QT. Back to read the first part of your post.

Dec 18 '06 #7
On Mon, 18 Dec 2006 01:23:10 +0100, Christophe Cavalaria
<ch************ *@free.frwrote:
>They use QT. Back to read the first part of your post.
It doesn't make much difference:
- QT is big, so even small apps carry a lot of baggage
- by not using the native widgets, you're dependent on that layer to
keep up with changes in the look & feel of the platform (eg. XP's
widgets that look different from previous widgets).

Bottom line: GUI apps are better off extracting the maximum amount of
logic into OS-agnostic code, and then rewrite the GUI for each
platform.

Even better: Considering that Windows has a 95% market share, make
doubly-sure that it makes financial sense to provide a cross-platform
GUI application (the server can be written in text mode, and can then
be available for multiple OS's with no major problem).
Dec 18 '06 #8
You could write it as a web app, with an executable which launches the
server and points a browser at it.

Python GUI work is a bit of a drag, really. One of the worst things
about it, IMHO.

-T
Vincent Delporte wrote:
On Mon, 18 Dec 2006 01:23:10 +0100, Christophe Cavalaria
<ch************ *@free.frwrote:
They use QT. Back to read the first part of your post.

It doesn't make much difference:
- QT is big, so even small apps carry a lot of baggage
- by not using the native widgets, you're dependent on that layer to
keep up with changes in the look & feel of the platform (eg. XP's
widgets that look different from previous widgets).

Bottom line: GUI apps are better off extracting the maximum amount of
logic into OS-agnostic code, and then rewrite the GUI for each
platform.

Even better: Considering that Windows has a 95% market share, make
doubly-sure that it makes financial sense to provide a cross-platform
GUI application (the server can be written in text mode, and can then
be available for multiple OS's with no major problem).
Dec 18 '06 #9
On 17 Dec 2006 21:20:14 -0800, "tl**********@g mail.com"
<tl**********@g mail.comwrote:
>You could write it as a web app, with an executable which launches the
server and points a browser at it.
Right, I was thinking of this too, but since the OP was talking of a
fat app...
>Python GUI work is a bit of a drag, really. One of the worst things
about it, IMHO.
But then, it was built for write text-based scripts. I assume someone
could take it, and turn it into a GUI-based solution for Windows, but
it's probably quite a lot of work, and maybe there just isn't anyone
willing to pay for it. It'd be cool, though to be able to just send
someone a 10KB GUI Python script and have it run in Windows natively
:-)
Dec 18 '06 #10

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

Similar topics

3
3180
by: Jimmy | last post by:
Besides having to install the entire .NET framework on an end user system, how can they use my application written on an XP professional machine using C# and Vasiual Basic from Visual Studio .NET 2003, if they are using some system that is Windows 98 or above but don't have the .NET framework?
16
3033
by: Roman Yankin | last post by:
Hello All, Is there a way to compile C# windows application as a stand alone program? In my univ class we don't have VS.NET installed and I need to have my executable running with out .NET environment. Is it possible? As i'm getting the following error:
3
965
by: KC | last post by:
I want to submit an HTTP request to a site but the site needs to think it's being POSTed from a form. How do I do that? -- -------- Ken Hunt 678-644-6036
1
2118
by: sholist | last post by:
I have an application that needs to conform to some finicky clients. The goal is to make the application an asp.net app and host it on the web for our clients which has many benefits as everyone knows. However, some clients will not be too happy about us hosting their data and would preffer that they deploy the applications to their desktops and host the database themseleves. So I have 2 delivery methods to contend with, but I require...
7
2888
by: driplet | last post by:
I am using MS VC++ 2005 Express Edition to make some windows application programs. I found that the exe files I built on one computer cannot be run on the other. Could any body please tell me how to make a stand alone exe file in MS VC++ 2005 Express Edition? If you also have experience in Borland C++ Builder on the same question, I will also appreciate you for your reply. Thank you!
2
2007
by: Zehra Ali | last post by:
I was wondering if anyone knew how one could go about developing a stand alone executable version of a web based application written in Java . Currently we are using Net beans platform. The website for the application is: (http://designadvisor.mit.edu/design/ ). I heard c# might be of some use. I would really appreciate any guidelines or references Thanks, Zehra
0
10505
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
10253
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
10035
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9090
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
7580
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
6813
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5471
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...
2
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2945
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.