Changeset 27090 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 5, 2010 2:09:14 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58418
- 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 62 62 prepareFilters(); 63 63 64 /* Prepare connections: */ 65 prepareConnections(); 66 64 67 /* Prepare console connections: */ 65 68 prepareConsoleConnections(); … … 137 140 { 138 141 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 else216 /* 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 0223 /* Center the frame on the desktop: */224 frameGeo.moveCenter(availableGeo.center());225 #endif226 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 else247 setMinimumSize(0, 0);248 }249 142 } 250 143 … … 432 325 } 433 326 327 void 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 336 void UIMachineViewNormal::prepareConnections() 337 { 338 connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(sltDesktopResized())); 339 } 340 341 void 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 350 void 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 363 void 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 411 QRect UIMachineViewNormal::availableGeometry() 412 { 413 return QApplication::desktop()->availableGeometry(this); 414 } 415 416 void 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 44 44 private slots: 45 45 46 /* Slot to perform guest resize: */ 47 void sltPerformGuestResize(const QSize &size = QSize()); 48 46 49 /* Console callback handlers: */ 47 50 void sltAdditionsStateChanged(); 48 49 /* Slot to perform guest resize: */50 void sltPerformGuestResize(const QSize &size = QSize());51 51 52 52 /* Watch dog for desktop resizes: */ … … 55 55 private: 56 56 57 /* Event handlers: */ 58 bool event(QEvent *pEvent); 59 bool eventFilter(QObject *pWatched, QEvent *pEvent); 60 57 61 /* Prepare helpers: */ 58 62 void prepareFilters(); 63 void prepareConnections(); 59 64 void prepareConsoleConnections(); 60 void loadMachineViewSettings();61 65 62 66 /* Cleanup helpers: */ 63 //void saveMachineViewSettings() {}64 67 //void cleanupConsoleConnections() {} 65 //cleanupFilters() {} 68 //void prepareConnections() {} 69 //void cleanupFilters() {} 66 70 67 71 /* Hidden setters: */ … … 72 76 QRect availableGeometry(); 73 77 void maybeRestrictMinimumSize(); 74 75 /* Event handlers: */76 bool event(QEvent *pEvent);77 bool eventFilter(QObject *pWatched, QEvent *pEvent);78 78 79 79 /* Private members: */
Note:
See TracChangeset
for help on using the changeset viewer.