VirtualBox

Changeset 27018 in vbox


Ignore:
Timestamp:
Mar 4, 2010 12:39:01 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
58328
Message:

FE/Qt4: New running VM core: fullscreen code partial cleanup.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.cpp

    r27015 r27018  
    5353    prepareMenu();
    5454
    55     /* Prepare connections: */
    56     prepareConnections();
    57 
    5855    /* Retranslate normal window finally: */
    5956    retranslateUi();
     
    8986}
    9087
    91 void UIMachineWindowFullscreen::sltMediumChange(const CMediumAttachment &attachment)
    92 {
    93     KDeviceType type = attachment.GetType();
    94     if (type == KDeviceType_HardDisk)
    95         updateAppearanceOf(UIVisualElement_HDStuff);
    96     if (type == KDeviceType_DVD)
    97         updateAppearanceOf(UIVisualElement_CDStuff);
    98     if (type == KDeviceType_Floppy)
    99         updateAppearanceOf(UIVisualElement_FDStuff);
    100 }
    101 
    102 void UIMachineWindowFullscreen::sltUSBControllerChange()
    103 {
    104     updateAppearanceOf(UIVisualElement_USBStuff);
    105 }
    106 
    107 void UIMachineWindowFullscreen::sltUSBDeviceStateChange()
    108 {
    109     updateAppearanceOf(UIVisualElement_USBStuff);
    110 }
    111 
    112 void UIMachineWindowFullscreen::sltNetworkAdapterChange()
    113 {
    114     updateAppearanceOf(UIVisualElement_NetworkStuff);
    115 }
    116 
    117 void UIMachineWindowFullscreen::sltSharedFolderChange()
    118 {
    119     updateAppearanceOf(UIVisualElement_SharedFolderStuff);
    120 }
    121 
    12288void UIMachineWindowFullscreen::sltTryClose()
    12389{
    12490    UIMachineWindow::sltTryClose();
    125 }
    126 
    127 void UIMachineWindowFullscreen::sltProcessGlobalSettingChange(const char * /* aPublicName */, const char * /* aName */)
    128 {
    12991}
    13092
     
    140102//    m_pDockEnablePreviewMonitor->setText(tr("Show Monitor Preview"));
    141103#endif /* Q_WS_MAC */
    142 }
    143 
    144 void UIMachineWindowFullscreen::updateAppearanceOf(int iElement)
    145 {
    146     /* Update parent-class window: */
    147     UIMachineWindow::updateAppearanceOf(iElement);
    148 }
    149 
    150 bool UIMachineWindowFullscreen::event(QEvent *pEvent)
    151 {
    152     return QIWithRetranslateUI<QIMainDialog>::event(pEvent);
    153     // TODO_NEW_CORE
    154     switch (pEvent->type())
    155     {
    156         case QEvent::Resize:
    157         {
    158             QResizeEvent *pResizeEvent = static_cast<QResizeEvent*>(pEvent);
    159             if (!isMaximized())
    160             {
    161                 m_normalGeometry.setSize(pResizeEvent->size());
    162 #ifdef VBOX_WITH_DEBUGGER_GUI
    163                 // TODO: Update debugger window size!
    164                 //dbgAdjustRelativePos();
    165 #endif
    166             }
    167             break;
    168         }
    169         case QEvent::Move:
    170         {
    171             if (!isMaximized())
    172             {
    173                 m_normalGeometry.moveTo(geometry().x(), geometry().y());
    174 #ifdef VBOX_WITH_DEBUGGER_GUI
    175                 // TODO: Update debugger window position!
    176                 //dbgAdjustRelativePos();
    177 #endif
    178             }
    179             break;
    180         }
    181         default:
    182             break;
    183     }
    184     return QIWithRetranslateUI<QIMainDialog>::event(pEvent);
    185104}
    186105
     
    212131}
    213132
    214 void UIMachineWindowFullscreen::prepareConsoleConnections()
    215 {
    216     /* Base-class connections: */
    217     UIMachineWindow::prepareConsoleConnections();
    218 
    219     /* Medium change updater: */
    220     connect(machineLogic()->uisession(), SIGNAL(sigMediumChange(const CMediumAttachment &)),
    221             this, SLOT(sltMediumChange(const CMediumAttachment &)));
    222 
    223     /* USB controller change updater: */
    224     connect(machineLogic()->uisession(), SIGNAL(sigUSBControllerChange()),
    225             this, SLOT(sltUSBControllerChange()));
    226 
    227     /* USB device state-change updater: */
    228     connect(machineLogic()->uisession(), SIGNAL(sigUSBDeviceStateChange(const CUSBDevice &, bool, const CVirtualBoxErrorInfo &)),
    229             this, SLOT(sltUSBDeviceStateChange()));
    230 
    231     /* Network adapter change updater: */
    232     connect(machineLogic()->uisession(), SIGNAL(sigNetworkAdapterChange(const CNetworkAdapter &)),
    233             this, SLOT(sltNetworkAdapterChange()));
    234 
    235     /* Shared folder change updater: */
    236     connect(machineLogic()->uisession(), SIGNAL(sigSharedFolderChange()),
    237             this, SLOT(sltSharedFolderChange()));
    238 }
    239 
    240133void UIMachineWindowFullscreen::prepareMenu()
    241134{
     
    243136    /* Menubar is always hidden in fullscreen */
    244137    menuBar()->hide();
    245 }
    246 
    247 void UIMachineWindowFullscreen::prepareConnections()
    248 {
    249     /* Setup global settings change updater: */
    250     connect(&vboxGlobal().settings(), SIGNAL(propertyChanged(const char *, const char *)),
    251             this, SLOT(sltProcessGlobalSettingChange(const char *, const char *)));
    252138}
    253139
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h

    r27008 r27018  
    5757    /* Console callback handlers: */
    5858    void sltMachineStateChanged();
    59     void sltMediumChange(const CMediumAttachment &attachment);
    60     void sltUSBControllerChange();
    61     void sltUSBDeviceStateChange();
    62     void sltNetworkAdapterChange();
    63     void sltSharedFolderChange();
    64 
    65     /* LED connections: */
    66     void sltProcessGlobalSettingChange(const char *aPublicName, const char *aName);
    6759
    6860    /* Close window reimplementation: */
     
    7466    void retranslateUi();
    7567
    76     /* Update routines: */
    77     void updateAppearanceOf(int aElement);
    78 
    7968    /* Event handlers: */
    80     bool event(QEvent *pEvent);
    8169#ifdef Q_WS_X11
    8270    bool x11Event(XEvent *pEvent);
     
    8573
    8674    /* Prepare helpers: */
    87     void prepareConsoleConnections();
    8875    void prepareMenu();
    89     void prepareConnections();
    9076    void prepareMachineView();
    9177    void loadWindowSettings();
     
    9480    void saveWindowSettings();
    9581    void cleanupMachineView();
    96     //void cleanupConnections() {}
    9782    //void cleanupMenu() {}
    9883    //void cleanupConsoleConnections() {}
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