Hi,
How to start application in full screen.
How can I add my application in start up in linux.
How to diable title bar button (programtically).
Printable View
Hi,
How to start application in full screen.
How can I add my application in start up in linux.
How to diable title bar button (programtically).
showFullScreen()Quote:
Originally Posted by safknw
It depends what you mean. In KDE you can add it to your Autostart directory.Quote:
How can I add my application in start up in linux.
Which button exactly?Quote:
How to diable title bar button (programtically).
Close and minimize buttons.
You have to set (or clear) appropriate window flags in the window constructor. To get rid of the "minimise" button, you should probably clear the Qt::WindowMinimizeButtonHint flag. I didn't find one for the close button (which doesn't mean there is no flag for that). Alternatively use a window type which doesn't have those buttons (for example using Qt::FramelessWindowHint).