Changeset 29679 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 20, 2010 10:08:26 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.cpp
r28800 r29679 23 23 #include "VBoxProblemReporter.h" 24 24 25 #include <QDesktopWidget> 26 25 27 /** 26 28 * Calculates a suitable page step size for the given max value. The returned … … 54 56 m_maxVRAMVisible = m_maxVRAM; 55 57 const uint MinMonitors = 1; 58 #if (QT_VERSION >= 0x040600) 59 const uint cHostScreens = QApplication::desktop()->screenCount(); 60 #else /* (QT_VERSION >= 0x040600) */ 61 const uint cHostScreens = QApplication::desktop()->numScreens(); 62 #endif /* !(QT_VERSION >= 0x040600) */ 56 63 const uint MaxMonitors = sys.GetMaxGuestMonitors(); 57 64 … … 85 92 mSlMonitors->setMinimum (MinMonitors); 86 93 mSlMonitors->setMaximum (MaxMonitors); 87 mSlMonitors->setSnappingEnabled (true); 94 mSlMonitors->setErrorHint (0, MinMonitors); 95 mSlMonitors->setOptimalHint (MinMonitors, cHostScreens); 96 mSlMonitors->setWarningHint (cHostScreens, MaxMonitors); 88 97 /* Limit min/max. size of QLineEdit */ 89 98 mLeMemory->setFixedWidthByText (QString().fill ('8', 4));
Note:
See TracChangeset
for help on using the changeset viewer.