Saturday, July 5th 2008, 6:32am UTC+1

You are not logged in.

  • Login
  • Register

1

Sunday, September 9th 2007, 2:24pm

qtopia: creating an application that does not appear to be windowed

Hello,

I want to create a Qtopia application that does not appear to be windowed, that occupies the entirety of the screen but uses standard qt widgets.

It seems that TrollTech have more or less implemented there own minimalist window system, which I don't want - The user should only be able to use one application, and should not be able to minimise, maxamise or resize the window, or see controls for doing so.

Is this possible? Could someone point me in the right direction?

Regards,
Sternocera
  • Go to the top of the page

lifthrasir

Trainee

Posts: 159

Location: France

Occupation: Student

2

Monday, September 10th 2007, 9:24am

Set the window state to Qt::WindowFullScreen
void QWidget::setWindowState ( Qt::WindowStates windowState )
  • Go to the top of the page

3

Monday, September 10th 2007, 9:07pm

Thank you lifthrasir, that works nicely. The only downside is that it doesn't work with the virtual frame buffer (it attempts to write directly to the linux framebuffer, even if the qvfb is explicitly called). I can work around this though.
  • Go to the top of the page

Rate this thread