View Online - One Document
View PDF Document
Download lyx Document - usually the most up to date
http://svn.majorsilence.com/pygtknotebook/
View edit history
I have decided to collect all of my notes and sample files as a book so I have one location to turn to when I want to remember how to do something. Basically I am using open source code to write an open source book. At the moment there is not much and it is only a very rough draft. There are many empty sections and many of my sources probably are not cited properly yet. Hopefully some day it will be in good shape.
My goal is to create a high quality PyGTK book that covers integrating PyGTK with other Linux technologies such as: GStreamer multimedia, clutter animation, cairo graphics, DBus interprocess communication, empathy instant messaging, webkit and embedded firefox. This is just a small sample of the things that I want to cover, and many of them I already do. However, this is only an incomplete first draft and will take time to finish, but I am putting it on the Internet now hoping it will be useful to someone other then myself.
I am currently writing this using lyx which is a GUI tool for latex. I find this a very easy to use tool and convenient for myself.
Send to peter@majorsilence.com all suggestions, ideas, corrections etc...
Comments
clutter.BehaviourRotate
on 8.5.4
class clutter.BehaviourRotate(Behaviour)
...
get_bounds(angle_start, angle_end)
get_bounds(angle_start, angle_end)
...
I imagine you meant set_bounds for one of them.
I will change that tonight.
I will change that tonight.
parentHwnd = self.container.window.handle,AttributeError: 'N
get following on Windows XP + IE7 + latest PyGTK + latest GTK+
Traceback (most recent call last):
File "H:\backup\code\enjoy-pygtk\broswer\t.py", line 166, in
gui = GUI()
File "H:\backup\code\enjoy-pygtk\broswer\t.py", line 61, in __init__
self.init_ie()
File "H:\backup\code\enjoy-pygtk\broswer\t.py", line 82, in init_ie
parentHwnd = self.container.window.handle
AttributeError: 'NoneType' object has no attribute 'handle'
http://www.majorsilence.com/pygtk_embedded_web_browsers
please fix it.
I have fixed a small error
I have fixed a small error with this. You can get the latest copy from http://svn.majorsilence.com/pygtknotebook/trunk/examples/browsers/ or go through the book.
The problem was that I was calling self.init_ie() before the following:
self.win.add(self.main_vbox)
self.win.show_all()
I have that fixed in the book and the examples.