Changeset 38990 in vbox for trunk/src/VBox
- Timestamp:
- Oct 13, 2011 8:49:57 PM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r38987 r38990 160 160 AssertMsg(newSize.isValid(), ("Size should be valid!\n")); 161 161 162 /* Store the new size */ 163 storeConsoleSize(newSize.width(), newSize.height()); 162 164 /* Send new size-hint to the guest: */ 163 165 session().GetConsole().GetDisplay().SetVideoModeHint(newSize.width(), newSize.height(), 0, screenId()); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
r38987 r38990 130 130 if (pResizeEvent->size() != workingArea().size()) 131 131 break; 132 /* Store the new size */133 storeConsoleSize(pResizeEvent->size().width(), pResizeEvent->size().height());134 132 135 133 if (m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics()) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.cpp
r38981 r38990 134 134 const QSize *pSize = &static_cast<QResizeEvent *>(pEvent) 135 135 ->size(); 136 /* Store the new size */137 storeConsoleSize(pSize->width(), pSize->height());138 136 if (pEvent->spontaneous() && m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics()) 139 137 QTimer::singleShot(300, this, SLOT(sltPerformGuestResize())); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
r38981 r38990 147 147 if (pResizeEvent->size() != workingArea().size()) 148 148 break; 149 /* Store the new size to prevent unwanted resize hints being sent back: */150 storeConsoleSize(pResizeEvent->size().width(), pResizeEvent->size().height());151 149 152 150 if (uisession()->isGuestSupportsGraphics())
Note:
See TracChangeset
for help on using the changeset viewer.