VirtualBox

Ignore:
Timestamp:
Mar 5, 2010 2:09:14 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
58418
Message:

FE/Qt4: New running VM core: few more cosmetics (merging class structure of seamless/fullscreen machine view into normal machine view).

Location:
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.cpp

    r27012 r27090  
    6262    prepareFilters();
    6363
     64    /* Prepare connections: */
     65    prepareConnections();
     66
    6467    /* Prepare console connections: */
    6568    prepareConsoleConnections();
     
    137140{
    138141    calculateDesktopGeometry();
    139 }
    140 
    141 void UIMachineViewNormal::prepareFilters()
    142 {
    143     /* Base class filters: */
    144     UIMachineView::prepareFilters();
    145 
    146     /* Menu bar filters: */
    147     qobject_cast<QIMainDialog*>(machineWindowWrapper()->machineWindow())->menuBar()->installEventFilter(this);
    148 }
    149 
    150 void UIMachineViewNormal::prepareConsoleConnections()
    151 {
    152     /* Base class connections: */
    153     UIMachineView::prepareConsoleConnections();
    154 
    155     /* Guest additions state-change updater: */
    156     connect(uisession(), SIGNAL(sigAdditionsStateChange()), this, SLOT(sltAdditionsStateChanged()));
    157 }
    158 
    159 void UIMachineViewNormal::loadMachineViewSettings()
    160 {
    161     /* Base class settings: */
    162     UIMachineView::loadMachineViewSettings();
    163 
    164     /* Global settings: */
    165     {
    166         connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(sltDesktopResized()));
    167     }
    168 }
    169 
    170 void UIMachineViewNormal::setGuestAutoresizeEnabled(bool fEnabled)
    171 {
    172     if (m_bIsGuestAutoresizeEnabled != fEnabled)
    173     {
    174         m_bIsGuestAutoresizeEnabled = fEnabled;
    175 
    176         maybeRestrictMinimumSize();
    177 
    178         if (m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics())
    179             sltPerformGuestResize();
    180     }
    181 }
    182 
    183 void UIMachineViewNormal::normalizeGeometry(bool bAdjustPosition)
    184 {
    185     QWidget *pTopLevelWidget = window();
    186 
    187     /* Make no normalizeGeometry in case we are in manual resize mode or main window is maximized: */
    188     if (pTopLevelWidget->isMaximized())
    189         return;
    190 
    191     /* Calculate client window offsets: */
    192     QRect frameGeo = pTopLevelWidget->frameGeometry();
    193     QRect geo = pTopLevelWidget->geometry();
    194     int dl = geo.left() - frameGeo.left();
    195     int dt = geo.top() - frameGeo.top();
    196     int dr = frameGeo.right() - geo.right();
    197     int db = frameGeo.bottom() - geo.bottom();
    198 
    199     /* Get the best size w/o scroll bars: */
    200     QSize s = pTopLevelWidget->sizeHint();
    201 
    202     /* Resize the frame to fit the contents: */
    203     s -= pTopLevelWidget->size();
    204     frameGeo.setRight(frameGeo.right() + s.width());
    205     frameGeo.setBottom(frameGeo.bottom() + s.height());
    206 
    207     if (bAdjustPosition)
    208     {
    209         QRegion availableGeo;
    210         QDesktopWidget *dwt = QApplication::desktop();
    211         if (dwt->isVirtualDesktop())
    212             /* Compose complex available region */
    213             for (int i = 0; i < dwt->numScreens(); ++ i)
    214                 availableGeo += dwt->availableGeometry(i);
    215         else
    216             /* Get just a simple available rectangle */
    217             availableGeo = dwt->availableGeometry(pTopLevelWidget->pos());
    218 
    219         frameGeo = VBoxGlobal::normalizeGeometry(frameGeo, availableGeo, mode() != VBoxDefs::SDLMode /* can resize? */);
    220     }
    221 
    222 #if 0
    223     /* Center the frame on the desktop: */
    224     frameGeo.moveCenter(availableGeo.center());
    225 #endif
    226 
    227     /* Finally, set the frame geometry */
    228     pTopLevelWidget->setGeometry(frameGeo.left() + dl, frameGeo.top() + dt, frameGeo.width() - dl - dr, frameGeo.height() - dt - db);
    229 }
    230 
    231 QRect UIMachineViewNormal::availableGeometry()
    232 {
    233     return QApplication::desktop()->availableGeometry(this);
    234 }
    235 
    236 void UIMachineViewNormal::maybeRestrictMinimumSize()
    237 {
    238     /* Sets the minimum size restriction depending on the auto-resize feature state and the current rendering mode.
    239      * Currently, the restriction is set only in SDL mode and only when the auto-resize feature is inactive.
    240      * We need to do that because we cannot correctly draw in a scrolled window in SDL mode.
    241      * In all other modes, or when auto-resize is in force, this function does nothing. */
    242     if (mode() == VBoxDefs::SDLMode)
    243     {
    244         if (!uisession()->isGuestSupportsGraphics() || !m_bIsGuestAutoresizeEnabled)
    245             setMinimumSize(sizeHint());
    246         else
    247             setMinimumSize(0, 0);
    248     }
    249142}
    250143
     
    432325}
    433326
     327void UIMachineViewNormal::prepareFilters()
     328{
     329    /* Base class filters: */
     330    UIMachineView::prepareFilters();
     331
     332    /* Menu bar filters: */
     333    qobject_cast<QIMainDialog*>(machineWindowWrapper()->machineWindow())->menuBar()->installEventFilter(this);
     334}
     335
     336void UIMachineViewNormal::prepareConnections()
     337{
     338    connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(sltDesktopResized()));
     339}
     340
     341void UIMachineViewNormal::prepareConsoleConnections()
     342{
     343    /* Base class connections: */
     344    UIMachineView::prepareConsoleConnections();
     345
     346    /* Guest additions state-change updater: */
     347    connect(uisession(), SIGNAL(sigAdditionsStateChange()), this, SLOT(sltAdditionsStateChanged()));
     348}
     349
     350void UIMachineViewNormal::setGuestAutoresizeEnabled(bool fEnabled)
     351{
     352    if (m_bIsGuestAutoresizeEnabled != fEnabled)
     353    {
     354        m_bIsGuestAutoresizeEnabled = fEnabled;
     355
     356        maybeRestrictMinimumSize();
     357
     358        if (m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics())
     359            sltPerformGuestResize();
     360    }
     361}
     362
     363void UIMachineViewNormal::normalizeGeometry(bool bAdjustPosition)
     364{
     365    QWidget *pTopLevelWidget = window();
     366
     367    /* Make no normalizeGeometry in case we are in manual resize mode or main window is maximized: */
     368    if (pTopLevelWidget->isMaximized())
     369        return;
     370
     371    /* Calculate client window offsets: */
     372    QRect frameGeo = pTopLevelWidget->frameGeometry();
     373    QRect geo = pTopLevelWidget->geometry();
     374    int dl = geo.left() - frameGeo.left();
     375    int dt = geo.top() - frameGeo.top();
     376    int dr = frameGeo.right() - geo.right();
     377    int db = frameGeo.bottom() - geo.bottom();
     378
     379    /* Get the best size w/o scroll bars: */
     380    QSize s = pTopLevelWidget->sizeHint();
     381
     382    /* Resize the frame to fit the contents: */
     383    s -= pTopLevelWidget->size();
     384    frameGeo.setRight(frameGeo.right() + s.width());
     385    frameGeo.setBottom(frameGeo.bottom() + s.height());
     386
     387    if (bAdjustPosition)
     388    {
     389        QRegion availableGeo;
     390        QDesktopWidget *dwt = QApplication::desktop();
     391        if (dwt->isVirtualDesktop())
     392            /* Compose complex available region */
     393            for (int i = 0; i < dwt->numScreens(); ++ i)
     394                availableGeo += dwt->availableGeometry(i);
     395        else
     396            /* Get just a simple available rectangle */
     397            availableGeo = dwt->availableGeometry(pTopLevelWidget->pos());
     398
     399        frameGeo = VBoxGlobal::normalizeGeometry(frameGeo, availableGeo, mode() != VBoxDefs::SDLMode /* can resize? */);
     400    }
     401
     402#if 0
     403    /* Center the frame on the desktop: */
     404    frameGeo.moveCenter(availableGeo.center());
     405#endif
     406
     407    /* Finally, set the frame geometry */
     408    pTopLevelWidget->setGeometry(frameGeo.left() + dl, frameGeo.top() + dt, frameGeo.width() - dl - dr, frameGeo.height() - dt - db);
     409}
     410
     411QRect UIMachineViewNormal::availableGeometry()
     412{
     413    return QApplication::desktop()->availableGeometry(this);
     414}
     415
     416void UIMachineViewNormal::maybeRestrictMinimumSize()
     417{
     418    /* Sets the minimum size restriction depending on the auto-resize feature state and the current rendering mode.
     419     * Currently, the restriction is set only in SDL mode and only when the auto-resize feature is inactive.
     420     * We need to do that because we cannot correctly draw in a scrolled window in SDL mode.
     421     * In all other modes, or when auto-resize is in force, this function does nothing. */
     422    if (mode() == VBoxDefs::SDLMode)
     423    {
     424        if (!uisession()->isGuestSupportsGraphics() || !m_bIsGuestAutoresizeEnabled)
     425            setMinimumSize(sizeHint());
     426        else
     427            setMinimumSize(0, 0);
     428    }
     429}
     430
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.h

    r27012 r27090  
    4444private slots:
    4545
     46    /* Slot to perform guest resize: */
     47    void sltPerformGuestResize(const QSize &size = QSize());
     48
    4649    /* Console callback handlers: */
    4750    void sltAdditionsStateChanged();
    48 
    49     /* Slot to perform guest resize: */
    50     void sltPerformGuestResize(const QSize &size = QSize());
    5151
    5252    /* Watch dog for desktop resizes: */
     
    5555private:
    5656
     57    /* Event handlers: */
     58    bool event(QEvent *pEvent);
     59    bool eventFilter(QObject *pWatched, QEvent *pEvent);
     60
    5761    /* Prepare helpers: */
    5862    void prepareFilters();
     63    void prepareConnections();
    5964    void prepareConsoleConnections();
    60     void loadMachineViewSettings();
    6165
    6266    /* Cleanup helpers: */
    63     //void saveMachineViewSettings() {}
    6467    //void cleanupConsoleConnections() {}
    65     //cleanupFilters() {}
     68    //void prepareConnections() {}
     69    //void cleanupFilters() {}
    6670
    6771    /* Hidden setters: */
     
    7276    QRect availableGeometry();
    7377    void maybeRestrictMinimumSize();
    74 
    75     /* Event handlers: */
    76     bool event(QEvent *pEvent);
    77     bool eventFilter(QObject *pWatched, QEvent *pEvent);
    7878
    7979    /* Private members: */
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