473,625 Members | 2,649 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why is there no GUI-tools like this for Windows?

http://www.youtube.com/watch?v=PXpwC1o5AcI

I have done some GUI-programming for windows with Python but the
Tkinter interface sucked and while it is the only one I tried I got
the impression they are all the same.

It's amazing how retarded a lot of the stuff programmers do is.
Watcing that video, that is how it should be.

I can just do the layout with my mouse and then there is a program
that writes the code for me.
GUI-programming is hard for no reason. One good program then forever
easy...

Is there not something like this for Python/Windows? Is the Linux one
only for ruby or for any language?

Oh well im switching to Linux anyway and mostly write webapps but
still...
Jul 12 '08 #1
6 1572
On Sat, Jul 12, 2008 at 6:35 PM, maestro <no**********@y ahoo.sewrote:
http://www.youtube.com/watch?v=PXpwC1o5AcI

I have done some GUI-programming for windows with Python but the
Tkinter interface sucked and while it is the only one I tried I got
the impression they are all the same.

It's amazing how retarded a lot of the stuff programmers do is.
Watcing that video, that is how it should be.

I can just do the layout with my mouse and then there is a program
that writes the code for me.
There are several programs that allow you to that, there is one not
really nice for tkinter, GUI Builder, there are glade and gazpacho for
gtk, Qt Designer for qt, wxglade and xrc (and others) for wxwidgets.
There are probably others for each of the toolkits I described on the
previous sentence, but those are the most well known (or not known at
all in case of GUI Builder for tkinter).
GUI-programming is hard for no reason. One good program then forever
easy...

Is there not something like this for Python/Windows? Is the Linux one
only for ruby or for any language?
All the examples I mentioned previously works both in Linux and
Windows. Also, they tend to not be language dependent either, they
tend to save the user interface description to some format like XML,
which you can then use independently of language (as long as your
language has a lib for reading its format and doing proper
processing).
>
Oh well im switching to Linux anyway and mostly write webapps but
still...
--
http://mail.python.org/mailman/listinfo/python-list
Note: I didn't watch the video, if it presents something totally
unrelated to my answer, my bad then.

--
-- Guilherme H. Polo Goncalves
Jul 12 '08 #2
maestro wrote:
http://www.youtube.com/watch?v=PXpwC1o5AcI

I have done some GUI-programming for windows with Python but the
Tkinter interface sucked and while it is the only one I tried I got
the impression they are all the same.

It's amazing how retarded a lot of the stuff programmers do is.
Watcing that video, that is how it should be.

I can just do the layout with my mouse and then there is a program
that writes the code for me.
GUI-programming is hard for no reason. One good program then forever
easy...
I asked this question about a year ago,
and for what I was used to (Delphi),
I can tell you, the link to the video looks terrible clumsy !!
And indeed there's nothing like that for Python,
there are a few (already forgot their names),
but unfortunately I couldn't get any of them working reliable.
I now work with a little procedure (much simpler than XRC),
and I'm even more satisfied with it than with Delphi.
Here an example:
GUI = """
NB ,wx.Notebook ,style = wx.NO_BORDER
Panel1 ,PanelVer, 1 ,name = "Hello"
list1 ,wx.ListCtrl ,style = wx.LC_REPORT
Panel2 ,PanelVer, 11 ,name = "Page2"
window1 ,wx.Window
window2 ,wx.Window
"""
exec ( Create_wxGUI ( GUI ) )

cheers,
Stef
Is there not something like this for Python/Windows? Is the Linux one
only for ruby or for any language?

Oh well im switching to Linux anyway and mostly write webapps but
still...
--
http://mail.python.org/mailman/listinfo/python-list
Jul 12 '08 #3
maestro wrote:
I can just do the layout with my mouse and then there is a program
that writes the code for me.
GUI-programming is hard for no reason. One good program then forever
easy...

Is there not something like this for Python/Windows? Is the Linux one
only for ruby or for any language?
I only watched a small part of the video so I'm making some assumptions
about it's content. But there is nothing preventing you from using the
same(/similar) toolchain on windows, which I believe would include
python, pygtk, the gtk+ runtime, and glade -- last I checked all have
windows binary distributions.

To quote the glade website
"""
The user interfaces designed in Glade are saved as XML, and by using the
libglade library these can be loaded by applications dynamically as needed.

By using libglade, Glade XML files can be used in numerous programming
languages including C, C++, Java, Perl, Python, C#, Pike, Ruby, Haskell,
Objective Caml and Scheme. Adding support for other languages is easy too.
"""

HTH,
Marty
Jul 14 '08 #5
It seems the video is showing glade, which is also available for wx
under the name wxglade, I do not know whether it's available for
Windows. I think it should work because it itself is written in
Python. I personally prefer to code my GUI myself, so I can do looping
stuff with it, but that is just me.
Jul 14 '08 #6
On 2008-07-12 22:35:58 +0100, maestro <no**********@y ahoo.sesaid:
http://www.youtube.com/watch?v=PXpwC1o5AcI

I have done some GUI-programming for windows with Python but the
Tkinter interface sucked and while it is the only one I tried I got
the impression they are all the same.

It's amazing how retarded a lot of the stuff programmers do is.
Watcing that video, that is how it should be.

I can just do the layout with my mouse and then there is a program
that writes the code for me.
GUI-programming is hard for no reason. One good program then forever
easy...

Is there not something like this for Python/Windows? Is the Linux one
only for ruby or for any language?

Oh well im switching to Linux anyway and mostly write webapps but
still...
PyQt4 is available for Windows and lets you use the Qt Designer
application which is pretty good. Works well, you should take a look.
--
"I disapprove of what you say, but I'll defend to the death your right
to say it." - Voltaire

Jul 15 '08 #7

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

Similar topics

4
2709
by: NathanAllen | last post by:
First of all to let you know I am using the following compiler: Borland C++Builder 5.5.1 with Turbo Incremental Link 5.00 When I tried to make my first GUI drawing following Lawernceville Press's book it created an error in the compliation process: Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland E:\Gui.cpp: Warning W8004 E:\borland\Include\lvp\String.cpp 106: 'len' is assigned a value that is never used in function...
3
4210
by: Tuang | last post by:
I'd like to create my own mini "IDE" for working with several programming languages that provide interactive "toplevel" command line interpreters, such as Python, Ruby, Lisp, Scheme, OCaml, etc. (For those who haven't played with them, these languages -- unlike C, Java, C#, or Perl -- are designed to let you carry on an interactive conversation with them, so you can run each function in your app independently and interactively from a...
3
3677
by: Naveen Mukkelli | last post by:
Hi, I'm trying to update my GUI when an event is raised in my one of my dlls. my example code is: ------------------- In GUI: someLable.Text = " "; ---
1
2144
by: Ray | last post by:
If you see the sample page in ASP.NET Starter kit such as TimeEntry.aspx in ASP.NET Time tracker (VBVS), you will think the page is almost perfect. I try to use VS.NET IDE to create the same GUI, it is failed and never get the same result. Although I can create more simple GUI by VS.NET IDE. So my question is 1. Does Microsoft or someone else has other tool to create asp.net web page GUI? 2. How to create those asp.net web page GUI...
4
1436
by: sam | last post by:
Multi-languages GUI Does VB.net support any library for Mutli-languate GUI I am the first time to design multi-language GUI I needs to creat lots of form for different language Can you give some suggestions in order to decrease creating so many forms I met another problem. When my form1 switch to form2
36
4105
by: peter.mosley | last post by:
I am trying to learn GUI programming in Python, but have to confess I am finding it difficult. I am not an experienced programmer - just someone who from time to time writes small programs for my use. Over the years I have moved from GWBASIC to QBASIC to Visual Basic, and now trying to move across to a Linux platform. Python seems to be the best compromise between the limitations of command line basic programming and the total...
5
2122
by: koutoo | last post by:
I am new to python as I have been a VB programmer. I am used to the GUI interface, and was wondering if I had to choose between a GUI for Python, which one should I go with? Thanks. Kou
7
1759
by: pixiedustjt | last post by:
Hello, I'm currently working on the dreaded Inventory Program. I'm on part four and just learning GUIs. I need to modify the Inventory Program to use a GUI. In the GUI, it should display the information in my array one line at a time as well as the value of my entire inventory, additional feature and restocking fee. I was able to create the GUI, but I can't populate it with my array items. Any tips on getting my array information to...
1
2117
by: Perl Beginner | last post by:
Hello all, I have created a GUI box using Win32::GUI::Window and all i want to do is add a question mark icon in the window on the left, but i'm having trouble figuring that out. i know that using Win32::GUI::MessageBox has options that you can use such as MB_ICONQUESTION, MB_ICONEXCLAMATION, etc, but i don't see anything for Win32::GUI::Window. Any suggestions? Here is part of my code. the second window is the one that i want to put an...
19
2772
by: John Salerno | last post by:
Hey all. Just thought I'd ask a general question for my own interest. Every time I think of something I might do in Python, it usually involves creating a GUI interface, so I was wondering what kind of work you all do with Python that does *not* involve any GUI work. This could be any little scripts you write for your own benefit, or what you do at work, if you feel like talking about that! :) Thanks.
0
8251
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8635
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8352
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
8494
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
7178
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
6115
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
5570
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
4085
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
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.