View Single Post
Posts: 144 | Thanked: 45 times | Joined on Oct 2007 @ Detroit
#494
Originally Posted by Khertan View Post
"Oh, I have tried the pypackager in maemo downloads OS2008 section"

Yes, i ve see that after the OS 2008 was leaked as it work in my chinook sdk, where libglade is available.

PyGTKEditor work as it doesn't use glade

So i ll remove glade from all my python projet ... it ll be a bit boring
ya i know, i was doing that to my app yesterday too. Is the libglade non support only a temperory issue?

anyway here is a shell script i used to make life easier
Code:
for file in `grep "<widget" Axel.glade| cut -s -f2,4 -d\"`
do 
	param1=`echo $file | cut -f1 -d\"|cut -f2 -dk`
       	param2=`echo $file | cut -f2 -d\"`
	echo "self.$param2 = gtk.$param1()"
done
__________________
~m~
Varghese