The Following 50 Users Say Thank You to mikec For This Useful Post: | ||
acou, Alex Atkin UK, attila77, blubbi, cipper, danielwilms, DaSilva, davost, debernardis, fatalsaint, fmo, Helmuth, iKneaDough, isto, jcharpak, jedi, jolo, joshua.maverick, khg, kik, kortsi, krk969, Lord Awesome, lostinmirkwood, Lullen, maegon9y00, mannakiosk, manvik60, marble, Marshall Banana, Mindflyer, mscion, n-mi, n900ak, nilchak, osama, ossipena, pelago, plastik, Ricardo, rm42, tgalal, tissot, todor_tsankov, trotor, v13, VDVsx, vkv.raju, ymb |
![]() |
2010-01-10
, 21:23
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#2
|
The Following 9 Users Say Thank You to mikec For This Useful Post: | ||
![]() |
2010-01-11
, 08:33
|
Posts: 4 |
Thanked: 0 times |
Joined on Dec 2009
|
#4
|
![]() |
2010-01-11
, 10:56
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#5
|
After following the steps, once I move my helloworld.py onto my N900 and I run it I get an error saying "ImportError: No module named PyQt4." Do I need to apt-get pyqt4 or something similar to my N900 first? Thanks in advance.
![]() |
2010-01-11
, 21:59
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#6
|
eric4 is a good PyQt IDE. It compiles Designer to Python and generates code stubs for events. It also simplifies Actions for menus and toolbars.
![]() |
2010-01-11
, 22:17
|
|
Posts: 288 |
Thanked: 113 times |
Joined on Dec 2009
@ Germany
|
#7
|
pyuic4 helloworld.ui -o helloworld.py
helloworld.py : helloworld.uipyuic4 helloworld.ui -o helloworld.py
make
![]() |
2010-01-14
, 22:37
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#8
|
![]() |
2010-01-18
, 13:16
|
|
Posts: 288 |
Thanked: 113 times |
Joined on Dec 2009
@ Germany
|
#9
|
The Following User Says Thank You to blubbi For This Useful Post: | ||
![]() |
2010-01-26
, 22:03
|
Posts: 716 |
Thanked: 303 times |
Joined on Sep 2009
@ Sheffield, UK
|
#10
|
So having spent a few days looking at the various options on developing for N900 and Maemo I have come to the conclusion that the following is by far the easiest and future proof. Its simple enough for noobs, and powerful enough for experienced programmers.
Python – programming language
PyQt or Pyside for -UI
Qt4 Designer for UI layout
pyuic4 for code generation.
eric4 Python IDE that supports Qt4 Designer
As there is not much I could find that links all of the above together, here we go. EOE
=================================================
The following was done on OpenSuse, but should work with other Linux flavours.
For Windows users I have created a separate thread
http://talk.maemo.org/showthread.php...510#post514510
Lets do a quick hello world that uses the above tools and links it all together.
Create UI with Qt Designer
On Your Desktop machine
1.Open Qt Designer.
2.Create a Main Window Form ,set its size to 800x400
3.Add a Label Widget, set the font to a 24 point, resize as needed.
4.Double click on the Label Widget to change its name to “Hello World !”
5.Use Control R to see how it will look.
6.Now save your form. File->Save As → “helloworld.ui”
Generate your Python code.
> pyuic4 -x helloworld.ui -o helloworld.py
the -x generates additional code to allow you to test the ui element
the -o tells it where to store the python "executable".
You now have a full python Qt4 GUI application ready to rock!!
Now make it executable and run.
> chmod 755 helloworld.py
>python helloworld.py
Deploy to your N900
Install ssh-server to on your N900 from Application manager
login as root and create a user password
Mount your N900 file system onto your Desktop to say /media/n900 from your desktop
>sshfs user@192.168.1.70:/ /media/n900
If you do not know the ip address of your n900 do the following
>sudo gainroot
>ifconfig |grep inet
The N900 filesystem will now be mounted to /media/n900 on your Desktop.
Now you can just drag and drop files from your desktop to your N900.
!! dont forget to copy your python files to /opt on N900. If you copy to Mydocs directory you will not be able to change the permissions to Linux execute permissions as Mydocs is a FAT file system, it does not understand permissions.
Copy your helloworld.py file to your N900 /home/opt directory
Once your helloworld.py file is on your opt directory on your n900 you can execute like this from the Xterm. Like this (run as user)
>python helloworld.py
If your helloworld does not have the look and feel of Fremantle you need to install the latest pyqt4 libs like so as root
>apt-get install python2.5-qt4-gui
Using PySide
If you want to use Pyside (Nokias Bindings for Qt4 for Python), you will need to replace the line in your helloworld.py file that says
"From PyQt4 import PyQtcore QtGui"
with
From PySide import PyQtcore QtGui
=================================================
Now you have got your helloworld working its time to dive into a full blown IDE using eric4 and build your own browser in an Hour!!
heres the tutorial
http://eric-ide.python-projects.org/...ser/index.html
some other tutorials I found helpful
http://www.rkblog.rk.edu.pl/w/p/introduction-pyqt4/
http://lateral.netmanagers.com.ar/stories/BBS47.html
And the Qt4 Design manual
http://doc.trolltech.com/4.0/designe...component.html
The Maemo Python Wiki Pages
http://wiki.maemo.org/PyMaemo
N900_Email_Options Wiki Page
Last edited by mikec; 2010-05-25 at 20:24. Reason: minor changes