|
2010-10-27
, 11:41
|
Posts: 239 |
Thanked: 194 times |
Joined on Jul 2010
@ Amsterdam
|
#12
|
|
2010-10-27
, 12:04
|
Posts: 110 |
Thanked: 14 times |
Joined on Sep 2010
|
#13
|
|
2010-10-27
, 12:24
|
Posts: 3 |
Thanked: 1 time |
Joined on Oct 2010
@ Dublin, Ireland.
|
#14
|
Not quite - download the VMWare image - it has Linux installed on it with ALL the tools you need to start development, even on Windows.
You will need to download vmware player as well (free). Here:
http://maemovmware.garage.maemo.org/...on_vmware.html
|
2010-10-27
, 13:23
|
Posts: 432 |
Thanked: 645 times |
Joined on Mar 2009
|
#15
|
The Ubuntu Desktop virtual image seems to have disappeared from the downloads page - I've been tearing at various limbs on my body for days now, trying to find a torrent - anything - so that I can get started...
So it looks like the Qt SDK is actually the easiest way to get started now, by default. I've practically given up trying to set up the SDK manually on Ubuntu as packaging is a pain.
I'm going to try the Qt SDK and see how it goes. Thanks guys.
The Following User Says Thank You to danielwilms For This Useful Post: | ||
|
2010-10-27
, 17:25
|
|
Posts: 94 |
Thanked: 53 times |
Joined on Apr 2010
@ UK LONDON
|
#16
|
The Following User Says Thank You to andil For This Useful Post: | ||
|
2010-10-27
, 17:33
|
Posts: 17 |
Thanked: 3 times |
Joined on Jun 2010
@ Chicago
|
#17
|
|
2010-10-27
, 18:27
|
Posts: 436 |
Thanked: 406 times |
Joined on Jan 2010
|
#18
|
|
2010-11-02
, 15:40
|
Posts: 26 |
Thanked: 0 times |
Joined on Apr 2010
|
#19
|
|
2010-11-02
, 15:58
|
Posts: 81 |
Thanked: 45 times |
Joined on Dec 2009
|
#20
|
#!/usr/bin/python # -*- Encoding: utf-8 -*- """ A python hello world program for the desktop and for maemo. Dov Grobgeld <dov.grobgeld@gmail.com> Tuesday 2010-11-02 17:55 """ import gtk # Use hildon or standard gtk try: import hildon use_hildon=True w = hildon.Window() pa = hildon.PannableArea() tv=hildon.TextView() except: use_hildon=False w = gtk.Window(gtk.WINDOW_TOPLEVEL) pa = gtk.ScrolledWindow() tv=gtk.TextView() # Make program exit nicely when requested w.connect("destroy", gtk.main_quit) # Build the gui using whatever widgets wanted v=gtk.VBox() w.add(v) v.pack_start(pa, True, True, 0) pa.add(tv) w.show_all() tv.get_buffer().set_text("Hello world!") # Enter gtk loop gtk.main()
The Following User Says Thank You to dov For This Useful Post: | ||
Daniel