When trying to set a fixed window size why doesn't the following code work:
window->setSizeIncrement(1024,600);
window->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
But this code does:
window->setMaximumHeight(600);
window->setMinimumHeight(600);
window->setMaximumWidth(1024);
window->setMinimumWidth(1024);
I achieve what I want, a fixed width and height window. Not as efficiently as I had thought.