A Beginner's Guide to Using pyGTK and Glade
In your button1_clicked() function, replace the print statement with:
self.logwindow.insert_at_cursor(data,len(data))
Now, whenever you click GO! the results are displayed in your window. By dividing your main window with a set of vertical panes, you can resize this window, if you like (Figure 9).
Unlike GTK v1, under GTK v2 a tree and a list basically are the same thing; the difference is the kind of store each of them uses. Another important concept is the TreeIter, which is a datatype used to store a pointer to a particular row in a tree or list. It doesn't offer any useful methods itself, that is, you can't ++ it to step through the rows of a tree or list. However, it is passed into the TreeView methods whenever you want to reference a particular location in the tree. So, for example:
import gobject
self.treeview=[2]self.wTree.get_widget("treeview1")
self.treemodel=gtk.TreeStore(gobject.TYPE_STRING,
gobject.TYPE_STRING)
self.treeview.set_model(self.treemodel)
defines a tree model with two columns, each containing a string. The following code adds some titles to the top of the columns:
self.treeview.set_headers_visible(gtk.TRUE)
renderer=gtk.CellRendererText()
column=gtk.TreeViewColumn("Name",renderer, text=0)
column.set_resizable(gtk.TRUE)
self.treeview.append_column(column)
renderer=gtk.CellRendererText()
column=gtk.TreeViewColumn("Description",renderer,
text=1)
column.set_resizable(gtk.TRUE)
self.treeview.append_column(column)
self.treeview.show()
You could use the following function to add data manually to your tree:
def insert_row(model,parent,
firstcolumn,secondcolumn):
myiter=model.insert_after(parent,None)
model.set_value(myiter,0,firstcolumn)
model.set_value(myiter,1,secondcolumn)
return myiter
Here's an example that uses this function. Don't forget to add treeview1 to your glade file, save it and copy it to your local directory:
model=self.treemodel
insert_row(model,None,'Helium',
'Control Current Helium')
syscallIter=insert_row(model,None,
'Syscall Redirection',
'Control Current Syscall Proxy')
insert_row(model,syscallIter,'Syscall-shell',
'Pop-up a syscall-shell')
The screenshot in Figure 10 shows the results. I've replaced the TextView with a TreeView, as you can see.
A list is done the same way, except you use ListStore instead of TreeStore. Also, most likely you will use ListStore.append() instead of insert_after().
A dialog differs from a normal window in one important way—it returns a value. To create a dialog box, click on the dialog box button and name it. Then, in your code, render it with [3]gtk.glade.XML(gladefile,dialogboxname). Then call get_widget(dialogboxname) to get a handle to that particular widget and call its run() method. If the result is gtk.RESPONSE_OK, the user clicked OK. If not, the user closed the window or clicked Cancel. Either way, you can destroy() the widget to make it disappear.
One catch when using dialog boxes: if an exception happens before you call destroy() on the widget, the now unresponsive dialog box may hang around, confusing your users. Call widget.destroy() right after you receive the response and all the data you need from any entry boxes in the widget.
Some day, you probably will write a pyGTK application that uses sockets. When doing so, be aware that while your events are being handled, the application isn't doing anything else. When waiting on a socket.accept(), for example, you are going to be stuck looking at an unresponsive application. Instead, use gtk.input_add() to add any sockets that may have read events to GTK's internal list. This allows you to specify a callback to handle whatever data comes in over the sockets.
One catch when doing this is you often want to update your windows during your event, necessitating a call to gtk.mainiteration(). But if you call gtk.mainiteration() while within gtk.mainiteration(), the application freezes. My solution for CANVAS was to wrap any calls to gtk.mainiteration() within a check to make sure I wasn't recursing. I check for pending events, like a socket accept(), any time I write a log message. My log function ends up looking like this:
def log(self,message,color):
"""
logs a message to the log window
right now it just ignores the color
argument
"""
message=message+"\n"
self.logwindow.insert_at_cursor(message,
len(message))
self.handlerdepth+=1
if self.handlerdepth==1 and \
gtk.events_pending():
gtk.mainiteration()
self.handlerdepth-=1
return
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- A Topic for Discussion - Open Source Feature-Richness?
- Drupal Is a Framework: Why Everyone Needs to Understand This
- Home, My Backup Data Center
- What's the tweeting protocol?
- New Products
- One Hand Slapping
- Readers' Choice Awards
- RSS Feeds
- Reply to comment | Linux Journal
7 hours 6 min ago - Reply to comment | Linux Journal
9 hours 39 min ago - Reply to comment | Linux Journal
10 hours 56 min ago - great post
11 hours 31 min ago - Google Docs
11 hours 54 min ago - Reply to comment | Linux Journal
16 hours 42 min ago - Reply to comment | Linux Journal
17 hours 29 min ago - Web Hosting IQ
19 hours 3 min ago - Thanks for taking the time to
20 hours 39 min ago - Linux is good
22 hours 37 min ago
Enter to Win an Adafruit Prototyping Pi Plate Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Prototyping Pi Plate Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- Next winner announced on 5-21-13!
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.






Comments
glade c
how can be get the previous window on click of a button on current window in glade c???
Visibility
It seems with glade-3 visibility of GtkWindow is off by default. That means, if you do the steps outlined here and run the program you exactly see nothing. To turn visibility on, select the GtkWindow (serverinfo) in the tree view in glade, select the Common tab, and set Visible to Yes. Trivial, yes, but took me some time to find in this property zoo.
How to connect two windows in pygtk
I am recently working with python. I want to create a GUI where i want to appear one window after clicking on the button of another window. How can I do that?
And after calling one window I want the control should be gone to next window and it shouldn't remain on initial one.
Plz can anybody help me?
How to connect two windows in pygtk
I am recently working with python. I want to create a GUI where i want to appear one window after clicking on the button of another window. How can I do that?
And after calling one window I want the control should be gone to next window and it shouldn't remain on initial one.
Plz can anybody help me?
www.experl.com
... and you thought this guy _only_ did cutting-edge comsec research?
http://www.experl.com
starting appgui.py
rudi@snjo:~$ Prosjekter/prosjekt1/src/appgui.py
(appgui.py:5573): libglade-WARNING **: could not find glade file 'project1.glade'
Traceback (most recent call last):
File "Prosjekter/prosjekt1/src/appgui.py", line 66, in ?
app=appgui()
File "Prosjekter/prosjekt1/src/appgui.py", line 35, in __init__
self.wTree=gtk.glade.XML (gladefile,windowname)
RuntimeError: could not create GladeXML object
check the path of the glade file
same as Subject.
Heh
... and you thought this guy _only_ did cutting-edge comsec research?
Code???
It would be nice to know what to do with the bits of code your pasting in the tutorial.
As it is your pasting the code and saying 'hey, this is a piece of the program, goodluck with it!'
How are beginners like myself supposed to know where to place this code?
Other than that nice tutorial, for as far as I was able to follow it
Im getting Syntax Error
Im getting Syntax Error at
pygtk.require ...
already installed pygtk at ubuntu 6.06, including devel package... :<
ok now... new problem: if i
ok now... new problem: if i try to contact google.com it works, but if i try www.google.com it fails:
GtkWarning: gtk_text_buffer_emit_insert: assertion `g_utf8_validate (text, len, NULL)' failed
self.logwindow.insert_at_cursor(data,len(data))
Same problem, found fix
See here:
http://www.mail-archive.com/pygtk@daa.com.au/msg17911.html
Re: A Beginner's Guide to Using pyGTK and Glade
here's the code for the first section with corrected indents and comments:
#!/usr/bin/env python import sys try: import pygtk #tell pyGTK, if possible, that we want GTKv2 pygtk.require("2.0") except: #Some distributions come with GTK2, but not pyGTK pass try: import gtk import gtk.glade except: print "You need to install pyGTK or GTKv2 ", print "or set your PYTHONPATH correctly." print "try: export PYTHONPATH=", print "/usr/local/lib/python2.2/site-packages/" sys.exit(1) #now we have both gtk and gtk.glade imported #Also, we know we are running GTK v2 class appgui: def __init__(self): """ In this init we are going to display the main serverinfo window """ gladefile="project1.glade" windowname="serverinfo" self.wTree=gtk.glade.XML (gladefile,windowname) # we only have two callbacks to register, but # you could register any number, or use a # special class that automatically # registers all callbacks. If you wanted to pass # an argument, you would use a tuple like this: # dic = { "on button1_clicked" : # (self.button1_clicked, arg1,arg2) , ... dic = { "on_button1_clicked" : self.button1_clicked, "on_serverinfo_destroy" : (gtk.mainquit) } self.wTree.signal_autoconnect (dic) return #####CALLBACKS def button1_clicked(self,widget): print "button clicked" # we start the app like this... app=appgui() gtk.mainloop()Re: A Beginner's Guide to Using pyGTK and Glade
hmm, the actual post doesn't look like the preview and tags don't work. well here are the major mistakes:
(add a comment) # (self.button1_clicked, arg1,arg2) , ...
(add an indent) dic = { "on_button1_clicked" :
Re: A Beginner's Guide to Using pyGTK and Glade
Wow, this is awesome!!!
I'm having just a couple problems though.
-How do you add keyboard shortcuts?
-Whenever I run the program from a different directory (i.e. "../file.py") it can't find the Glade file and dies. How do you tell Python to look in the same directory the .py file is in?
Whenever I run the program fr
Whenever I run the program from a different directory (i.e. "../file.py") it can't find the Glade file and dies. How do you tell Python to look in the same directory the .py file is in?
sys.path[0]is the path of the directory where the python script was found. So you could add (example):
import sysgladefile = sys.path[0] + "/" + "project1.glade"
Re: A Beginner's Guide to Using pyGTK and Glade
I fiddled around for some hours, but repeatedly got the following error:
I cost me quite some time to find out that the windowname used in your app has to be the same as the one given to the window in glade. Here's a posting on that issue: http://mail.python.org/pipermail/tutor/2003-September/025114.html
Maybe it's worth mentioning, it seems to me like some common pitfall and maybe it saves others time as well as frustration.
So, the following two entries have to be the same:
.glade file:
widget class="GtkWindow" id="window1"
.py file:
windowname="window1"
sebas.
Thanks! I wasted an hour
Thanks! I wasted an hour trying to figure this out.
Thank you :-)
Thank you .... :-)
I was also trapped in that ...
--
psk
libglade-CRITICAL error
Thanks a lot, i have been trying to figure out what was causing this error forever. I couldn't find the file glade-xml.c on my system, so i had no idea where to go. thanks again.
Thanks a lot ! I got the sam
Thanks a lot !
I got the same problem and could solve it now
Re: A Beginner's Guide to Using pyGTK and Glade
Sorry...first time ever with python here, and I can't seem to make this work. When I add the lines
self.logwindowview=self.wTree.get_widget("textview1")
self.logwindow=gtk.TextBuffer(None)
self.logwindowview.set_buffer(self.logwindow)
I get an error when I try to run it:
Traceback (most recent call last):
File "./main.py", line 44, in ?
app=appgui()
File "./main.py", line 30, in __init__
self.logwindowview.set_buffer(self.logwindow)
AttributeError: 'NoneType' object has no attribute 'set_buffer'
The same thing happens when I replace the initialization of logwindowview with self.logwindowview=gtk.glade.XML(gladefile,"textview1"), except instead of "Nonetype object" I get "gtk.glade.XML object" in the error. Am I missing something?
Re: A Beginner's Guide to Using pyGTK and Glade
me too. i stopped at that point.
Re: A Beginner's Guide to Using pyGTK and Glade
nevermind....apparently Glade didn't believe me when I said "Save." Problem fixed!
Speed ??
I am always curious, how fast is it in the end compared to c/gtk+ or tcl/tk or tcl/gtk+ ?
Re: Speed ??
I don't know for sure, but just a guess there's probably not a very big difference since all the drawing and socket handling is still in C somewhere under all the Python code; I wouldn't imagine this particular app to be very different from it's C counterpart.
Re: Speed ??
The answer is "Fast Enough."
I don't notice the difference between pyGTK and a normal GTK app. Obviously it doens't load up quite as quickly, since it has to load all of Python, but on a reasonably fast machine, you can't tell.
Dave Aitel
Immunity, Inc.
explanation confuses vertical and horizontal boxes
The text confuses vertical and horizontal boxes. This is probably obvious, but I don't want anyone to be confused when the text says horizontal box when referring to figure 2, when it is in fact a vertical box. The text for figure 3 says vertical box but should say horizontal box.
Re: explanation confuses vertical and horizontal boxes
I was wondering about that!
MacOS
What about MacOs X?
Re: MacOS
as long as you have gtk and python installed (via fink or from source) and some sort of X server, it shouldn't be a problem
Re: MacOS
I've seen various GTK+ progs on Mac OS X, I'm sure it's possible.
Re: A Beginner's Guide to Using pyGTK and Glade
I was just discovering pyGtk and marvelous pyGlade, this quite complete and simple introduction comes at the right time ! (I just found a pyGlade tutorial which was too simple and written for glade1, and pyGtk faq is quite chaotic (that's also fun))
I like the eleguance of such a solution.
I would be interested in knowing how to pack a python application in a win32 installer.
thanks.
Alex
Re: A Beginner's Guide to Using pyGTK and Glade
Greate article, I was just about to start writing a ton of threading code since I had never heard of input_add(), thanks for saving me the trouble.
I think the time for Python based GTK2 apps is now. Two, or even one, year ago I wouldn't have chosen Python for my project because the dependencies were too many. But since Red Hat now codes all their configuration utilities with pyGTK2 I am confident that many will already have all the libraries installed and that the language bindings will continue to be maintained. If distributed properly there is no difference between a GTK app done in C or python from the end users point of view, as it should be.
Re: A Beginner's Guide to Using pyGTK and Glade
I'm getting an error when running.
First I think the following line should have been commented out.
(self.button1_clicked, arg1,arg2) , ...
Second I'm getting an the following error.
File "./serverinfo.py", line 47
self.wTree.signal_autoconnect (dic)
^
SyntaxError: invalid syntax
Any Ideas, at first I typed everything in. Thinking there must have been a typo somewhere, I copied and pasted from the site and still get that error.
Thanks,
John R. Tipton
I had a problem like this...
I had a problem like this and it was that I didn't finsh the dictionary on the line before off with a '}' . Maybe that's your problem.
Re: A Beginner's Guide to Using pyGTK and Glade
remember: indention matters in python.
the lines
dict = {...
self.wTree.signal_autoconnect (dic)
should be indented same as the
self.wTree=gtk.glade.XML (gladefile,windowname)
before
Re: A Beginner's Guide to Using pyGTK and Glade
Another option is to get the .tgz file from the ftp site mentioned at the end.
The code in the article (both online and in print) has been through some
sort of formatter which seems to not like Python..
Re: A Beginner's Guide to Using pyGTK and Glade
So how involved is it to roll out python, pygtk, gtk2 and your application for clients who use windows and have none of that installed? Is it a case of it being better for you to do it yourself or is there a neat automated way one could create an "installer"? I was going to use python + pygame for a recent project, but ended up doing it in C for ease of distribution (windows ppl just download a binary and run it).
Nick
Re: A Beginner's Guide to Using pyGTK and Glade
Personally, I make my clients "Do it themselves". This currently involves downloading three executables from public websites, and double-clicking on each of them in turn.
In other words, it is extremely easy. It does take a few megs, but we've all got a few megs to spare for Python, right?
There is an annoying gotcha or two with Win32, of course. My current favorite is that Win32 will let you listen on one port twice in a row. Aside from that minor issue though, the Win32 CANVAS (which is what the article is based on) runs exactly the same as the Linux CANVAS. This was an impotant design consideration for me when I started the project.
Dave Aitel
Immunity, Inc.
Re: A Beginner's Guide to Using pyGTK and Glade
"just for next time". Pygame games are easily turned into standalone binaries. If you use one of the free "installer" programs, no one will ever know it was written in python. There are already "shareware" style games written in python for windows users. examples? click and play!
SolarWolf (my humble game, exe installer)
http://www.pygame.org/shredwheat/solarwolf/
BaseGolf (a shareware one, exe installer)
http://alitius.com/games/basegolf/
Pathological (new retro puzzler, zipped exe)
http://pathological.sourceforge.net/
These were all done using the "py2exe" tool and various packaging/installer tools.
Re: A Beginner's Guide to Using pyGTK and Glade
Wow! They must have used a time machine to travel to the future to post this!
Re: A Beginner's Guide to Using pyGTK and Glade
Their dates have been wrong for years. They don't seem to care.
I thought it was funny the first time I posted the same crack, but everybody else ignored me, and I nobody's ever fixed it.
Anyways, welcome to Linux Journal, dude.
~Bitterman~
Re: A Beginner's Guide to Using pyGTK and Glade
This is a sample article from the September issue, so its official date is September 1. Magazines generally put out a given month's issue during the previous month. Why? Tradition.
And yes, we're going to publish the Linux drivers for the time machine.
Re: A Beginner's Guide to Using pyGTK and Glade
If you're considering writing an app. for GTK+ 1.2, keep in mind that the Python bindings for GTK+ 2 are actively maintained. If you encounter a bug in the old bindings, of which I'm sure there are a few, they will not likely be fixed.
A cool feature of the latest PyGTK release, 1.99.17, is support for custom widgets. GLADE's widget palette isn't complete, so you can add a placeholder with the name of a widget creation function. I use this to embed gnome-terminal's VTE terminal emulator widget.
You'll notice that GLADE's signal handler drop-down list contains the names of C functions, like gtk_widget_show(). You can take advantage of this by writing Python functions with the same name. I frequently use the following functions:
Define these before the call to signal_autoconnect() function and you can pass it the value of the built-in locals() function. No need to write your own mapping dictionary.
PyGTK is good stuff. If you've ever seen a GTK+ program written in C, you'll appreciate how elegant a comparable Python can be.
embed terminal in GTK window
You mention that
I have tried finding system documentation as well as googled for implementations of python-vte and the use of vte_terminal_new() but there are no examples at the time of writing.
Please elaborate with a brief example of how to embed a terminal in a GTK window.
Any chance of elaborating
Any chance of elaborating with a quick example of the glade file and initial python code.
Re: A Beginner's Guide to Using pyGTK and Glade
Can anyone can give an example of how to create a new widget using
custom widget
Re: A Beginner's Guide to Using pyGTK and Glade
One clarification regarding signal_autoconnect(): if you write straight-line procedural code, as you are likely to do when starting out, you can define your handler functions at the top level and pass locals() to signal_connect(). For example:
If your handlers are in a class, as in this article, you can pass self to signal_autoconnect(). For example: