meta data for this page
  •  

This is an old revision of the document!


grp2 - Your Project name here

  1. Name1
  2. Name2
  3. Name3

Idea

Paragrap or couple decribing your project idea. What it gives to user, what functionalities it has and so on ..

Screenshots

Upload and attach couple screenshots of application

Code

GUI Template:

' Created on Aug 18, 2011

@author: maemo ' import sys import gtk import hildon def main(): win = hildon.StackableWindow() # Create and pack labels vbox = gtk.VBox(False, 10) hbox = gtk.HBox(False, 10) #interface.. buttons, labels ,… etc labelHeader = gtk.Label(“Application header”) buttonOption = hildon.Button(gtk.HILDON_SIZE_AUTO_WIDTH | gtk.HILDON_SIZE_FINGER_HEIGHT, hildon.BUTTON_ARRANGEMENT_VERTICAL, title=, value=) buttonOption.set_title(“button middle”) buttonGTK = gtk.Button(“Hello”) hbox.pack_start(buttonOption, True, True, 0) hbox.pack_start(buttonGTK, True, True, 0) vbox.pack_start(labelHeader, True, True, 0) vbox.pack_start(hbox, True, True, 0) # Add label's box to window win.add(vbox) win.connect(“delete_event”, gtk.main_quit) win.show_all() gtk.main() if name == “main”: main()

Conclusion

Your group comments and thinkings of developing you project in maemo environment.