VirtualBox

Changeset 29679 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 20, 2010 10:08:26 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
61845
Message:

FE/Qt4: use color hinting for the monitor count in the setting pages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.cpp

    r28800 r29679  
    2323#include "VBoxProblemReporter.h"
    2424
     25#include <QDesktopWidget>
     26
    2527/**
    2628 *  Calculates a suitable page step size for the given max value. The returned
     
    5456    m_maxVRAMVisible = m_maxVRAM;
    5557    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) */
    5663    const uint MaxMonitors = sys.GetMaxGuestMonitors();
    5764
     
    8592    mSlMonitors->setMinimum (MinMonitors);
    8693    mSlMonitors->setMaximum (MaxMonitors);
    87     mSlMonitors->setSnappingEnabled (true);
     94    mSlMonitors->setErrorHint (0, MinMonitors);
     95    mSlMonitors->setOptimalHint (MinMonitors, cHostScreens);
     96    mSlMonitors->setWarningHint (cHostScreens, MaxMonitors);
    8897    /* Limit min/max. size of QLineEdit */
    8998    mLeMemory->setFixedWidthByText (QString().fill ('8', 4));
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette