I tried to port my custom remote control python (pyqt4) app, which was previously running on my n810, however I couldn't figure out how to get the fullscreen button to show up or just start the app in fullscreen already.
You could do a QMainWindow.showFullScreen() from your app if running on Fremantle (and/or bind it to a button)... Qt4.6 has a fullscreening widget, too, but that's pretty beta-ish still.
You could do a QMainWindow.showFullScreen() from your app if running on Fremantle (and/or bind it to a button)... Qt4.6 has a fullscreening widget, too, but that's pretty beta-ish still.
Thanks a bunch, I will try the showFullScreen() thingy