[Solved] Eliminating the very top of a window
-
Here's the constructor for the main screen in my application:
@
MonitorWindow::MonitorWindow(QWidget *parent) :
QWidget(parent),
ui(new Ui::MonitorWindow)
{
ui->setupUi(this);
@
As you can see, it's a Designer UI window and a QWidget. On my Windows 7 PC, it comes up just like any other window - with borders and a title space on the top. Anyway, the application's going to be running on a Linux system, and I'd like to be able to utilize as much screen space as possible. Is there a way to eliminate the borders and title space? If not on a UI Designer window, is there some other QObject where it could be eliminated?