Bundyo
|
2009-04-13
, 21:28
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#131
|
The Following User Says Thank You to Bundyo For This Useful Post: | ||
|
2009-04-13
, 21:46
|
|
Posts: 5,478 |
Thanked: 5,222 times |
Joined on Jan 2006
@ St. Petersburg, FL
|
#132
|
- Fremantle will not have a stylus keyboard
- RX-51 will be OMAP3 based and have a resistive touchscreen that is at least 800x480
- Fremantle will have a compositing window manager
If all those things are correct, it will be very likey that some form of optionally semi-transparent stylus keyboard could be integrated into the platform.
I don't think it's too much to ask to know this simple little thing in advance. I actually can, and sometimes do, plan ahead.
|
2009-04-13
, 21:51
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#133
|
Sounds like practically everything is a compositing window manager these days, from my ignorant reading of the Wikipedia article. Isn't the current Maemo a compositing window manager, too?
|
2009-04-13
, 22:19
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#134
|
|
2009-04-14
, 01:06
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#135
|
#! /usr/bin/env python import gtk class awindow(gtk.Window): def __init__(s): gtk.Window.__init__(s) s.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DIALOG) s.connect('destroy', gtk.main_quit) #rw = s.get_root_window() rw = gtk.gdk.get_default_root_window() pbd = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 80, 80) pbt = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 80, 80) pbt.fill(0xffffffff) pb = pbd.get_from_drawable(rw, rw.get_colormap(), 360, 180, 0, 0, 80, 80) pbt.composite(pb, 0, 0, 80, 80, 0, 0, 1.0, 1.0, gtk.gdk.INTERP_NEAREST, 150) b = gtk.Button('Press Me') b.connect('clicked', s.on_clicked) s.i = gtk.image_new_from_pixbuf(pb) vb = gtk.VBox(False, 0) vb.add(s.i) vb.add(b) s.add(vb) s.show_all() def on_clicked(s, b): print 'inside' #rw = s.get_root_window() rw = gtk.gdk.get_default_root_window() pbd = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 80, 80) pbt = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, True, 8, 80, 80) pbt.fill(0xffffffff) x, y = s.window.get_origin() a = s.i.get_allocation() print 'x y ax ay',x,y,a.x,a.y sx = x + a.x sy = y + a.y pb = pbd.get_from_drawable(rw, rw.get_colormap(), sx-90, sy, 0, 0, 80, 80) pbt.composite(pb, 0, 0, 80, 80, 0, 0, 1.0, 1.0, gtk.gdk.INTERP_NEAREST, 150) s.i.set_from_pixbuf(pb) s.show_all() if __name__ == "__main__": w = awindow() gtk.main()
The Following User Says Thank You to daperl For This Useful Post: | ||
|
2009-04-14
, 03:52
|
Posts: 68 |
Thanked: 63 times |
Joined on Sep 2008
|
#136
|
|
2009-04-14
, 07:46
|
|
Posts: 3,105 |
Thanked: 11,088 times |
Joined on Jul 2007
@ Mountain View (CA, USA)
|
#137
|
- Fremantle will not have a stylus keyboard
- RX-51 will be OMAP3 based and have a resistive touchscreen that is at least 800x480
- Fremantle will have a compositing window manager
If all those things are correct, it will be very likey that some
form of optionally semi-transparent stylus keyboard could be integrated into the platform. Then this would lead to details about such a keyboard and if it could be ready for product launch. To be fair, I haven't looked that deeply into the Alpha SDK's. But you can bet your a*s I'll be all over the Beta.
If there will be no resistive screen, I can turn my thoughts elsewhere.
I don't think it's too much to ask to know this simple little thing in advance. I actually can, and sometimes do, plan ahead.
|
2009-04-14
, 09:03
|
|
Posts: 259 |
Thanked: 59 times |
Joined on Feb 2008
|
#138
|
File chooser - you can see only three items at a time. Maybe the thumb usability of it is high, but it is not very usable...
|
2009-04-14
, 12:13
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#139
|
Good, then get to hacking.
Really, though, anything you put together can certainly be used in Mer, so why not start today?
|
2009-04-14
, 12:23
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#140
|
Alright, these are questions based on what Maemo 5 does and supports. They are useful for your developer plans and this is why... we already answered them.
Tags |
dismantle, fremantle, fremantle summary, kate alhola, kool-aid, no soup for you, presentation, to sylus or not to stylus |
|