Changeset 25505 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 18, 2009 5:47:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56176
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r25304 r25505 1346 1346 mIgnoreFrameBufferResize = false; 1347 1347 } 1348 1349 mMainWnd->onDisplayResize (re->width(), re->height()); 1348 1350 1349 1351 return true; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r25404 r25505 1229 1229 #endif 1230 1230 } 1231 1232 void VBoxConsoleWnd::onDisplayResize (ulong aHeight, ulong aWidth) 1233 { 1234 if (mIsSeamless && QApplication::desktop()->availableGeometry (this).size() != QSize (aHeight, aWidth)) 1235 { 1236 mVmSeamlessAction->setChecked (false); 1237 /* should be cleared already, but just in case */ 1238 if (mIsSeamless) 1239 toggleFullscreenMode (false, true); 1240 } 1241 } 1242 1231 1243 1232 1244 bool VBoxConsoleWnd::event (QEvent *aEvent) -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.h
r25318 r25505 112 112 void clearMask(); 113 113 114 /* informs that the guest display is resized */ 115 void onDisplayResize (ulong aHeight, ulong aWidth); 116 114 117 signals: 115 118
Note:
See TracChangeset
for help on using the changeset viewer.