Changeset 48386 in vbox
- Timestamp:
- Sep 9, 2013 11:14:21 AM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r48314 r48386 476 476 } 477 477 478 void UIMachineLogic::sltKeyboardLedsChanged() 479 { 480 /* Here we have to update host LED lock states using values provided by UISession: 481 * [bool] uisession() -> isNumLock(), isCapsLock(), isScrollLock() can be used for that. */ 482 LogRelFlow(("UIMachineLogic::sltKeyboardLedsChanged: Updating host LED lock states (NOT IMPLEMENTED).\n")); 483 } 484 478 485 void UIMachineLogic::sltUSBDeviceStateChange(const CUSBDevice &device, bool fIsAttached, const CVirtualBoxErrorInfo &error) 479 486 { … … 671 678 /* Mouse capability state-change updater: */ 672 679 connect(uisession(), SIGNAL(sigMouseCapabilityChange()), this, SLOT(sltMouseCapabilityChanged())); 680 681 /* Keyboard LEDs state-change updater: */ 682 connect(uisession(), SIGNAL(sigKeyboardLedsChange()), this, SLOT(sltKeyboardLedsChanged())); 673 683 674 684 /* USB devices state-change updater: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.h
r47523 r48386 103 103 virtual void sltAdditionsStateChanged(); 104 104 virtual void sltMouseCapabilityChanged(); 105 virtual void sltKeyboardLedsChanged(); 105 106 virtual void sltUSBDeviceStateChange(const CUSBDevice &device, bool fIsAttached, const CVirtualBoxErrorInfo &error); 106 107 virtual void sltRuntimeError(bool fIsFatal, const QString &strErrorId, const QString &strMessage);
Note:
See TracChangeset
for help on using the changeset viewer.