electroaudio |
2012-08-15 19:49 |
Re: [idea]N900 Continuous scrolling bar with info?
Quote:
Originally Posted by c4rl05
(Post 1252296)
for this idea of continous bar i think qml will do a great job, i dont like the idea of full os being in qml, sometimes qt to me feels great
|
I dont think it would matter what language a continous bar is written in ;) As soon as the scrollbar is populated by the program, the program itself will go to sleep, and the scrolling is all taken care of by the OS anyway.
But as long as the OS, or more presicely Hildon-desktop, actively prevents gestures to scroll the bar, then it is useless.
Code:
import gtk
import hildondesktop
class HelloHomePlugin(hildondesktop.HomePluginItem):
def __init__(self):
hildondesktop.HomePluginItem.__init__(self)
/*add code for a scrollable pane here, and populate it with its contents*/
|