Changeset 30871 in vbox
- Timestamp:
- Jul 16, 2010 10:07:21 AM (14 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 15 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r30825 r30871 153 153 switch (aType) 154 154 { 155 case VBoxEventType_OnGuestPropertyChange :155 case VBoxEventType_OnGuestPropertyChanged: 156 156 { 157 157 ComPtr<IGuestPropertyChangedEvent> gpcev = aEvent; … … 286 286 switch (aType) 287 287 { 288 case VBoxEventType_OnMouseCapabilityChange :288 case VBoxEventType_OnMouseCapabilityChanged: 289 289 { 290 290 … … 311 311 break; 312 312 } 313 case VBoxEventType_OnStateChange :313 case VBoxEventType_OnStateChanged: 314 314 { 315 315 ComPtr<IStateChangedEvent> scev = aEvent; … … 322 322 break; 323 323 } 324 case VBoxEventType_OnRemoteDisplayInfoChange :324 case VBoxEventType_OnRemoteDisplayInfoChanged: 325 325 { 326 326 ComPtr<IRemoteDisplayInfoChangedEvent> rdicev = aEvent; … … 996 996 consoleListener->AddRef(); 997 997 com::SafeArray <VBoxEventType_T> eventTypes; 998 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChange );999 eventTypes.push_back(VBoxEventType_OnStateChange );1000 eventTypes.push_back(VBoxEventType_OnRemoteDisplayInfoChange );998 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChanged); 999 eventTypes.push_back(VBoxEventType_OnStateChanged); 1000 eventTypes.push_back(VBoxEventType_OnRemoteDisplayInfoChanged); 1001 1001 eventTypes.push_back(VBoxEventType_OnCanShowWindow); 1002 1002 eventTypes.push_back(VBoxEventType_OnShowWindow); … … 1091 1091 vboxListener->AddRef(); 1092 1092 com::SafeArray <VBoxEventType_T> eventTypes; 1093 eventTypes.push_back(VBoxEventType_OnGuestPropertyChange );1093 eventTypes.push_back(VBoxEventType_OnGuestPropertyChanged); 1094 1094 CHECK_ERROR(es, RegisterListener(vboxListener, ComSafeArrayAsInParam(eventTypes), true)); 1095 1095 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp
r30825 r30871 310 310 CHECK_ERROR(es, CreateListener(listener.asOutParam())); 311 311 com::SafeArray <VBoxEventType_T> eventTypes(1); 312 eventTypes.push_back(VBoxEventType_OnGuestPropertyChange );312 eventTypes.push_back(VBoxEventType_OnGuestPropertyChanged); 313 313 CHECK_ERROR(es, RegisterListener(listener, ComSafeArrayAsInParam(eventTypes), false)); 314 314 … … 336 336 switch (aType) 337 337 { 338 case VBoxEventType_OnGuestPropertyChange :338 case VBoxEventType_OnGuestPropertyChanged: 339 339 { 340 340 ComPtr<IGuestPropertyChangedEvent> gpcev = ev; -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r30825 r30871 273 273 switch (aType) 274 274 { 275 case VBoxEventType_OnExtraDataChange :275 case VBoxEventType_OnExtraDataChanged: 276 276 { 277 277 #ifdef VBOX_SECURELABEL … … 364 364 switch (aType) 365 365 { 366 case VBoxEventType_OnMousePointerShapeChange :366 case VBoxEventType_OnMousePointerShapeChanged: 367 367 { 368 368 ComPtr<IMousePointerShapeChangedEvent> mpscev = aEvent; … … 397 397 break; 398 398 } 399 case VBoxEventType_OnMouseCapabilityChange :399 case VBoxEventType_OnMouseCapabilityChanged: 400 400 { 401 401 ComPtr<IMouseCapabilityChangedEvent> mccev = aEvent; … … 411 411 break; 412 412 } 413 case VBoxEventType_OnKeyboardLedsChange :413 case VBoxEventType_OnKeyboardLedsChanged: 414 414 { 415 415 ComPtr<IKeyboardLedsChangedEvent> klcev = aEvent; … … 430 430 } 431 431 432 case VBoxEventType_OnStateChange :432 case VBoxEventType_OnStateChanged: 433 433 { 434 434 ComPtr<IStateChangedEvent> scev = aEvent; … … 1842 1842 vboxListener->AddRef(); 1843 1843 com::SafeArray <VBoxEventType_T> eventTypes; 1844 eventTypes.push_back(VBoxEventType_OnExtraDataChange );1844 eventTypes.push_back(VBoxEventType_OnExtraDataChanged); 1845 1845 CHECK_ERROR(es, RegisterListener(vboxListener, ComSafeArrayAsInParam(eventTypes), true)); 1846 1846 } … … 1853 1853 consoleListener->AddRef(); 1854 1854 com::SafeArray <VBoxEventType_T> eventTypes; 1855 eventTypes.push_back(VBoxEventType_OnMousePointerShapeChange );1856 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChange );1857 eventTypes.push_back(VBoxEventType_OnKeyboardLedsChange );1858 eventTypes.push_back(VBoxEventType_OnStateChange );1855 eventTypes.push_back(VBoxEventType_OnMousePointerShapeChanged); 1856 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChanged); 1857 eventTypes.push_back(VBoxEventType_OnKeyboardLedsChanged); 1858 eventTypes.push_back(VBoxEventType_OnStateChanged); 1859 1859 eventTypes.push_back(VBoxEventType_OnRuntimeError); 1860 1860 eventTypes.push_back(VBoxEventType_OnCanShowWindow); -
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r30828 r30871 299 299 type = ev.type 300 300 print "got event: %s %s" %(str(type), asEnumElem(ctx, 'VBoxEventType', type)) 301 if type == ctx['global'].constants.VBoxEventType_OnMachineStateChange :301 if type == ctx['global'].constants.VBoxEventType_OnMachineStateChanged: 302 302 scev = ctx['global'].queryInterface(ev, 'IMachineStateChangedEvent') 303 303 if scev: 304 304 print "machine state event: mach=%s state=%s" %(scev.machineId, scev.state) 305 elif type == ctx['global'].constants.VBoxEventType_OnGuestPropertyChange :305 elif type == ctx['global'].constants.VBoxEventType_OnGuestPropertyChanged: 306 306 gpcev = ctx['global'].queryInterface(ev, 'IGuestPropertyChangedEvent') 307 307 if gpcev: 308 308 print "guest property change: name=%s value=%s" %(gpcev.name, gpcev.value) 309 elif type == ctx['global'].constants.VBoxEventType_OnMousePointerShapeChange :309 elif type == ctx['global'].constants.VBoxEventType_OnMousePointerShapeChanged: 310 310 psev = ctx['global'].queryInterface(ev, 'IMousePointerShapeChangedEvent') 311 311 if psev: -
trunk/src/VBox/Frontends/VirtualBox/src/UIVirtualBoxEventHandler.cpp
r30866 r30871 56 56 QVector<KVBoxEventType> events; 57 57 events 58 << KVBoxEventType_OnMachineStateChange 59 << KVBoxEventType_OnMachineDataChange 58 << KVBoxEventType_OnMachineStateChanged 59 << KVBoxEventType_OnMachineDataChanged 60 60 << KVBoxEventType_OnMachineRegistered 61 << KVBoxEventType_OnSessionStateChange 62 << KVBoxEventType_OnSnapshotChange ;61 << KVBoxEventType_OnSessionStateChanged 62 << KVBoxEventType_OnSnapshotChanged; 63 63 64 64 vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE); 65 65 AssertWrapperOk(vbox); 66 66 67 connect(pListener, SIGNAL(sigMachineStateChange (QString, KMachineState)),67 connect(pListener, SIGNAL(sigMachineStateChanged(QString, KMachineState)), 68 68 this, SIGNAL(sigMachineStateChange(QString, KMachineState)), 69 69 Qt::QueuedConnection); 70 70 71 connect(pListener, SIGNAL(sigMachineDataChange (QString)),71 connect(pListener, SIGNAL(sigMachineDataChanged(QString)), 72 72 this, SIGNAL(sigMachineDataChange(QString)), 73 73 Qt::QueuedConnection); … … 77 77 Qt::QueuedConnection); 78 78 79 connect(pListener, SIGNAL(sigSessionStateChange (QString, KSessionState)),79 connect(pListener, SIGNAL(sigSessionStateChanged(QString, KSessionState)), 80 80 this, SIGNAL(sigSessionStateChange(QString, KSessionState)), 81 81 Qt::QueuedConnection); 82 82 83 connect(pListener, SIGNAL(sigSnapshotChange (QString, QString)),83 connect(pListener, SIGNAL(sigSnapshotChanged(QString, QString)), 84 84 this, SIGNAL(sigSnapshotChange(QString, QString)), 85 85 Qt::QueuedConnection); … … 91 91 vbox.GetEventSource().UnregisterListener(m_mainEventListener); 92 92 } 93 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp
r30703 r30871 257 257 events 258 258 << KVBoxEventType_OnExtraDataCanChange 259 << KVBoxEventType_OnExtraDataChange ;259 << KVBoxEventType_OnExtraDataChanged; 260 260 261 261 vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE); … … 318 318 319 319 #include "UIExtraDataEventHandler.moc" 320 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r30825 r30871 64 64 * All VirtualBox Events 65 65 */ 66 case KVBoxEventType_OnMachineStateChange :66 case KVBoxEventType_OnMachineStateChanged: 67 67 { 68 68 CMachineStateChangedEvent es(event); … … 70 70 break; 71 71 } 72 case KVBoxEventType_OnMachineDataChange :72 case KVBoxEventType_OnMachineDataChanged: 73 73 { 74 74 CMachineDataChangedEvent es(event); … … 87 87 break; 88 88 } 89 case KVBoxEventType_OnExtraDataChange :89 case KVBoxEventType_OnExtraDataChanged: 90 90 { 91 91 CExtraDataChangedEvent es(event); … … 102 102 break; 103 103 } 104 case KVBoxEventType_OnSessionStateChange :104 case KVBoxEventType_OnSessionStateChanged: 105 105 { 106 106 CSessionStateChangedEvent es(event); … … 112 112 case KVBoxEventType_OnSnapshotDeleted: 113 113 */ 114 case KVBoxEventType_OnSnapshotChange :114 case KVBoxEventType_OnSnapshotChanged: 115 115 { 116 116 CSnapshotChangedEvent es(event); … … 124 124 * All Console Events 125 125 */ 126 case KVBoxEventType_OnMousePointerShapeChange :126 case KVBoxEventType_OnMousePointerShapeChanged: 127 127 { 128 128 CMousePointerShapeChangedEvent es(event); … … 130 130 break; 131 131 } 132 case KVBoxEventType_OnMouseCapabilityChange :132 case KVBoxEventType_OnMouseCapabilityChanged: 133 133 { 134 134 CMouseCapabilityChangedEvent es(event); … … 136 136 break; 137 137 } 138 case KVBoxEventType_OnKeyboardLedsChange :138 case KVBoxEventType_OnKeyboardLedsChanged: 139 139 { 140 140 CKeyboardLedsChangedEvent es(event); … … 142 142 break; 143 143 } 144 case KVBoxEventType_OnStateChange :144 case KVBoxEventType_OnStateChanged: 145 145 { 146 146 CStateChangedEvent es(event); … … 148 148 break; 149 149 } 150 case KVBoxEventType_OnAdditionsStateChange :150 case KVBoxEventType_OnAdditionsStateChanged: 151 151 { 152 152 emit sigAdditionsChange(); 153 153 break; 154 154 } 155 case KVBoxEventType_OnNetworkAdapterChange :155 case KVBoxEventType_OnNetworkAdapterChanged: 156 156 { 157 157 CNetworkAdapterChangedEvent es(event); … … 160 160 } 161 161 /* Not used * 162 case KVBoxEventType_OnSerialPortChange :163 case KVBoxEventType_OnParallelPortChange :164 case KVBoxEventType_OnStorageControllerChange :165 */ 166 case KVBoxEventType_OnMediumChange :162 case KVBoxEventType_OnSerialPortChanged: 163 case KVBoxEventType_OnParallelPortChanged: 164 case KVBoxEventType_OnStorageControllerChanged: 165 */ 166 case KVBoxEventType_OnMediumChanged: 167 167 { 168 168 CMediumChangedEvent es(event); … … 175 175 case KVBoxEventType_OnRemoteDisplayInfoChange: 176 176 */ 177 case KVBoxEventType_OnUSBControllerChange :177 case KVBoxEventType_OnUSBControllerChanged: 178 178 { 179 179 emit sigUSBControllerChange(); 180 180 break; 181 181 } 182 case KVBoxEventType_OnUSBDeviceStateChange :182 case KVBoxEventType_OnUSBDeviceStateChanged: 183 183 { 184 184 CUSBDeviceStateChangedEvent es(event); … … 186 186 break; 187 187 } 188 case KVBoxEventType_OnSharedFolderChange :188 case KVBoxEventType_OnSharedFolderChanged: 189 189 { 190 190 CSharedFolderChangedEvent es(event); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.cpp
r30703 r30871 63 63 QVector<KVBoxEventType> events; 64 64 events 65 << KVBoxEventType_OnMousePointerShapeChange 66 << KVBoxEventType_OnMouseCapabilityChange 67 << KVBoxEventType_OnKeyboardLedsChange 68 << KVBoxEventType_OnStateChange 69 << KVBoxEventType_OnAdditionsStateChange 70 << KVBoxEventType_OnNetworkAdapterChange 71 << KVBoxEventType_OnMediumChange 72 << KVBoxEventType_OnUSBControllerChange 73 << KVBoxEventType_OnUSBDeviceStateChange 74 << KVBoxEventType_OnSharedFolderChange 65 << KVBoxEventType_OnMousePointerShapeChanged 66 << KVBoxEventType_OnMouseCapabilityChanged 67 << KVBoxEventType_OnKeyboardLedsChanged 68 << KVBoxEventType_OnStateChanged 69 << KVBoxEventType_OnAdditionsStateChanged 70 << KVBoxEventType_OnNetworkAdapterChanged 71 << KVBoxEventType_OnMediumChanged 72 << KVBoxEventType_OnUSBControllerChanged 73 << KVBoxEventType_OnUSBDeviceStateChanged 74 << KVBoxEventType_OnSharedFolderChanged 75 75 << KVBoxEventType_OnRuntimeError 76 76 << KVBoxEventType_OnCanShowWindow -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVirtualBoxEventHandler.cpp
r30868 r30871 56 56 QVector<KVBoxEventType> events; 57 57 events 58 << KVBoxEventType_OnMachineStateChange 59 << KVBoxEventType_OnMachineDataChange 58 << KVBoxEventType_OnMachineStateChanged 59 << KVBoxEventType_OnMachineDataChanged 60 60 << KVBoxEventType_OnMachineRegistered 61 << KVBoxEventType_OnSessionStateChange 62 << KVBoxEventType_OnSnapshotChange ;61 << KVBoxEventType_OnSessionStateChanged 62 << KVBoxEventType_OnSnapshotChanged; 63 63 64 64 vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE); 65 65 AssertWrapperOk(vbox); 66 66 67 connect(pListener, SIGNAL(sigMachineStateChange (QString, KMachineState)),67 connect(pListener, SIGNAL(sigMachineStateChanged(QString, KMachineState)), 68 68 this, SIGNAL(sigMachineStateChange(QString, KMachineState)), 69 69 Qt::QueuedConnection); 70 70 71 connect(pListener, SIGNAL(sigMachineDataChange (QString)),71 connect(pListener, SIGNAL(sigMachineDataChanged(QString)), 72 72 this, SIGNAL(sigMachineDataChange(QString)), 73 73 Qt::QueuedConnection); … … 77 77 Qt::QueuedConnection); 78 78 79 connect(pListener, SIGNAL(sigSessionStateChange (QString, KSessionState)),79 connect(pListener, SIGNAL(sigSessionStateChanged(QString, KSessionState)), 80 80 this, SIGNAL(sigSessionStateChange(QString, KSessionState)), 81 81 Qt::QueuedConnection); 82 82 83 connect(pListener, SIGNAL(sigSnapshotChange (QString, QString)),83 connect(pListener, SIGNAL(sigSnapshotChanged(QString, QString)), 84 84 this, SIGNAL(sigSnapshotChange(QString, QString)), 85 85 Qt::QueuedConnection); … … 91 91 vbox.GetEventSource().UnregisterListener(m_mainEventListener); 92 92 } 93 -
trunk/src/VBox/Main/ConsoleImpl.cpp
r30842 r30871 258 258 typedef enum 259 259 { 260 kOnMousePointerShapeChange = 0,261 kOnMouseCapabilityChange ,262 kOnKeyboardLedsChange ,263 kOnStateChange ,264 kOnAdditionsStateChange ,265 kOnNetworkAdapterChange ,266 kOnSerialPortChange ,267 kOnParallelPortChange ,268 kOnStorageControllerChange ,269 kOnMediumChange ,270 kOnCPUChange ,271 kOnVRDPServerChange ,272 kOnRemoteDisplayInfoChange ,273 kOnUSBControllerChange ,274 kOnUSBDeviceStateChange ,275 kOnSharedFolderChange ,260 kOnMousePointerShapeChanged = 0, 261 kOnMouseCapabilityChanged, 262 kOnKeyboardLedsChanged, 263 kOnStateChanged, 264 kOnAdditionsStateChanged, 265 kOnNetworkAdapterChanged, 266 kOnSerialPortChanged, 267 kOnParallelPortChanged, 268 kOnStorageControllerChanged, 269 kOnMediumChanged, 270 kOnCPUChanged, 271 kOnVRDPServerChanged, 272 kOnRemoteDisplayInfoChanged, 273 kOnUSBControllerChanged, 274 kOnUSBDeviceStateChanged, 275 kOnSharedFolderChanged, 276 276 kOnRuntimeError, 277 277 kOnCanShowWindow, … … 304 304 * Macro for firing appropriate event. 305 305 * 306 * @param CallbackMethod The callback method, like OnKeyboardLedsChange.306 * @param Event Event, like OnKeyboardLedsChanged. 307 307 * @param InvokeCb Callbacks invocation code 308 308 * @param PreprEvent Event preparation code 309 309 * @param Args Number of callback arguments 310 310 */ 311 #define CONSOLE_DO_CALLBACKS_GEN( CallbackMethod, Args, MaybeComma) \311 #define CONSOLE_DO_CALLBACKS_GEN(Event, Args, MaybeComma) \ 312 312 do \ 313 313 { \ 314 314 VBoxEventDesc evDesc; \ 315 evDesc.init(mEventSource, VBoxEventType_## CallbackMethodMaybeComma Args); \315 evDesc.init(mEventSource, VBoxEventType_##Event MaybeComma Args); \ 316 316 evDesc.fire(/* don't wait for delivery */ 0); \ 317 317 } while (0) … … 2712 2712 2713 2713 /* notify console callbacks after the folder is added to the list */ 2714 CONSOLE_DO_CALLBACKS1(OnSharedFolderChange , Scope_Session);2714 CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Session); 2715 2715 2716 2716 return rc; … … 2769 2769 2770 2770 /* notify console callbacks after the folder is removed to the list */ 2771 CONSOLE_DO_CALLBACKS1(OnSharedFolderChange , Scope_Session);2771 CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Session); 2772 2772 2773 2773 return rc; … … 3442 3442 /* notify console callbacks on success */ 3443 3443 if (SUCCEEDED(rc)) 3444 CONSOLE_DO_CALLBACKS1(OnNetworkAdapterChange , aNetworkAdapter);3444 CONSOLE_DO_CALLBACKS1(OnNetworkAdapterChanged, aNetworkAdapter); 3445 3445 3446 3446 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3658 3658 /* notify console callbacks on success */ 3659 3659 if (SUCCEEDED(rc)) 3660 CONSOLE_DO_CALLBACKS1(OnSerialPortChange , aSerialPort);3660 CONSOLE_DO_CALLBACKS1(OnSerialPortChanged, aSerialPort); 3661 3661 3662 3662 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3692 3692 /* notify console callbacks on success */ 3693 3693 if (SUCCEEDED(rc)) 3694 CONSOLE_DO_CALLBACKS1(OnParallelPortChange , aParallelPort);3694 CONSOLE_DO_CALLBACKS1(OnParallelPortChanged, aParallelPort); 3695 3695 3696 3696 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3726 3726 /* notify console callbacks on success */ 3727 3727 if (SUCCEEDED(rc)) 3728 CONSOLE_DO_CALLBACKS0(OnStorageControllerChange );3728 CONSOLE_DO_CALLBACKS0(OnStorageControllerChanged); 3729 3729 3730 3730 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3760 3760 /* notify console callbacks on success */ 3761 3761 if (SUCCEEDED(rc)) 3762 CONSOLE_DO_CALLBACKS1(OnMediumChange , aMediumAttachment);3762 CONSOLE_DO_CALLBACKS1(OnMediumChanged, aMediumAttachment); 3763 3763 3764 3764 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3797 3797 /* notify console callbacks on success */ 3798 3798 if (SUCCEEDED(rc)) 3799 CONSOLE_DO_CALLBACKS2(OnCPUChange , aCPU, aRemove);3799 CONSOLE_DO_CALLBACKS2(OnCPUChanged, aCPU, aRemove); 3800 3800 3801 3801 LogFlowThisFunc(("Leaving rc=%#x\n", rc)); … … 3861 3861 /* notify console callbacks on success */ 3862 3862 if (SUCCEEDED(rc)) 3863 CONSOLE_DO_CALLBACKS0(OnVRDPServerChange );3863 CONSOLE_DO_CALLBACKS0(OnVRDPServerChanged); 3864 3864 3865 3865 return rc; … … 3876 3876 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 3877 3877 3878 CONSOLE_DO_CALLBACKS0(OnRemoteDisplayInfoChange );3878 CONSOLE_DO_CALLBACKS0(OnRemoteDisplayInfoChanged); 3879 3879 } 3880 3880 … … 3916 3916 /* notify console callbacks on success */ 3917 3917 if (SUCCEEDED(rc)) 3918 CONSOLE_DO_CALLBACKS0(OnUSBControllerChange );3918 CONSOLE_DO_CALLBACKS0(OnUSBControllerChanged); 3919 3919 3920 3920 return rc; … … 3941 3941 { 3942 3942 if (aGlobal) 3943 CONSOLE_DO_CALLBACKS1(OnSharedFolderChange , Scope_Global);3943 CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Global); 3944 3944 else 3945 CONSOLE_DO_CALLBACKS1(OnSharedFolderChange , Scope_Machine);3945 CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Machine); 3946 3946 } 3947 3947 … … 4601 4601 */ 4602 4602 #ifdef RT_OS_WINDOWS 4603 CONSOLE_DO_CALLBACKS7(OnMousePointerShapeChange , fVisible, fAlpha, xHot, yHot, width, height, pShape);4603 CONSOLE_DO_CALLBACKS7(OnMousePointerShapeChanged, fVisible, fAlpha, xHot, yHot, width, height, pShape); 4604 4604 #else 4605 CONSOLE_DO_CALLBACKS8(OnMousePointerShapeChange , fVisible, fAlpha, xHot, yHot, width, height, pShapeSize, pShape);4605 CONSOLE_DO_CALLBACKS8(OnMousePointerShapeChanged, fVisible, fAlpha, xHot, yHot, width, height, pShapeSize, pShape); 4606 4606 #endif 4607 4607 … … 4631 4631 mCallbackData.mcc.valid = true; 4632 4632 4633 CONSOLE_DO_CALLBACKS3(OnMouseCapabilityChange , supportsAbsolute, supportsRelative, needsHostCursor);4633 CONSOLE_DO_CALLBACKS3(OnMouseCapabilityChanged, supportsAbsolute, supportsRelative, needsHostCursor); 4634 4634 } 4635 4635 … … 4643 4643 4644 4644 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 4645 CONSOLE_DO_CALLBACKS1(OnStateChange , machineState);4645 CONSOLE_DO_CALLBACKS1(OnStateChanged, machineState); 4646 4646 } 4647 4647 … … 4655 4655 4656 4656 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 4657 CONSOLE_DO_CALLBACKS0(OnAdditionsStateChange );4657 CONSOLE_DO_CALLBACKS0(OnAdditionsStateChanged); 4658 4658 } 4659 4659 … … 4692 4692 mCallbackData.klc.valid = true; 4693 4693 4694 CONSOLE_DO_CALLBACKS3(OnKeyboardLedsChange , fNumLock, fCapsLock, fScrollLock);4694 CONSOLE_DO_CALLBACKS3(OnKeyboardLedsChanged, fNumLock, fCapsLock, fScrollLock); 4695 4695 } 4696 4696 … … 4705 4705 4706 4706 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 4707 CONSOLE_DO_CALLBACKS3(OnUSBDeviceStateChange , aDevice, aAttached, aError);4707 CONSOLE_DO_CALLBACKS3(OnUSBDeviceStateChanged, aDevice, aAttached, aError); 4708 4708 } 4709 4709 -
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r30825 r30871 89 89 switch (aType) 90 90 { 91 case VBoxEventType_OnMousePointerShapeChange :91 case VBoxEventType_OnMousePointerShapeChanged: 92 92 { 93 93 ComPtr<IMousePointerShapeChangedEvent> mpscev = aEvent; … … 108 108 break; 109 109 } 110 case VBoxEventType_OnMouseCapabilityChange :110 case VBoxEventType_OnMouseCapabilityChanged: 111 111 { 112 112 ComPtr<IMouseCapabilityChangedEvent> mccev = aEvent; … … 120 120 break; 121 121 } 122 case VBoxEventType_OnKeyboardLedsChange :122 case VBoxEventType_OnKeyboardLedsChanged: 123 123 { 124 124 ComPtr<IKeyboardLedsChangedEvent> klcev = aEvent; … … 1161 1161 mConsoleListener->AddRef(); 1162 1162 com::SafeArray <VBoxEventType_T> eventTypes; 1163 eventTypes.push_back(VBoxEventType_OnMousePointerShapeChange );1164 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChange );1165 eventTypes.push_back(VBoxEventType_OnKeyboardLedsChange );1163 eventTypes.push_back(VBoxEventType_OnMousePointerShapeChanged); 1164 eventTypes.push_back(VBoxEventType_OnMouseCapabilityChanged); 1165 eventTypes.push_back(VBoxEventType_OnKeyboardLedsChanged); 1166 1166 es->RegisterListener(mConsoleListener, ComSafeArrayAsInParam(eventTypes), true); 1167 1167 } -
trunk/src/VBox/Main/DisplayImpl.cpp
r30825 r30871 653 653 mParent->COMGETTER(EventSource)(es.asOutParam()); 654 654 com::SafeArray <VBoxEventType_T> eventTypes; 655 eventTypes.push_back(VBoxEventType_OnStateChange );655 eventTypes.push_back(VBoxEventType_OnStateChanged); 656 656 es->RegisterListener(this, ComSafeArrayAsInParam(eventTypes), true); 657 657 } … … 745 745 switch (aType) 746 746 { 747 case VBoxEventType_OnStateChange :747 case VBoxEventType_OnStateChanged: 748 748 { 749 749 ComPtr<IStateChangedEvent> scev = aEvent; -
trunk/src/VBox/Main/EventImpl.cpp
r30825 r30871 682 682 return TRUE; 683 683 case VBoxEventType_MachineEvent: 684 return (what == VBoxEventType_OnMachineStateChange )685 || (what == VBoxEventType_OnMachineDataChange )684 return (what == VBoxEventType_OnMachineStateChanged) 685 || (what == VBoxEventType_OnMachineDataChanged) 686 686 || (what == VBoxEventType_OnMachineRegistered) 687 || (what == VBoxEventType_OnSessionStateChange )688 || (what == VBoxEventType_OnGuestPropertyChange );687 || (what == VBoxEventType_OnSessionStateChanged) 688 || (what == VBoxEventType_OnGuestPropertyChanged); 689 689 case VBoxEventType_SnapshotEvent: 690 690 return (what == VBoxEventType_OnSnapshotTaken) 691 691 || (what == VBoxEventType_OnSnapshotDeleted) 692 || (what == VBoxEventType_OnSnapshotChange) 692 || (what == VBoxEventType_OnSnapshotChanged) 693 ; 694 case VBoxEventType_InputEvent: 695 return (what == VBoxEventType_OnKeyboardLedsChanged) 696 || (what == VBoxEventType_OnMousePointerShapeChanged) 697 || (what == VBoxEventType_OnMouseCapabilityChanged) 693 698 ; 694 699 case VBoxEventType_Invalid: 695 700 return FALSE; 696 } 697 return who == what; 701 default: 702 return who == what; 703 } 698 704 } 699 705 … … 923 929 924 930 VBoxEventDesc evDesc; 925 evDesc.init(this, VBoxEventType_OnEventSourceChange , aListener, TRUE);931 evDesc.init(this, VBoxEventType_OnEventSourceChanged, aListener, TRUE); 926 932 evDesc.fire(0); 927 933 … … 958 964 { 959 965 VBoxEventDesc evDesc; 960 evDesc.init(this, VBoxEventType_OnEventSourceChange , aListener, FALSE);966 evDesc.init(this, VBoxEventType_OnEventSourceChanged, aListener, FALSE); 961 967 evDesc.fire(0); 962 968 } -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r30847 r30871 121 121 typedef enum 122 122 { 123 kOnMachineStateChange = 0,124 kOnMachineDataChange ,123 kOnMachineStateChanged = 0, 124 kOnMachineDataChanged, 125 125 kOnExtraDataCanChange, 126 kOnExtraDataChange ,126 kOnExtraDataChanged, 127 127 kOnMediumRegistered, 128 128 kOnMachineRegistered, 129 kOnSessionStateChange ,129 kOnSessionStateChanged, 130 130 kOnSnapshotTaken, 131 131 kOnSnapshotDeleted, 132 kOnSnapshotChange ,133 kOnGuestPropertyChange 132 kOnSnapshotChanged, 133 kOnGuestPropertyChanged 134 134 } CallbackBit; 135 135 … … 2469 2469 { 2470 2470 MachineEvent(VirtualBox *aVB, const Guid &aId) 2471 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineDataChange ), id(aId.toUtf16())2471 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineDataChanged), id(aId.toUtf16()) 2472 2472 {} 2473 2473 2474 2474 MachineEvent(VirtualBox *aVB, const Guid &aId, MachineState_T aState) 2475 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineStateChange ), id(aId.toUtf16())2475 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineStateChanged), id(aId.toUtf16()) 2476 2476 , state(aState) 2477 2477 {} … … 2486 2486 switch (mWhat) 2487 2487 { 2488 case VirtualBoxCallbackRegistration::kOnMachineDataChange :2489 aEvDesc.init(aSource, VBoxEventType_OnMachineDataChange , id.raw());2488 case VirtualBoxCallbackRegistration::kOnMachineDataChanged: 2489 aEvDesc.init(aSource, VBoxEventType_OnMachineDataChanged, id.raw()); 2490 2490 break; 2491 2491 2492 case VirtualBoxCallbackRegistration::kOnMachineStateChange :2493 aEvDesc.init(aSource, VBoxEventType_OnMachineStateChange , id.raw(), state);2492 case VirtualBoxCallbackRegistration::kOnMachineStateChanged: 2493 aEvDesc.init(aSource, VBoxEventType_OnMachineStateChanged, id.raw(), state); 2494 2494 break; 2495 2495 … … 2574 2574 ExtraDataEvent(VirtualBox *aVB, const Guid &aMachineId, 2575 2575 IN_BSTR aKey, IN_BSTR aVal) 2576 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnExtraDataChange )2576 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnExtraDataChanged) 2577 2577 , machineId(aMachineId.toUtf16()), key(aKey), val(aVal) 2578 2578 {} … … 2580 2580 virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc) 2581 2581 { 2582 return aEvDesc.init(aSource, VBoxEventType_OnExtraDataChange , machineId.raw(), key.raw(), val.raw());2582 return aEvDesc.init(aSource, VBoxEventType_OnExtraDataChanged, machineId.raw(), key.raw(), val.raw()); 2583 2583 } 2584 2584 … … 2606 2606 { 2607 2607 SessionEvent(VirtualBox *aVB, const Guid &aMachineId, SessionState_T aState) 2608 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnSessionStateChange )2608 : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnSessionStateChanged) 2609 2609 , machineId(aMachineId.toUtf16()), sessionState(aState) 2610 2610 {} … … 2612 2612 virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc) 2613 2613 { 2614 return aEvDesc.init(aSource, VBoxEventType_OnSessionStateChange , machineId.raw(), sessionState);2614 return aEvDesc.init(aSource, VBoxEventType_OnSessionStateChanged, machineId.raw(), sessionState); 2615 2615 } 2616 2616 Bstr machineId; … … 2669 2669 { 2670 2670 postEvent(new SnapshotEvent(this, aMachineId, aSnapshotId, 2671 VirtualBoxCallbackRegistration::kOnSnapshotChange ));2671 VirtualBoxCallbackRegistration::kOnSnapshotChanged)); 2672 2672 } 2673 2673 … … 2677 2677 GuestPropertyEvent(VirtualBox *aVBox, const Guid &aMachineId, 2678 2678 IN_BSTR aName, IN_BSTR aValue, IN_BSTR aFlags) 2679 : CallbackEvent(aVBox, VirtualBoxCallbackRegistration::kOnGuestPropertyChange ),2679 : CallbackEvent(aVBox, VirtualBoxCallbackRegistration::kOnGuestPropertyChanged), 2680 2680 machineId(aMachineId), 2681 2681 name(aName), … … 2686 2686 virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc) 2687 2687 { 2688 return aEvDesc.init(aSource, VBoxEventType_OnGuestPropertyChange ,2688 return aEvDesc.init(aSource, VBoxEventType_OnGuestPropertyChanged, 2689 2689 machineId.toUtf16().raw(), name.raw(), value.raw(), flags.raw()); 2690 2690 } -
trunk/src/VBox/Main/glue/tests/TestVBox.java
r30825 r30871 27 27 switch (type) 28 28 { 29 case OnMachineStateChange :29 case OnMachineStateChanged: 30 30 IMachineStateChangedEvent mcse = IMachineStateChangedEvent.queryInterface(ev); 31 31 if (mcse == null) -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r30825 r30871 13742 13742 <enum 13743 13743 name="VBoxEventType" 13744 uuid=" 25bf47c8-9972-4274-86ea-e6c479796c4a">13744 uuid="7d695029-32b8-4855-86d3-75de9082923b"> 13745 13745 13746 13746 <desc> … … 13789 13789 </const> 13790 13790 13791 <const name="OnMachineStateChange " value="32">13791 <const name="OnMachineStateChanged" value="32"> 13792 13792 <desc> 13793 13793 <see>IMachineStateChangedEvent</see> 13794 13794 </desc> 13795 13795 </const> 13796 <const name="OnMachineDataChange " value="33">13796 <const name="OnMachineDataChanged" value="33"> 13797 13797 <desc> 13798 13798 <see>IMachineDataChangedEvent</see> 13799 13799 </desc> 13800 13800 </const> 13801 <const name="OnExtraDataChange " value="34">13801 <const name="OnExtraDataChanged" value="34"> 13802 13802 <desc> 13803 13803 <see>IExtraDataChangedEvent</see> … … 13819 13819 </desc> 13820 13820 </const> 13821 <const name="OnSessionStateChange " value="38">13821 <const name="OnSessionStateChanged" value="38"> 13822 13822 <desc> 13823 13823 <see>ISessionStateChangedEvent</see> … … 13834 13834 </desc> 13835 13835 </const> 13836 <const name="OnSnapshotChange " value="41">13836 <const name="OnSnapshotChanged" value="41"> 13837 13837 <desc> 13838 13838 <see>ISnapshotChangedEvent</see> 13839 13839 </desc> 13840 13840 </const> 13841 <const name="OnGuestPropertyChange " value="42">13841 <const name="OnGuestPropertyChanged" value="42"> 13842 13842 <desc> 13843 13843 <see>IGuestPropertyChangedEvent</see> … … 13845 13845 </const> 13846 13846 <!-- Console events --> 13847 <const name="OnMousePointerShapeChange " value="43">13847 <const name="OnMousePointerShapeChanged" value="43"> 13848 13848 <desc> 13849 13849 <see>IMousePointerShapeChangedEvent</see> 13850 13850 </desc> 13851 13851 </const> 13852 <const name="OnMouseCapabilityChange " value="44">13852 <const name="OnMouseCapabilityChanged" value="44"> 13853 13853 <desc> 13854 13854 <see>IMouseCapabilityChangedEvent</see> 13855 13855 </desc> 13856 13856 </const> 13857 <const name="OnKeyboardLedsChange " value="45">13857 <const name="OnKeyboardLedsChanged" value="45"> 13858 13858 <desc> 13859 13859 <see>IKeyboardLedsChangedEvent</see> 13860 13860 </desc> 13861 13861 </const> 13862 <const name="OnStateChange " value="46">13862 <const name="OnStateChanged" value="46"> 13863 13863 <desc> 13864 13864 <see>IStateChangedEvent</see> 13865 13865 </desc> 13866 13866 </const> 13867 <const name="OnAdditionsStateChange " value="47">13867 <const name="OnAdditionsStateChanged" value="47"> 13868 13868 <desc> 13869 13869 <see>IAdditionsStateChangedEvent</see> 13870 13870 </desc> 13871 13871 </const> 13872 <const name="OnNetworkAdapterChange " value="48">13872 <const name="OnNetworkAdapterChanged" value="48"> 13873 13873 <desc> 13874 13874 <see>INetworkAdapterChangedEvent</see> 13875 13875 </desc> 13876 13876 </const> 13877 <const name="OnSerialPortChange " value="49">13877 <const name="OnSerialPortChanged" value="49"> 13878 13878 <desc> 13879 13879 <see>ISerialPortChangedEvent</see> 13880 13880 </desc> 13881 13881 </const> 13882 <const name="OnParallelPortChange " value="50">13882 <const name="OnParallelPortChanged" value="50"> 13883 13883 <desc> 13884 13884 <see>IParallelPortChangedEvent</see> 13885 13885 </desc> 13886 13886 </const> 13887 <const name="OnStorageControllerChange " value="51">13887 <const name="OnStorageControllerChanged" value="51"> 13888 13888 <desc> 13889 13889 <see>IStorageControllerChangedEvent</see> 13890 13890 </desc> 13891 13891 </const> 13892 <const name="OnMediumChange " value="52">13892 <const name="OnMediumChanged" value="52"> 13893 13893 <desc> 13894 13894 <see>IMediumChangedEvent</see> 13895 13895 </desc> 13896 13896 </const> 13897 <const name="OnVRDPServerChange " value="53">13897 <const name="OnVRDPServerChanged" value="53"> 13898 13898 <desc> 13899 13899 <see>IVRDPServerChangedEvent</see> 13900 13900 </desc> 13901 13901 </const> 13902 <const name="OnUSBControllerChange " value="54">13902 <const name="OnUSBControllerChanged" value="54"> 13903 13903 <desc> 13904 13904 <see>IUSBControllerChangedEvent</see> 13905 13905 </desc> 13906 13906 </const> 13907 <const name="OnUSBDeviceStateChange " value="55">13907 <const name="OnUSBDeviceStateChanged" value="55"> 13908 13908 <desc> 13909 13909 <see>IUSBDeviceStateChangedEvent</see> 13910 13910 </desc> 13911 13911 </const> 13912 <const name="OnSharedFolderChange " value="56">13912 <const name="OnSharedFolderChanged" value="56"> 13913 13913 <desc> 13914 13914 <see>ISharedFolderChangedEvent</see> … … 13930 13930 </desc> 13931 13931 </const> 13932 <const name="OnCPUChange " value="60">13932 <const name="OnCPUChanged" value="60"> 13933 13933 <desc> 13934 13934 <see>ICPUChangedEvent</see> 13935 13935 </desc> 13936 13936 </const> 13937 <const name="OnRemoteDisplayInfoChange " value="61">13937 <const name="OnRemoteDisplayInfoChanged" value="61"> 13938 13938 <desc> 13939 13939 <see>IRemoteDisplayInfoChangedEvent</see> 13940 13940 </desc> 13941 13941 </const> 13942 <const name="OnEventSourceChange " value="62">13942 <const name="OnEventSourceChanged" value="62"> 13943 13943 <desc> 13944 13944 <see>IEventSourceChangedEvent</see> … … 14152 14152 name="IMachineStateChangedEvent" extends="IMachineEvent" 14153 14153 uuid="5748F794-48DF-438D-85EB-98FFD70D18C9" 14154 wsmap="managed" autogen="VBoxEvent" id="OnMachineStateChange "14154 wsmap="managed" autogen="VBoxEvent" id="OnMachineStateChanged" 14155 14155 > 14156 14156 <desc>Machine state change event.</desc> … … 14164 14164 name="IMachineDataChangedEvent" extends="IMachineEvent" 14165 14165 uuid="6AA70A6C-0DCA-4810-8C5C-457B278E3D49" 14166 wsmap="managed" autogen="VBoxEvent" id="OnMachineDataChange "14166 wsmap="managed" autogen="VBoxEvent" id="OnMachineDataChanged" 14167 14167 > 14168 14168 <desc> … … 14192 14192 name="ISessionStateChangedEvent" extends="IMachineEvent" 14193 14193 uuid="714a3eef-799a-4489-86cd-fe8e45b2ff8e" 14194 wsmap="managed" autogen="VBoxEvent" id="OnSessionStateChange "14194 wsmap="managed" autogen="VBoxEvent" id="OnSessionStateChanged" 14195 14195 > 14196 14196 <desc> … … 14209 14209 name="IGuestPropertyChangedEvent" extends="IMachineEvent" 14210 14210 uuid="3f63597a-26f1-4edb-8dd2-6bddd0912368" 14211 wsmap="managed" autogen="VBoxEvent" id="OnGuestPropertyChange "14211 wsmap="managed" autogen="VBoxEvent" id="OnGuestPropertyChanged" 14212 14212 > 14213 14213 <desc> … … 14280 14280 name="ISnapshotChangedEvent" extends="ISnapshotEvent" 14281 14281 uuid="07541941-8079-447a-a33e-47a69c7980db" 14282 wsmap="managed" autogen="VBoxEvent" id="OnSnapshotChange "14282 wsmap="managed" autogen="VBoxEvent" id="OnSnapshotChanged" 14283 14283 > 14284 14284 <desc> … … 14291 14291 name="IMousePointerShapeChangedEvent" extends="IEvent" 14292 14292 uuid="a6dcf6e8-416b-4181-8c4a-45ec95177aef" 14293 wsmap="managed" autogen="VBoxEvent" id="OnMousePointerShapeChange "14293 wsmap="managed" autogen="VBoxEvent" id="OnMousePointerShapeChanged" 14294 14294 > 14295 14295 <desc> … … 14364 14364 name="IMouseCapabilityChangedEvent" extends="IEvent" 14365 14365 uuid="d633ad48-820c-4207-b46c-6bd3596640d5" 14366 wsmap="managed" autogen="VBoxEvent" id="OnMouseCapabilityChange "14366 wsmap="managed" autogen="VBoxEvent" id="OnMouseCapabilityChanged" 14367 14367 > 14368 14368 <desc> … … 14390 14390 name="IKeyboardLedsChangedEvent" extends="IEvent" 14391 14391 uuid="6DDEF35E-4737-457B-99FC-BC52C851A44F" 14392 wsmap="managed" autogen="VBoxEvent" id="OnKeyboardLedsChange "14392 wsmap="managed" autogen="VBoxEvent" id="OnKeyboardLedsChanged" 14393 14393 > 14394 14394 <desc> … … 14416 14416 name="IStateChangedEvent" extends="IEvent" 14417 14417 uuid="4376693C-CF37-453B-9289-3B0F521CAF27" 14418 wsmap="managed" autogen="VBoxEvent" id="OnStateChange "14418 wsmap="managed" autogen="VBoxEvent" id="OnStateChanged" 14419 14419 > 14420 14420 <desc> … … 14432 14432 name="IAdditionsStateChangedEvent" extends="IEvent" 14433 14433 uuid="D70F7915-DA7C-44C8-A7AC-9F173490446A" 14434 wsmap="managed" autogen="VBoxEvent" id="OnAdditionsStateChange "14434 wsmap="managed" autogen="VBoxEvent" id="OnAdditionsStateChanged" 14435 14435 > 14436 14436 <desc> … … 14444 14444 name="INetworkAdapterChangedEvent" extends="IEvent" 14445 14445 uuid="08889892-1EC6-4883-801D-77F56CFD0103" 14446 wsmap="managed" autogen="VBoxEvent" id="OnNetworkAdapterChange "14446 wsmap="managed" autogen="VBoxEvent" id="OnNetworkAdapterChanged" 14447 14447 > 14448 14448 <desc> … … 14462 14462 name="ISerialPortChangedEvent" extends="IEvent" 14463 14463 uuid="3BA329DC-659C-488B-835C-4ECA7AE71C6C" 14464 wsmap="managed" autogen="VBoxEvent" id="OnSerialPortChange "14464 wsmap="managed" autogen="VBoxEvent" id="OnSerialPortChanged" 14465 14465 > 14466 14466 <desc> … … 14480 14480 name="IParallelPortChangedEvent" extends="IEvent" 14481 14481 uuid="813C99FC-9849-4F47-813E-24A75DC85615" 14482 wsmap="managed" autogen="VBoxEvent" id="OnParallelPortChange "14482 wsmap="managed" autogen="VBoxEvent" id="OnParallelPortChanged" 14483 14483 > 14484 14484 <desc> … … 14498 14498 name="IStorageControllerChangedEvent" extends="IEvent" 14499 14499 uuid="715212BF-DA59-426E-8230-3831FAA52C56" 14500 wsmap="managed" autogen="VBoxEvent" id="OnStorageControllerChange "14500 wsmap="managed" autogen="VBoxEvent" id="OnStorageControllerChanged" 14501 14501 > 14502 14502 <desc> … … 14510 14510 name="IMediumChangedEvent" extends="IEvent" 14511 14511 uuid="0FE2DA40-5637-472A-9736-72019EABD7DE" 14512 wsmap="managed" autogen="VBoxEvent" id="OnMediumChange "14512 wsmap="managed" autogen="VBoxEvent" id="OnMediumChanged" 14513 14513 > 14514 14514 <desc> … … 14527 14527 name="ICPUChangedEvent" extends="IEvent" 14528 14528 uuid="D0F0BECC-EE17-4D17-A8CC-383B0EB55E9D" 14529 wsmap="managed" autogen="VBoxEvent" id="OnCPUChange "14529 wsmap="managed" autogen="VBoxEvent" id="OnCPUChanged" 14530 14530 > 14531 14531 <desc> … … 14547 14547 name="IVRDPServerChangedEvent" extends="IEvent" 14548 14548 uuid="726038B6-6279-4A7A-8037-D041693D1915" 14549 wsmap="managed" autogen="VBoxEvent" id="OnVRDPServerChange "14549 wsmap="managed" autogen="VBoxEvent" id="OnVRDPServerChanged" 14550 14550 > 14551 14551 <desc> … … 14560 14560 name="IRemoteDisplayInfoChangedEvent" extends="IEvent" 14561 14561 uuid="65B556C5-2A99-47D8-B311-FC177F0914CD" 14562 wsmap="managed" autogen="VBoxEvent" id="OnRemoteDisplayInfoChange "14562 wsmap="managed" autogen="VBoxEvent" id="OnRemoteDisplayInfoChanged" 14563 14563 > 14564 14564 <desc> … … 14572 14572 name="IUSBControllerChangedEvent" extends="IEvent" 14573 14573 uuid="93BADC0C-61D9-4940-A084-E6BB29AF3D83" 14574 wsmap="managed" autogen="VBoxEvent" id="OnUSBControllerChange "14574 wsmap="managed" autogen="VBoxEvent" id="OnUSBControllerChanged" 14575 14575 > 14576 14576 <desc> … … 14585 14585 name="IUSBDeviceStateChangedEvent" extends="IEvent" 14586 14586 uuid="806da61b-6679-422a-b629-51b06b0c6d93" 14587 wsmap="managed" autogen="VBoxEvent" id="OnUSBDeviceStateChange "14587 wsmap="managed" autogen="VBoxEvent" id="OnUSBDeviceStateChanged" 14588 14588 > 14589 14589 <desc> … … 14626 14626 name="ISharedFolderChangedEvent" extends="IEvent" 14627 14627 uuid="B66349B5-3534-4239-B2DE-8E1535D94C0B" 14628 wsmap="managed" autogen="VBoxEvent" id="OnSharedFolderChange "14628 wsmap="managed" autogen="VBoxEvent" id="OnSharedFolderChanged" 14629 14629 > 14630 14630 <desc> … … 14724 14724 uuid="e7932cb8-f6d4-4ab6-9cbf-558eb8959a6a" 14725 14725 waitable="yes" 14726 wsmap="managed" autogen="VBoxEvent" id="OnEventSourceChange "14726 wsmap="managed" autogen="VBoxEvent" id="OnEventSourceChanged" 14727 14727 > 14728 14728 <desc> … … 14746 14746 name="IExtraDataChangedEvent" extends="IEvent" 14747 14747 uuid="024F00CE-6E0B-492A-A8D0-968472A94DC7" 14748 wsmap="managed" autogen="VBoxEvent" id="OnExtraDataChange "14748 wsmap="managed" autogen="VBoxEvent" id="OnExtraDataChanged" 14749 14749 > 14750 14750 <desc>
Note:
See TracChangeset
for help on using the changeset viewer.