Hi,
I am new to Python and am trying to write a little front end to
another application in Python.
What I want is to have a gui pop up listing some items with several
buttons. The guts of the program I am not having any trouble with but
the GUI part I am (or more accurately, the transition between GUI
pieces).
The first GUI that pops up lists some groups in a listbox and gives
the user the choice to create a new group, open a group, rename the
group, or delete the group. The new group and rename group buttons
pop up a dialog gui asking for the name/new name. The Open Group is
to open another GUI listing projects within that group in a list with
similar options (New Project, Open Project, Rename Project, Delete
Project).
My question is, how should I create all these GUIs? Should each GUI
be its own class with its own __init__? Then is the first GUI the
root (how I have it set up now) and all other GUIs using Toplevel()?
I hope this makes sense (because it only sort of makes sense in my
head).
THanks for any suggestions. 10 1946
On Apr 23, 9:52 am, KDawg44 <KDaw...@gmail.comwrote:
Hi,
I am new to Python and am trying to write a little front end to
another application in Python.
What I want is to have a gui pop up listing some items with several
buttons. The guts of the program I am not having any trouble with but
the GUI part I am (or more accurately, the transition between GUI
pieces).
The first GUI that pops up lists some groups in a listbox and gives
the user the choice to create a new group, open a group, rename the
group, or delete the group. The new group and rename group buttons
pop up a dialog gui asking for the name/new name. The Open Group is
to open another GUI listing projects within that group in a list with
similar options (New Project, Open Project, Rename Project, Delete
Project).
My question is, how should I create all these GUIs? Should each GUI
be its own class with its own __init__? Then is the first GUI the
root (how I have it set up now) and all other GUIs using Toplevel()?
I hope this makes sense (because it only sort of makes sense in my
head).
THanks for any suggestions.
Hi,
You should be able to create one main window as "root" and use
standard dialogs for the dialogs you mentioned. As for the "Open
Group" button, you might use a tree widget instead of opening another
window. You could put the tree in a splitter window or something and
it might look nicer. Of course, you can do another window, but it
would be a custom, hand-coded window and NOT a standard dialog. That
would mean that it would indeed be another class with its own
"__init__".
You can set both the standard dialogs and your custom one to
"ShowModal" and then you shouldn't need to use Toplevel().
I am assuming you are using Tkinter for your front-end GUI. You might
also take a gander at wxPython. It has an excellent demo you could
download and it might give you some additional ideas for
implementation: www.wxpython.org .
Mike
On Apr 23, 9:52 am, KDawg44 <KDaw...@gmail.comwrote:
Hi,
I am new to Python and am trying to write a little front end to
another application in Python.
What I want is to have a gui pop up listing some items with several
buttons. The guts of the program I am not having any trouble with but
the GUI part I am (or more accurately, the transition between GUI
pieces).
The first GUI that pops up lists some groups in a listbox and gives
the user the choice to create a new group, open a group, rename the
group, or delete the group. The new group and rename group buttons
pop up a dialog gui asking for the name/new name. The Open Group is
to open another GUI listing projects within that group in a list with
similar options (New Project, Open Project, Rename Project, Delete
Project).
My question is, how should I create all these GUIs? Should each GUI
be its own class with its own __init__? Then is the first GUI the
root (how I have it set up now) and all other GUIs using Toplevel()?
I hope this makes sense (because it only sort of makes sense in my
head).
THanks for any suggestions.
I am assuming you are using Tkinter for your GUI front-end. You should
be able to just use standard dialog boxes for your "new group" and
"rename group" dialogs and a custom hand-coded dialog for the other
one. All three can be called with ShowModal() instead of Toplevel().
And yes, the custom dialog would work best if you made it into a
separate class.
You could also put that information for the GUI that list projects
into a "tree" widget of some sort, maybe with a splitter window. I
haven't had much luck with Tkinter's tree widgets though. PMW and Tix
both have rather poor docs unless you enjoy man pages. You might check
out wxPython instead. It has an excellent demo that is very good at
showing you not only what all it can do, but how it is done: www.wxpython.org.
Good luck!
Mike
On Apr 23, 1:44 pm, kyoso...@gmail.com wrote:
On Apr 23, 9:52 am, KDawg44 <KDaw...@gmail.comwrote:
Hi,
I am new to Python and am trying to write a little front end to
another application in Python.
What I want is to have a gui pop up listing some items with several
buttons. The guts of the program I am not having any trouble with but
the GUI part I am (or more accurately, the transition between GUI
pieces).
The first GUI that pops up lists some groups in a listbox and gives
the user the choice to create a new group, open a group, rename the
group, or delete the group. The new group and rename group buttons
pop up a dialog gui asking for the name/new name. The Open Group is
to open another GUI listing projects within that group in a list with
similar options (New Project, Open Project, Rename Project, Delete
Project).
My question is, how should I create all these GUIs? Should each GUI
be its own class with its own __init__? Then is the first GUI the
root (how I have it set up now) and all other GUIs using Toplevel()?
I hope this makes sense (because it only sort of makes sense in my
head).
THanks for any suggestions.
I am assuming you are using Tkinter for your GUI front-end. You should
be able to just use standard dialog boxes for your "new group" and
"rename group" dialogs and a custom hand-coded dialog for the other
one. All three can be called with ShowModal() instead of Toplevel().
And yes, the custom dialog would work best if you made it into a
separate class.
You could also put that information for the GUI that list projects
into a "tree" widget of some sort, maybe with a splitter window. I
haven't had much luck with Tkinter's tree widgets though. PMW and Tix
both have rather poor docs unless you enjoy man pages. You might check
out wxPython instead. It has an excellent demo that is very good at
showing you not only what all it can do, but how it is done:www.wxpython.org.
Good luck!
Mike
Sorry about the dual posting. This thing isn't posting correctly for
me today.
Mike
On Apr 23, 1:44 pm, kyoso...@gmail.com wrote:
On Apr 23, 9:52 am, KDawg44 <KDaw...@gmail.comwrote:
Hi,
I am new to Python and am trying to write a little front end to
another application in Python.
What I want is to have a gui pop up listing some items with several
buttons. The guts of the program I am not having any trouble with but
the GUI part I am (or more accurately, the transition between GUI
pieces).
The first GUI that pops up lists some groups in a listbox and gives
the user the choice to create a new group, open a group, rename the
group, or delete the group. The new group and rename group buttons
pop up a dialog gui asking for the name/new name. The Open Group is
to open another GUI listing projects within that group in a list with
similar options (New Project, Open Project, Rename Project, Delete
Project).
My question is, how should I create all these GUIs? Should each GUI
be its own class with its own __init__? Then is the first GUI the
root (how I have it set up now) and all other GUIs using Toplevel()?
I hope this makes sense (because it only sort of makes sense in my
head).
THanks for any suggestions.
I am assuming you are using Tkinter for your GUI front-end. You should
be able to just use standard dialog boxes for your "new group" and
"rename group" dialogs and a custom hand-coded dialog for the other
one. All three can be called with ShowModal() instead of Toplevel().
And yes, the custom dialog would work best if you made it into a
separate class.
You could also put that information for the GUI that list projects
into a "tree" widget of some sort, maybe with a splitter window. I
haven't had much luck with Tkinter's tree widgets though. PMW and Tix
both have rather poor docs unless you enjoy man pages. You might check
out wxPython instead. It has an excellent demo that is very good at
showing you not only what all it can do, but how it is done:www.wxpython.org.
Good luck!
Mike
Thanks very much for your suggestions. I think i will look into
wxPython, though I will finish this little app in tkinter since I am
almost done with it.
THanks for your help.
On Apr 23, 12:26 pm, kyoso...@gmail.com wrote:
I am assuming you are using Tkinter for your front-end GUI. You might
also take a gander at wxPython. It has an excellent demo you could
download and it might give you some additional ideas for
implementation:www.wxpython.org.
Mike
Hi,
I've heard about that excellent demo, but I downloaded wxPython, and I
don't even know where to look for it. Any pointers?
On Apr 23, 4:25 pm, 7stud <bbxx789_0...@yahoo.comwrote:
On Apr 23, 12:26 pm, kyoso...@gmail.com wrote:
I am assuming you are using Tkinter for your front-end GUI. You might
also take a gander at wxPython. It has an excellent demo you could
download and it might give you some additional ideas for
implementation:www.wxpython.org.
Mike
Hi,
I've heard about that excellent demo, but I downloaded wxPython, and I
don't even know where to look for it. Any pointers?
Never mind. Got it:
$ python /Developer/Examples/wxWidgets/wxPython/demo/demo.py
Uhhmm...how are you supposed to close a ShapedWindow(under
Miscellaneous)?
On Apr 23, 5:04 pm, Kevin Haynes <kevin.hay...@auxilior.co.ukwrote:
Hello
I was a python newbie just a month ago and found the following books a great
help.
Beginning Python: From Novice to Professional (Beginning: From Novice to
Professional) by Magnus L. Hetland (Paperback - 29 Sep 2005)http://www.amazon.co.uk/Beginning-Py...ional/dp/15905...
WxPython in Action by Noel Rappin and Robin Dunn (Paperback - 30 Mar 2006)http://www.amazon.co.uk/WxPython-Act...1932394621/ref...
Kevin
On Monday 23 April 2007, 7stud wrote:
Uhhmm...how are you supposed to close a ShapedWindow(under
Miscellaneous)?
I am reading both now, and I would not recommend either one. If you
just skim over the examples and don't play with them, you might
mistakenly believe you know what's going on, but if you actually try
the examples and alter them here and there to figure out how things
really work, you will discover all the mistakes and gaps in both
books.
On Apr 23, 6:36 pm, 7stud <bbxx789_0...@yahoo.comwrote:
On Apr 23, 5:04 pm, Kevin Haynes <kevin.hay...@auxilior.co.ukwrote:
Hello
I was a python newbie just a month ago and found the following books a great
help.
Beginning Python: From Novice to Professional (Beginning: From Novice to
Professional) by Magnus L. Hetland (Paperback - 29 Sep 2005)http://www.amazon.co.uk/Beginning-Py...ional/dp/15905...
WxPython in Action by Noel Rappin and Robin Dunn (Paperback - 30 Mar 2006)http://www.amazon.co.uk/WxPython-Act...1932394621/ref...
Kevin
On Monday 23 April 2007, 7stud wrote:
Uhhmm...how are you supposed to close a ShapedWindow(under
Miscellaneous)?
I am reading both now, and I would not recommend either one. If you
just skim over the examples and don't play with them, you might
mistakenly believe you know what's going on, but if you actually try
the examples and alter them here and there to figure out how things
really work, you will discover all the mistakes and gaps in both
books.
Beginning Python is a good reference, but there's not much for
examples, other than the fairly advanced stuff in the back of the
book. "Python Programming for the Absolute Beginner" by Dawson was
much more fun since you get to create games in python. I'm not sure
why you don't like the wxPython one. It was a nice reference. But
maybe I liked it as I started out learning C++ and wxPython has
similar idioms.
If you want to learn the nuts and bolts of the Python language, you'll
need to read "Programming Python" by Lutz or the really in-depth book
"Core Python Programming" by Chun, which (unfortunately) has lots of
info, but not much code.
The current wxPython demo is here: http://wxpython.org/download.php
(about a third of the way down)
Mike This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: post400 |
last post by:
Hi ,
I was just wondering ( yeah I know it's not the first time this
question pops up )
what would be the best 2 or 3 books for someone who wants to learn
Python , already experienced in other...
|
by: Ray |
last post by:
I want to jump in a learn Python. I have spent about a day looking at
editors and IDEs and (probably prematurely) selected jEdit to work in.
I have downloaded Python and jEdit. I have been going...
|
by: AnOvercomer02 |
last post by:
Hi. What is the best way to learn Python? None of the local schools
near me teach any courses on the topic. Thanks.
--
Cody Houston
AnOvercomer02@webtv.net
|
by: Falc |
last post by:
Hi there...
I have been looking at learning Python, so far it looks like an
absolutely grat language. I am having trouble finding some free
resources to learn Python from. I am on windows and...
|
by: AlbaClause |
last post by:
I'm just learning Python, and I have a question about os.path.join(dirpath,
name) and its use. Simply put, I haven't figured out how to use it.
I was looking through the Python reference...
|
by: arnuld |
last post by:
hai all,
i am standing on a "crossroad to C++". I am here in front of you as i
have a problem. i will be brief. Please do not think: "arnuld is sick",
i am really struggling & doing hard-work to...
|
by: dogatemycomputer |
last post by:
Greetings,
A friend of mine dropped off a copy of Sams Teach Yourself Python in
24 Hours published in 2000. I skimmed the first couple of chapters
looking for the interpreter version and the...
|
by: John Salerno |
last post by:
Just something that crosses my mind every time I delve into "Learning
Python" each night. Does anyone see any value in learning Python when you
don't need to for school, work, or any other reason?...
|
by: duli |
last post by:
Hi:
I would like recommendations for books (in any language, not
necessarily C++, C, python) which have walkthroughs for developing
a big software project ? So starting from inception, problem...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
|
by: DizelArs |
last post by:
Hi all)
Faced with a problem, element.click() event doesn't work in Safari browser.
Tried various tricks like emulating touch event through a function:
let clickEvent = new Event('click', {...
| |