Seems to be possible with native controls (see here and here) so now I'm looking for some Qt code to do it.
When a remote desktop window is open, to extend the remote desktop across multiple monitors, select Window > Enter Full Screen from the menu bar or from the expander arrows in the upper-right corner of the remote desktop window.
I use this code for the second display in full screen successfully on both Windows & Linux
QRect screenres = QApplication::desktop()->screenGeometry(1/*screenNumber*/);
SecondDisplay secondDisplay = new SecondDisplay(); // Use your QWidget
secondDisplay->move(QPoint(screenres.x(), screenres.y()));
secondDisplay->resize(screenres.width(), screenres.height());
secondDisplay->showFullScreen();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With