Changeset 27018 in vbox
- Timestamp:
- Mar 4, 2010 12:39:01 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58328
- 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 53 53 prepareMenu(); 54 54 55 /* Prepare connections: */56 prepareConnections();57 58 55 /* Retranslate normal window finally: */ 59 56 retranslateUi(); … … 89 86 } 90 87 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 122 88 void UIMachineWindowFullscreen::sltTryClose() 123 89 { 124 90 UIMachineWindow::sltTryClose(); 125 }126 127 void UIMachineWindowFullscreen::sltProcessGlobalSettingChange(const char * /* aPublicName */, const char * /* aName */)128 {129 91 } 130 92 … … 140 102 // m_pDockEnablePreviewMonitor->setText(tr("Show Monitor Preview")); 141 103 #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_CORE154 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_GUI163 // TODO: Update debugger window size!164 //dbgAdjustRelativePos();165 #endif166 }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_GUI175 // TODO: Update debugger window position!176 //dbgAdjustRelativePos();177 #endif178 }179 break;180 }181 default:182 break;183 }184 return QIWithRetranslateUI<QIMainDialog>::event(pEvent);185 104 } 186 105 … … 212 131 } 213 132 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 240 133 void UIMachineWindowFullscreen::prepareMenu() 241 134 { … … 243 136 /* Menubar is always hidden in fullscreen */ 244 137 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 *)));252 138 } 253 139 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineWindowFullscreen.h
r27008 r27018 57 57 /* Console callback handlers: */ 58 58 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);67 59 68 60 /* Close window reimplementation: */ … … 74 66 void retranslateUi(); 75 67 76 /* Update routines: */77 void updateAppearanceOf(int aElement);78 79 68 /* Event handlers: */ 80 bool event(QEvent *pEvent);81 69 #ifdef Q_WS_X11 82 70 bool x11Event(XEvent *pEvent); … … 85 73 86 74 /* Prepare helpers: */ 87 void prepareConsoleConnections();88 75 void prepareMenu(); 89 void prepareConnections();90 76 void prepareMachineView(); 91 77 void loadWindowSettings(); … … 94 80 void saveWindowSettings(); 95 81 void cleanupMachineView(); 96 //void cleanupConnections() {}97 82 //void cleanupMenu() {} 98 83 //void cleanupConsoleConnections() {}
Note:
See TracChangeset
for help on using the changeset viewer.