Changeset 5803 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Nov 20, 2007 1:55:28 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26209
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
r5759 r5803 208 208 QPoint captured_pos; 209 209 210 bool mDisableAutoCapture : 1; 211 210 212 enum { IsKeyPressed = 0x01, IsExtKeyPressed = 0x02, IsKbdCaptured = 0x80 }; 211 213 uint8_t mPressedKeys [128]; … … 214 216 bool mIsHostkeyPressed : 1; 215 217 bool mIsHostkeyAlone : 1; 218 216 219 /** kbd_captured value during the the last host key press or release */ 217 220 bool hostkey_in_capture : 1; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r5544 r5803 117 117 void updateAppearanceOf (int element); 118 118 119 voidtoggleFullscreenMode (bool, bool);119 bool toggleFullscreenMode (bool, bool); 120 120 121 121 private slots: -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r5774 r5803 242 242 void cannotDownloadGuestAdditions (const QString &aURL, 243 243 const QString &aReason); 244 intconfirmDownloadAdditions (const QString &aURL, ulong aSize);245 intconfirmMountAdditions (const QString &aURL, const QString &aSrc);244 bool confirmDownloadAdditions (const QString &aURL, ulong aSize); 245 bool confirmMountAdditions (const QString &aURL, const QString &aSrc); 246 246 void warnAboutTooOldAdditions (QWidget *, const QString &, const QString &); 247 247 void warnAboutOldAdditions (QWidget *, const QString &, const QString &); … … 254 254 const QString &aResult); 255 255 256 bool remindAboutInputCapture();257 boolremindAboutAutoCapture();258 bool remindAboutMouseIntegration (bool supportsAbsolute);256 bool confirmInputCapture(); 257 void remindAboutAutoCapture(); 258 void remindAboutMouseIntegration (bool aSupportsAbsolute); 259 259 bool remindAboutPausedVMInput(); 260 260 261 261 bool remindAboutInaccessibleMedia(); 262 262 263 void remindAboutGoingFullscreen (const QString &hotKey, 264 const QString &hostKey); 265 void remindAboutGoingSeamless (const QString &hotKey, 266 const QString &hostKey); 263 bool confirmGoingFullscreen (const QString &aHotKey); 264 bool confirmGoingSeamless (const QString &aHotKey); 267 265 268 266 void remindAboutWrongColorDepth (ulong aRealBPP, ulong aWantedBPP); … … 273 271 bool confirmVMReset (QWidget *aParent); 274 272 275 int remindAboutUnsetHD(QWidget *aParent);273 bool confirmHardDisklessMachine (QWidget *aParent); 276 274 277 275 void cannotRunInSelectorMode();
Note:
See TracChangeset
for help on using the changeset viewer.