VirtualBox

Changeset 30871 in vbox


Ignore:
Timestamp:
Jul 16, 2010 10:07:21 AM (14 years ago)
Author:
vboxsync
Message:

Main: event names now in past tense

Location:
trunk/src/VBox
Files:
15 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp

    r30825 r30871  
    153153        switch (aType)
    154154        {
    155             case VBoxEventType_OnGuestPropertyChange:
     155            case VBoxEventType_OnGuestPropertyChanged:
    156156            {
    157157                ComPtr<IGuestPropertyChangedEvent> gpcev = aEvent;
     
    286286        switch (aType)
    287287        {
    288             case VBoxEventType_OnMouseCapabilityChange:
     288            case VBoxEventType_OnMouseCapabilityChanged:
    289289            {
    290290
     
    311311                break;
    312312            }
    313             case VBoxEventType_OnStateChange:
     313            case VBoxEventType_OnStateChanged:
    314314            {
    315315                ComPtr<IStateChangedEvent> scev = aEvent;
     
    322322                break;
    323323            }
    324             case VBoxEventType_OnRemoteDisplayInfoChange:
     324            case VBoxEventType_OnRemoteDisplayInfoChanged:
    325325            {
    326326                ComPtr<IRemoteDisplayInfoChangedEvent> rdicev = aEvent;
     
    996996            consoleListener->AddRef();
    997997            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);
    10011001            eventTypes.push_back(VBoxEventType_OnCanShowWindow);
    10021002            eventTypes.push_back(VBoxEventType_OnShowWindow);
     
    10911091            vboxListener->AddRef();
    10921092            com::SafeArray <VBoxEventType_T> eventTypes;
    1093             eventTypes.push_back(VBoxEventType_OnGuestPropertyChange);
     1093            eventTypes.push_back(VBoxEventType_OnGuestPropertyChanged);
    10941094            CHECK_ERROR(es, RegisterListener(vboxListener, ComSafeArrayAsInParam(eventTypes), true));
    10951095        }
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestProp.cpp

    r30825 r30871  
    310310    CHECK_ERROR(es, CreateListener(listener.asOutParam()));
    311311    com::SafeArray <VBoxEventType_T> eventTypes(1);
    312     eventTypes.push_back(VBoxEventType_OnGuestPropertyChange);
     312    eventTypes.push_back(VBoxEventType_OnGuestPropertyChanged);
    313313    CHECK_ERROR(es, RegisterListener(listener, ComSafeArrayAsInParam(eventTypes), false));
    314314
     
    336336            switch (aType)
    337337            {
    338                 case VBoxEventType_OnGuestPropertyChange:
     338                case VBoxEventType_OnGuestPropertyChanged:
    339339                {
    340340                    ComPtr<IGuestPropertyChangedEvent> gpcev = ev;
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r30825 r30871  
    273273        switch (aType)
    274274        {
    275             case VBoxEventType_OnExtraDataChange:
     275            case VBoxEventType_OnExtraDataChanged:
    276276            {
    277277#ifdef VBOX_SECURELABEL
     
    364364        switch (aType)
    365365        {
    366             case VBoxEventType_OnMousePointerShapeChange:
     366            case VBoxEventType_OnMousePointerShapeChanged:
    367367            {
    368368                ComPtr<IMousePointerShapeChangedEvent> mpscev = aEvent;
     
    397397                break;
    398398            }
    399             case VBoxEventType_OnMouseCapabilityChange:
     399            case VBoxEventType_OnMouseCapabilityChanged:
    400400            {
    401401                ComPtr<IMouseCapabilityChangedEvent> mccev = aEvent;
     
    411411                break;
    412412            }
    413             case VBoxEventType_OnKeyboardLedsChange:
     413            case VBoxEventType_OnKeyboardLedsChanged:
    414414            {
    415415                ComPtr<IKeyboardLedsChangedEvent> klcev = aEvent;
     
    430430            }
    431431
    432             case VBoxEventType_OnStateChange:
     432            case VBoxEventType_OnStateChanged:
    433433            {
    434434                ComPtr<IStateChangedEvent> scev = aEvent;
     
    18421842        vboxListener->AddRef();
    18431843        com::SafeArray <VBoxEventType_T> eventTypes;
    1844         eventTypes.push_back(VBoxEventType_OnExtraDataChange);
     1844        eventTypes.push_back(VBoxEventType_OnExtraDataChanged);
    18451845        CHECK_ERROR(es, RegisterListener(vboxListener, ComSafeArrayAsInParam(eventTypes), true));
    18461846    }
     
    18531853        consoleListener->AddRef();
    18541854        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);
    18591859        eventTypes.push_back(VBoxEventType_OnRuntimeError);
    18601860        eventTypes.push_back(VBoxEventType_OnCanShowWindow);
  • trunk/src/VBox/Frontends/VBoxShell/vboxshell.py

    r30828 r30871  
    299299         type = ev.type
    300300         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:
    302302             scev = ctx['global'].queryInterface(ev, 'IMachineStateChangedEvent')
    303303             if scev:
    304304                 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:
    306306             gpcev = ctx['global'].queryInterface(ev, 'IGuestPropertyChangedEvent')
    307307             if gpcev:
    308308                 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:
    310310             psev = ctx['global'].queryInterface(ev, 'IMousePointerShapeChangedEvent')
    311311             if psev:
  • trunk/src/VBox/Frontends/VirtualBox/src/UIVirtualBoxEventHandler.cpp

    r30866 r30871  
    5656    QVector<KVBoxEventType> events;
    5757    events
    58         << KVBoxEventType_OnMachineStateChange
    59         << KVBoxEventType_OnMachineDataChange
     58        << KVBoxEventType_OnMachineStateChanged
     59        << KVBoxEventType_OnMachineDataChanged
    6060        << KVBoxEventType_OnMachineRegistered
    61         << KVBoxEventType_OnSessionStateChange
    62         << KVBoxEventType_OnSnapshotChange;
     61        << KVBoxEventType_OnSessionStateChanged
     62        << KVBoxEventType_OnSnapshotChanged;
    6363
    6464    vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE);
    6565    AssertWrapperOk(vbox);
    6666
    67     connect(pListener, SIGNAL(sigMachineStateChange(QString, KMachineState)),
     67    connect(pListener, SIGNAL(sigMachineStateChanged(QString, KMachineState)),
    6868            this, SIGNAL(sigMachineStateChange(QString, KMachineState)),
    6969            Qt::QueuedConnection);
    7070
    71     connect(pListener, SIGNAL(sigMachineDataChange(QString)),
     71    connect(pListener, SIGNAL(sigMachineDataChanged(QString)),
    7272            this, SIGNAL(sigMachineDataChange(QString)),
    7373            Qt::QueuedConnection);
     
    7777            Qt::QueuedConnection);
    7878
    79     connect(pListener, SIGNAL(sigSessionStateChange(QString, KSessionState)),
     79    connect(pListener, SIGNAL(sigSessionStateChanged(QString, KSessionState)),
    8080            this, SIGNAL(sigSessionStateChange(QString, KSessionState)),
    8181            Qt::QueuedConnection);
    8282
    83     connect(pListener, SIGNAL(sigSnapshotChange(QString, QString)),
     83    connect(pListener, SIGNAL(sigSnapshotChanged(QString, QString)),
    8484            this, SIGNAL(sigSnapshotChange(QString, QString)),
    8585            Qt::QueuedConnection);
     
    9191    vbox.GetEventSource().UnregisterListener(m_mainEventListener);
    9292}
    93 
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp

    r30703 r30871  
    257257    events
    258258        << KVBoxEventType_OnExtraDataCanChange
    259         << KVBoxEventType_OnExtraDataChange;
     259        << KVBoxEventType_OnExtraDataChanged;
    260260
    261261    vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE);
     
    318318
    319319#include "UIExtraDataEventHandler.moc"
    320 
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp

    r30825 r30871  
    6464         * All VirtualBox Events
    6565         */
    66         case KVBoxEventType_OnMachineStateChange:
     66        case KVBoxEventType_OnMachineStateChanged:
    6767        {
    6868            CMachineStateChangedEvent es(event);
     
    7070            break;
    7171        }
    72         case KVBoxEventType_OnMachineDataChange:
     72        case KVBoxEventType_OnMachineDataChanged:
    7373        {
    7474            CMachineDataChangedEvent es(event);
     
    8787            break;
    8888        }
    89         case KVBoxEventType_OnExtraDataChange:
     89        case KVBoxEventType_OnExtraDataChanged:
    9090        {
    9191            CExtraDataChangedEvent es(event);
     
    102102            break;
    103103        }
    104         case KVBoxEventType_OnSessionStateChange:
     104        case KVBoxEventType_OnSessionStateChanged:
    105105        {
    106106            CSessionStateChangedEvent es(event);
     
    112112        case KVBoxEventType_OnSnapshotDeleted:
    113113         */
    114         case KVBoxEventType_OnSnapshotChange:
     114        case KVBoxEventType_OnSnapshotChanged:
    115115        {
    116116            CSnapshotChangedEvent es(event);
     
    124124         * All Console Events
    125125         */
    126         case KVBoxEventType_OnMousePointerShapeChange:
     126        case KVBoxEventType_OnMousePointerShapeChanged:
    127127        {
    128128            CMousePointerShapeChangedEvent es(event);
     
    130130            break;
    131131        }
    132         case KVBoxEventType_OnMouseCapabilityChange:
     132        case KVBoxEventType_OnMouseCapabilityChanged:
    133133        {
    134134            CMouseCapabilityChangedEvent es(event);
     
    136136            break;
    137137        }
    138         case KVBoxEventType_OnKeyboardLedsChange:
     138        case KVBoxEventType_OnKeyboardLedsChanged:
    139139        {
    140140            CKeyboardLedsChangedEvent es(event);
     
    142142            break;
    143143        }
    144         case KVBoxEventType_OnStateChange:
     144        case KVBoxEventType_OnStateChanged:
    145145        {
    146146            CStateChangedEvent es(event);
     
    148148            break;
    149149        }
    150         case KVBoxEventType_OnAdditionsStateChange:
     150        case KVBoxEventType_OnAdditionsStateChanged:
    151151        {
    152152            emit sigAdditionsChange();
    153153            break;
    154154        }
    155         case KVBoxEventType_OnNetworkAdapterChange:
     155        case KVBoxEventType_OnNetworkAdapterChanged:
    156156        {
    157157            CNetworkAdapterChangedEvent es(event);
     
    160160        }
    161161        /* 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:
    167167        {
    168168            CMediumChangedEvent es(event);
     
    175175        case KVBoxEventType_OnRemoteDisplayInfoChange:
    176176         */
    177         case KVBoxEventType_OnUSBControllerChange:
     177        case KVBoxEventType_OnUSBControllerChanged:
    178178        {
    179179            emit sigUSBControllerChange();
    180180            break;
    181181        }
    182         case KVBoxEventType_OnUSBDeviceStateChange:
     182        case KVBoxEventType_OnUSBDeviceStateChanged:
    183183        {
    184184            CUSBDeviceStateChangedEvent es(event);
     
    186186            break;
    187187        }
    188         case KVBoxEventType_OnSharedFolderChange:
     188        case KVBoxEventType_OnSharedFolderChanged:
    189189        {
    190190            CSharedFolderChangedEvent es(event);
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.cpp

    r30703 r30871  
    6363    QVector<KVBoxEventType> events;
    6464    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
    7575        << KVBoxEventType_OnRuntimeError
    7676        << KVBoxEventType_OnCanShowWindow
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVirtualBoxEventHandler.cpp

    r30868 r30871  
    5656    QVector<KVBoxEventType> events;
    5757    events
    58         << KVBoxEventType_OnMachineStateChange
    59         << KVBoxEventType_OnMachineDataChange
     58        << KVBoxEventType_OnMachineStateChanged
     59        << KVBoxEventType_OnMachineDataChanged
    6060        << KVBoxEventType_OnMachineRegistered
    61         << KVBoxEventType_OnSessionStateChange
    62         << KVBoxEventType_OnSnapshotChange;
     61        << KVBoxEventType_OnSessionStateChanged
     62        << KVBoxEventType_OnSnapshotChanged;
    6363
    6464    vbox.GetEventSource().RegisterListener(m_mainEventListener, events, TRUE);
    6565    AssertWrapperOk(vbox);
    6666
    67     connect(pListener, SIGNAL(sigMachineStateChange(QString, KMachineState)),
     67    connect(pListener, SIGNAL(sigMachineStateChanged(QString, KMachineState)),
    6868            this, SIGNAL(sigMachineStateChange(QString, KMachineState)),
    6969            Qt::QueuedConnection);
    7070
    71     connect(pListener, SIGNAL(sigMachineDataChange(QString)),
     71    connect(pListener, SIGNAL(sigMachineDataChanged(QString)),
    7272            this, SIGNAL(sigMachineDataChange(QString)),
    7373            Qt::QueuedConnection);
     
    7777            Qt::QueuedConnection);
    7878
    79     connect(pListener, SIGNAL(sigSessionStateChange(QString, KSessionState)),
     79    connect(pListener, SIGNAL(sigSessionStateChanged(QString, KSessionState)),
    8080            this, SIGNAL(sigSessionStateChange(QString, KSessionState)),
    8181            Qt::QueuedConnection);
    8282
    83     connect(pListener, SIGNAL(sigSnapshotChange(QString, QString)),
     83    connect(pListener, SIGNAL(sigSnapshotChanged(QString, QString)),
    8484            this, SIGNAL(sigSnapshotChange(QString, QString)),
    8585            Qt::QueuedConnection);
     
    9191    vbox.GetEventSource().UnregisterListener(m_mainEventListener);
    9292}
    93 
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r30842 r30871  
    258258    typedef enum
    259259    {
    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,
    276276        kOnRuntimeError,
    277277        kOnCanShowWindow,
     
    304304 * Macro for firing appropriate event.
    305305 *
    306  * @param   CallbackMethod      The callback method, like OnKeyboardLedsChange.
     306 * @param   Event               Event, like OnKeyboardLedsChanged.
    307307 * @param   InvokeCb            Callbacks invocation code
    308308 * @param   PreprEvent          Event preparation code
    309309 * @param   Args                Number of callback arguments
    310310 */
    311 #define CONSOLE_DO_CALLBACKS_GEN(CallbackMethod, Args, MaybeComma) \
     311#define CONSOLE_DO_CALLBACKS_GEN(Event, Args, MaybeComma) \
    312312    do \
    313313    { \
    314314        VBoxEventDesc evDesc; \
    315         evDesc.init(mEventSource, VBoxEventType_##CallbackMethod MaybeComma Args);     \
     315        evDesc.init(mEventSource, VBoxEventType_##Event MaybeComma Args);     \
    316316        evDesc.fire(/* don't wait for delivery */ 0); \
    317317    } while (0)
     
    27122712
    27132713    /* 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);
    27152715
    27162716    return rc;
     
    27692769
    27702770    /* 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);
    27722772
    27732773    return rc;
     
    34423442    /* notify console callbacks on success */
    34433443    if (SUCCEEDED(rc))
    3444         CONSOLE_DO_CALLBACKS1(OnNetworkAdapterChange, aNetworkAdapter);
     3444        CONSOLE_DO_CALLBACKS1(OnNetworkAdapterChanged, aNetworkAdapter);
    34453445
    34463446    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    36583658    /* notify console callbacks on success */
    36593659    if (SUCCEEDED(rc))
    3660         CONSOLE_DO_CALLBACKS1(OnSerialPortChange, aSerialPort);
     3660        CONSOLE_DO_CALLBACKS1(OnSerialPortChanged, aSerialPort);
    36613661
    36623662    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    36923692    /* notify console callbacks on success */
    36933693    if (SUCCEEDED(rc))
    3694         CONSOLE_DO_CALLBACKS1(OnParallelPortChange, aParallelPort);
     3694        CONSOLE_DO_CALLBACKS1(OnParallelPortChanged, aParallelPort);
    36953695
    36963696    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    37263726    /* notify console callbacks on success */
    37273727    if (SUCCEEDED(rc))
    3728         CONSOLE_DO_CALLBACKS0(OnStorageControllerChange);
     3728        CONSOLE_DO_CALLBACKS0(OnStorageControllerChanged);
    37293729
    37303730    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    37603760    /* notify console callbacks on success */
    37613761    if (SUCCEEDED(rc))
    3762         CONSOLE_DO_CALLBACKS1(OnMediumChange, aMediumAttachment);
     3762        CONSOLE_DO_CALLBACKS1(OnMediumChanged, aMediumAttachment);
    37633763
    37643764    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    37973797    /* notify console callbacks on success */
    37983798    if (SUCCEEDED(rc))
    3799         CONSOLE_DO_CALLBACKS2(OnCPUChange, aCPU, aRemove);
     3799        CONSOLE_DO_CALLBACKS2(OnCPUChanged, aCPU, aRemove);
    38003800
    38013801    LogFlowThisFunc(("Leaving rc=%#x\n", rc));
     
    38613861    /* notify console callbacks on success */
    38623862    if (SUCCEEDED(rc))
    3863         CONSOLE_DO_CALLBACKS0(OnVRDPServerChange);
     3863        CONSOLE_DO_CALLBACKS0(OnVRDPServerChanged);
    38643864
    38653865    return rc;
     
    38763876    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    38773877
    3878     CONSOLE_DO_CALLBACKS0(OnRemoteDisplayInfoChange);
     3878    CONSOLE_DO_CALLBACKS0(OnRemoteDisplayInfoChanged);
    38793879}
    38803880
     
    39163916    /* notify console callbacks on success */
    39173917    if (SUCCEEDED(rc))
    3918         CONSOLE_DO_CALLBACKS0(OnUSBControllerChange);
     3918        CONSOLE_DO_CALLBACKS0(OnUSBControllerChanged);
    39193919
    39203920    return rc;
     
    39413941    {
    39423942        if (aGlobal)
    3943             CONSOLE_DO_CALLBACKS1(OnSharedFolderChange, Scope_Global);
     3943            CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Global);
    39443944        else
    3945             CONSOLE_DO_CALLBACKS1(OnSharedFolderChange, Scope_Machine);
     3945            CONSOLE_DO_CALLBACKS1(OnSharedFolderChanged, Scope_Machine);
    39463946    }
    39473947
     
    46014601     */
    46024602#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);
    46044604#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);
    46064606#endif
    46074607
     
    46314631    mCallbackData.mcc.valid = true;
    46324632
    4633     CONSOLE_DO_CALLBACKS3(OnMouseCapabilityChange, supportsAbsolute, supportsRelative, needsHostCursor);
     4633    CONSOLE_DO_CALLBACKS3(OnMouseCapabilityChanged, supportsAbsolute, supportsRelative, needsHostCursor);
    46344634}
    46354635
     
    46434643
    46444644    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    4645     CONSOLE_DO_CALLBACKS1(OnStateChange, machineState);
     4645    CONSOLE_DO_CALLBACKS1(OnStateChanged, machineState);
    46464646}
    46474647
     
    46554655
    46564656    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    4657     CONSOLE_DO_CALLBACKS0(OnAdditionsStateChange);
     4657    CONSOLE_DO_CALLBACKS0(OnAdditionsStateChanged);
    46584658}
    46594659
     
    46924692    mCallbackData.klc.valid = true;
    46934693
    4694     CONSOLE_DO_CALLBACKS3(OnKeyboardLedsChange, fNumLock, fCapsLock, fScrollLock);
     4694    CONSOLE_DO_CALLBACKS3(OnKeyboardLedsChanged, fNumLock, fCapsLock, fScrollLock);
    46954695}
    46964696
     
    47054705
    47064706    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    4707     CONSOLE_DO_CALLBACKS3(OnUSBDeviceStateChange, aDevice, aAttached, aError);
     4707    CONSOLE_DO_CALLBACKS3(OnUSBDeviceStateChanged, aDevice, aAttached, aError);
    47084708}
    47094709
  • trunk/src/VBox/Main/ConsoleVRDPServer.cpp

    r30825 r30871  
    8989        switch (aType)
    9090        {
    91             case VBoxEventType_OnMousePointerShapeChange:
     91            case VBoxEventType_OnMousePointerShapeChanged:
    9292            {
    9393                ComPtr<IMousePointerShapeChangedEvent> mpscev = aEvent;
     
    108108                break;
    109109            }
    110             case VBoxEventType_OnMouseCapabilityChange:
     110            case VBoxEventType_OnMouseCapabilityChanged:
    111111            {
    112112                ComPtr<IMouseCapabilityChangedEvent> mccev = aEvent;
     
    120120                break;
    121121            }
    122             case VBoxEventType_OnKeyboardLedsChange:
     122            case VBoxEventType_OnKeyboardLedsChanged:
    123123            {
    124124                ComPtr<IKeyboardLedsChangedEvent> klcev = aEvent;
     
    11611161        mConsoleListener->AddRef();
    11621162        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);
    11661166        es->RegisterListener(mConsoleListener, ComSafeArrayAsInParam(eventTypes), true);
    11671167    }
  • trunk/src/VBox/Main/DisplayImpl.cpp

    r30825 r30871  
    653653        mParent->COMGETTER(EventSource)(es.asOutParam());
    654654        com::SafeArray <VBoxEventType_T> eventTypes;
    655         eventTypes.push_back(VBoxEventType_OnStateChange);
     655        eventTypes.push_back(VBoxEventType_OnStateChanged);
    656656        es->RegisterListener(this, ComSafeArrayAsInParam(eventTypes), true);
    657657    }
     
    745745    switch (aType)
    746746    {
    747         case VBoxEventType_OnStateChange:
     747        case VBoxEventType_OnStateChanged:
    748748        {
    749749            ComPtr<IStateChangedEvent> scev = aEvent;
  • trunk/src/VBox/Main/EventImpl.cpp

    r30825 r30871  
    682682            return TRUE;
    683683        case VBoxEventType_MachineEvent:
    684             return     (what == VBoxEventType_OnMachineStateChange)
    685                     || (what == VBoxEventType_OnMachineDataChange)
     684            return     (what == VBoxEventType_OnMachineStateChanged)
     685                    || (what == VBoxEventType_OnMachineDataChanged)
    686686                    || (what == VBoxEventType_OnMachineRegistered)
    687                     || (what == VBoxEventType_OnSessionStateChange)
    688                     || (what == VBoxEventType_OnGuestPropertyChange);
     687                    || (what == VBoxEventType_OnSessionStateChanged)
     688                    || (what == VBoxEventType_OnGuestPropertyChanged);
    689689        case VBoxEventType_SnapshotEvent:
    690690            return     (what == VBoxEventType_OnSnapshotTaken)
    691691                    || (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)
    693698                    ;
    694699        case VBoxEventType_Invalid:
    695700            return FALSE;
    696     }
    697     return who == what;
     701        default:
     702            return who == what;
     703    }
    698704}
    699705
     
    923929
    924930    VBoxEventDesc evDesc;
    925     evDesc.init(this, VBoxEventType_OnEventSourceChange, aListener, TRUE);
     931    evDesc.init(this, VBoxEventType_OnEventSourceChanged, aListener, TRUE);
    926932    evDesc.fire(0);
    927933
     
    958964    {
    959965        VBoxEventDesc evDesc;
    960         evDesc.init(this, VBoxEventType_OnEventSourceChange, aListener, FALSE);
     966        evDesc.init(this, VBoxEventType_OnEventSourceChanged, aListener, FALSE);
    961967        evDesc.fire(0);
    962968    }
  • trunk/src/VBox/Main/VirtualBoxImpl.cpp

    r30847 r30871  
    121121    typedef enum
    122122    {
    123         kOnMachineStateChange = 0,
    124         kOnMachineDataChange,
     123        kOnMachineStateChanged = 0,
     124        kOnMachineDataChanged,
    125125        kOnExtraDataCanChange,
    126         kOnExtraDataChange,
     126        kOnExtraDataChanged,
    127127        kOnMediumRegistered,
    128128        kOnMachineRegistered,
    129         kOnSessionStateChange,
     129        kOnSessionStateChanged,
    130130        kOnSnapshotTaken,
    131131        kOnSnapshotDeleted,
    132         kOnSnapshotChange,
    133         kOnGuestPropertyChange
     132        kOnSnapshotChanged,
     133        kOnGuestPropertyChanged
    134134    } CallbackBit;
    135135
     
    24692469{
    24702470    MachineEvent(VirtualBox *aVB, const Guid &aId)
    2471         : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineDataChange), id(aId.toUtf16())
     2471        : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnMachineDataChanged), id(aId.toUtf16())
    24722472        {}
    24732473
    24742474    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())
    24762476        , state(aState)
    24772477        {}
     
    24862486        switch (mWhat)
    24872487        {
    2488             case VirtualBoxCallbackRegistration::kOnMachineDataChange:
    2489                 aEvDesc.init(aSource, VBoxEventType_OnMachineDataChange, id.raw());
     2488            case VirtualBoxCallbackRegistration::kOnMachineDataChanged:
     2489                aEvDesc.init(aSource, VBoxEventType_OnMachineDataChanged, id.raw());
    24902490                break;
    24912491
    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);
    24942494                break;
    24952495
     
    25742574    ExtraDataEvent(VirtualBox *aVB, const Guid &aMachineId,
    25752575                   IN_BSTR aKey, IN_BSTR aVal)
    2576         : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnExtraDataChange)
     2576        : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnExtraDataChanged)
    25772577        , machineId(aMachineId.toUtf16()), key(aKey), val(aVal)
    25782578    {}
     
    25802580    virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc)
    25812581    {
    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());
    25832583    }
    25842584
     
    26062606{
    26072607    SessionEvent(VirtualBox *aVB, const Guid &aMachineId, SessionState_T aState)
    2608         : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnSessionStateChange)
     2608        : CallbackEvent(aVB, VirtualBoxCallbackRegistration::kOnSessionStateChanged)
    26092609        , machineId(aMachineId.toUtf16()), sessionState(aState)
    26102610    {}
     
    26122612    virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc)
    26132613    {
    2614         return aEvDesc.init(aSource, VBoxEventType_OnSessionStateChange, machineId.raw(), sessionState);
     2614        return aEvDesc.init(aSource, VBoxEventType_OnSessionStateChanged, machineId.raw(), sessionState);
    26152615    }
    26162616    Bstr machineId;
     
    26692669{
    26702670    postEvent(new SnapshotEvent(this, aMachineId, aSnapshotId,
    2671                                 VirtualBoxCallbackRegistration::kOnSnapshotChange));
     2671                                VirtualBoxCallbackRegistration::kOnSnapshotChanged));
    26722672}
    26732673
     
    26772677    GuestPropertyEvent(VirtualBox *aVBox, const Guid &aMachineId,
    26782678                       IN_BSTR aName, IN_BSTR aValue, IN_BSTR aFlags)
    2679         : CallbackEvent(aVBox, VirtualBoxCallbackRegistration::kOnGuestPropertyChange),
     2679        : CallbackEvent(aVBox, VirtualBoxCallbackRegistration::kOnGuestPropertyChanged),
    26802680          machineId(aMachineId),
    26812681          name(aName),
     
    26862686    virtual HRESULT prepareEventDesc(IEventSource* aSource, VBoxEventDesc& aEvDesc)
    26872687    {
    2688         return aEvDesc.init(aSource, VBoxEventType_OnGuestPropertyChange,
     2688        return aEvDesc.init(aSource, VBoxEventType_OnGuestPropertyChanged,
    26892689                            machineId.toUtf16().raw(), name.raw(), value.raw(), flags.raw());
    26902690    }
  • trunk/src/VBox/Main/glue/tests/TestVBox.java

    r30825 r30871  
    2727        switch (type)
    2828        {
    29             case OnMachineStateChange:
     29            case OnMachineStateChanged:
    3030                IMachineStateChangedEvent mcse = IMachineStateChangedEvent.queryInterface(ev);
    3131                if (mcse == null)
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r30825 r30871  
    1374213742  <enum
    1374313743     name="VBoxEventType"
    13744      uuid="25bf47c8-9972-4274-86ea-e6c479796c4a">
     13744     uuid="7d695029-32b8-4855-86d3-75de9082923b">
    1374513745
    1374613746    <desc>
     
    1378913789    </const>
    1379013790
    13791     <const name="OnMachineStateChange" value="32">
     13791    <const name="OnMachineStateChanged" value="32">
    1379213792      <desc>
    1379313793        <see>IMachineStateChangedEvent</see>
    1379413794      </desc>
    1379513795    </const>
    13796     <const name="OnMachineDataChange" value="33">
     13796    <const name="OnMachineDataChanged" value="33">
    1379713797      <desc>
    1379813798        <see>IMachineDataChangedEvent</see>
    1379913799      </desc>
    1380013800    </const>
    13801     <const name="OnExtraDataChange" value="34">
     13801    <const name="OnExtraDataChanged" value="34">
    1380213802      <desc>
    1380313803        <see>IExtraDataChangedEvent</see>
     
    1381913819      </desc>
    1382013820    </const>
    13821     <const name="OnSessionStateChange" value="38">
     13821    <const name="OnSessionStateChanged" value="38">
    1382213822      <desc>
    1382313823        <see>ISessionStateChangedEvent</see>
     
    1383413834      </desc>
    1383513835    </const>
    13836     <const name="OnSnapshotChange" value="41">
     13836    <const name="OnSnapshotChanged" value="41">
    1383713837      <desc>
    1383813838        <see>ISnapshotChangedEvent</see>
    1383913839      </desc>
    1384013840    </const>
    13841     <const name="OnGuestPropertyChange" value="42">
     13841    <const name="OnGuestPropertyChanged" value="42">
    1384213842      <desc>
    1384313843        <see>IGuestPropertyChangedEvent</see>
     
    1384513845    </const>
    1384613846    <!-- Console events -->
    13847     <const name="OnMousePointerShapeChange" value="43">
     13847    <const name="OnMousePointerShapeChanged" value="43">
    1384813848      <desc>
    1384913849        <see>IMousePointerShapeChangedEvent</see>
    1385013850      </desc>
    1385113851    </const>
    13852     <const name="OnMouseCapabilityChange" value="44">
     13852    <const name="OnMouseCapabilityChanged" value="44">
    1385313853      <desc>
    1385413854        <see>IMouseCapabilityChangedEvent</see>
    1385513855      </desc>
    1385613856    </const>
    13857     <const name="OnKeyboardLedsChange" value="45">
     13857    <const name="OnKeyboardLedsChanged" value="45">
    1385813858      <desc>
    1385913859        <see>IKeyboardLedsChangedEvent</see>
    1386013860      </desc>
    1386113861    </const>
    13862     <const name="OnStateChange" value="46">
     13862    <const name="OnStateChanged" value="46">
    1386313863      <desc>
    1386413864        <see>IStateChangedEvent</see>
    1386513865      </desc>
    1386613866    </const>
    13867     <const name="OnAdditionsStateChange" value="47">
     13867    <const name="OnAdditionsStateChanged" value="47">
    1386813868      <desc>
    1386913869        <see>IAdditionsStateChangedEvent</see>
    1387013870      </desc>
    1387113871    </const>
    13872     <const name="OnNetworkAdapterChange" value="48">
     13872    <const name="OnNetworkAdapterChanged" value="48">
    1387313873      <desc>
    1387413874        <see>INetworkAdapterChangedEvent</see>
    1387513875      </desc>
    1387613876    </const>
    13877     <const name="OnSerialPortChange" value="49">
     13877    <const name="OnSerialPortChanged" value="49">
    1387813878      <desc>
    1387913879        <see>ISerialPortChangedEvent</see>
    1388013880      </desc>
    1388113881    </const>
    13882     <const name="OnParallelPortChange" value="50">
     13882    <const name="OnParallelPortChanged" value="50">
    1388313883      <desc>
    1388413884        <see>IParallelPortChangedEvent</see>
    1388513885      </desc>
    1388613886    </const>
    13887     <const name="OnStorageControllerChange" value="51">
     13887    <const name="OnStorageControllerChanged" value="51">
    1388813888      <desc>
    1388913889        <see>IStorageControllerChangedEvent</see>
    1389013890      </desc>
    1389113891    </const>
    13892     <const name="OnMediumChange" value="52">
     13892    <const name="OnMediumChanged" value="52">
    1389313893      <desc>
    1389413894        <see>IMediumChangedEvent</see>
    1389513895      </desc>
    1389613896    </const>
    13897     <const name="OnVRDPServerChange" value="53">
     13897    <const name="OnVRDPServerChanged" value="53">
    1389813898      <desc>
    1389913899        <see>IVRDPServerChangedEvent</see>
    1390013900      </desc>
    1390113901    </const>
    13902     <const name="OnUSBControllerChange" value="54">
     13902    <const name="OnUSBControllerChanged" value="54">
    1390313903      <desc>
    1390413904        <see>IUSBControllerChangedEvent</see>
    1390513905      </desc>
    1390613906    </const>
    13907     <const name="OnUSBDeviceStateChange" value="55">
     13907    <const name="OnUSBDeviceStateChanged" value="55">
    1390813908      <desc>
    1390913909        <see>IUSBDeviceStateChangedEvent</see>
    1391013910      </desc>
    1391113911    </const>
    13912     <const name="OnSharedFolderChange" value="56">
     13912    <const name="OnSharedFolderChanged" value="56">
    1391313913      <desc>
    1391413914        <see>ISharedFolderChangedEvent</see>
     
    1393013930      </desc>
    1393113931    </const>
    13932     <const name="OnCPUChange" value="60">
     13932    <const name="OnCPUChanged" value="60">
    1393313933      <desc>
    1393413934        <see>ICPUChangedEvent</see>
    1393513935      </desc>
    1393613936    </const>
    13937     <const name="OnRemoteDisplayInfoChange" value="61">
     13937    <const name="OnRemoteDisplayInfoChanged" value="61">
    1393813938      <desc>
    1393913939        <see>IRemoteDisplayInfoChangedEvent</see>
    1394013940      </desc>
    1394113941    </const>
    13942     <const name="OnEventSourceChange" value="62">
     13942    <const name="OnEventSourceChanged" value="62">
    1394313943      <desc>
    1394413944        <see>IEventSourceChangedEvent</see>
     
    1415214152      name="IMachineStateChangedEvent" extends="IMachineEvent"
    1415314153      uuid="5748F794-48DF-438D-85EB-98FFD70D18C9"
    14154       wsmap="managed" autogen="VBoxEvent" id="OnMachineStateChange"
     14154      wsmap="managed" autogen="VBoxEvent" id="OnMachineStateChanged"
    1415514155      >
    1415614156    <desc>Machine state change event.</desc>
     
    1416414164      name="IMachineDataChangedEvent" extends="IMachineEvent"
    1416514165      uuid="6AA70A6C-0DCA-4810-8C5C-457B278E3D49"
    14166       wsmap="managed" autogen="VBoxEvent" id="OnMachineDataChange"
     14166      wsmap="managed" autogen="VBoxEvent" id="OnMachineDataChanged"
    1416714167      >
    1416814168    <desc>
     
    1419214192      name="ISessionStateChangedEvent" extends="IMachineEvent"
    1419314193      uuid="714a3eef-799a-4489-86cd-fe8e45b2ff8e"
    14194       wsmap="managed" autogen="VBoxEvent" id="OnSessionStateChange"
     14194      wsmap="managed" autogen="VBoxEvent" id="OnSessionStateChanged"
    1419514195      >
    1419614196    <desc>
     
    1420914209      name="IGuestPropertyChangedEvent" extends="IMachineEvent"
    1421014210      uuid="3f63597a-26f1-4edb-8dd2-6bddd0912368"
    14211       wsmap="managed" autogen="VBoxEvent" id="OnGuestPropertyChange"
     14211      wsmap="managed" autogen="VBoxEvent" id="OnGuestPropertyChanged"
    1421214212      >
    1421314213    <desc>
     
    1428014280     name="ISnapshotChangedEvent" extends="ISnapshotEvent"
    1428114281     uuid="07541941-8079-447a-a33e-47a69c7980db"
    14282      wsmap="managed" autogen="VBoxEvent" id="OnSnapshotChange"
     14282     wsmap="managed" autogen="VBoxEvent" id="OnSnapshotChanged"
    1428314283     >
    1428414284    <desc>
     
    1429114291     name="IMousePointerShapeChangedEvent" extends="IEvent"
    1429214292     uuid="a6dcf6e8-416b-4181-8c4a-45ec95177aef"
    14293      wsmap="managed" autogen="VBoxEvent" id="OnMousePointerShapeChange"
     14293     wsmap="managed" autogen="VBoxEvent" id="OnMousePointerShapeChanged"
    1429414294     >
    1429514295    <desc>
     
    1436414364     name="IMouseCapabilityChangedEvent" extends="IEvent"
    1436514365     uuid="d633ad48-820c-4207-b46c-6bd3596640d5"
    14366      wsmap="managed" autogen="VBoxEvent" id="OnMouseCapabilityChange"
     14366     wsmap="managed" autogen="VBoxEvent" id="OnMouseCapabilityChanged"
    1436714367     >
    1436814368    <desc>
     
    1439014390     name="IKeyboardLedsChangedEvent" extends="IEvent"
    1439114391     uuid="6DDEF35E-4737-457B-99FC-BC52C851A44F"
    14392      wsmap="managed" autogen="VBoxEvent" id="OnKeyboardLedsChange"
     14392     wsmap="managed" autogen="VBoxEvent" id="OnKeyboardLedsChanged"
    1439314393     >
    1439414394    <desc>
     
    1441614416     name="IStateChangedEvent" extends="IEvent"
    1441714417     uuid="4376693C-CF37-453B-9289-3B0F521CAF27"
    14418      wsmap="managed" autogen="VBoxEvent" id="OnStateChange"
     14418     wsmap="managed" autogen="VBoxEvent" id="OnStateChanged"
    1441914419     >
    1442014420    <desc>
     
    1443214432     name="IAdditionsStateChangedEvent" extends="IEvent"
    1443314433     uuid="D70F7915-DA7C-44C8-A7AC-9F173490446A"
    14434      wsmap="managed" autogen="VBoxEvent" id="OnAdditionsStateChange"
     14434     wsmap="managed" autogen="VBoxEvent" id="OnAdditionsStateChanged"
    1443514435     >
    1443614436    <desc>
     
    1444414444     name="INetworkAdapterChangedEvent" extends="IEvent"
    1444514445     uuid="08889892-1EC6-4883-801D-77F56CFD0103"
    14446      wsmap="managed" autogen="VBoxEvent" id="OnNetworkAdapterChange"
     14446     wsmap="managed" autogen="VBoxEvent" id="OnNetworkAdapterChanged"
    1444714447     >
    1444814448    <desc>
     
    1446214462     name="ISerialPortChangedEvent" extends="IEvent"
    1446314463     uuid="3BA329DC-659C-488B-835C-4ECA7AE71C6C"
    14464      wsmap="managed" autogen="VBoxEvent" id="OnSerialPortChange"
     14464     wsmap="managed" autogen="VBoxEvent" id="OnSerialPortChanged"
    1446514465     >
    1446614466    <desc>
     
    1448014480     name="IParallelPortChangedEvent" extends="IEvent"
    1448114481     uuid="813C99FC-9849-4F47-813E-24A75DC85615"
    14482      wsmap="managed" autogen="VBoxEvent" id="OnParallelPortChange"
     14482     wsmap="managed" autogen="VBoxEvent" id="OnParallelPortChanged"
    1448314483     >
    1448414484    <desc>
     
    1449814498     name="IStorageControllerChangedEvent" extends="IEvent"
    1449914499     uuid="715212BF-DA59-426E-8230-3831FAA52C56"
    14500      wsmap="managed" autogen="VBoxEvent" id="OnStorageControllerChange"
     14500     wsmap="managed" autogen="VBoxEvent" id="OnStorageControllerChanged"
    1450114501     >
    1450214502    <desc>
     
    1451014510     name="IMediumChangedEvent" extends="IEvent"
    1451114511     uuid="0FE2DA40-5637-472A-9736-72019EABD7DE"
    14512      wsmap="managed" autogen="VBoxEvent" id="OnMediumChange"
     14512     wsmap="managed" autogen="VBoxEvent" id="OnMediumChanged"
    1451314513     >
    1451414514    <desc>
     
    1452714527     name="ICPUChangedEvent" extends="IEvent"
    1452814528     uuid="D0F0BECC-EE17-4D17-A8CC-383B0EB55E9D"
    14529      wsmap="managed" autogen="VBoxEvent" id="OnCPUChange"
     14529     wsmap="managed" autogen="VBoxEvent" id="OnCPUChanged"
    1453014530     >
    1453114531    <desc>
     
    1454714547     name="IVRDPServerChangedEvent" extends="IEvent"
    1454814548     uuid="726038B6-6279-4A7A-8037-D041693D1915"
    14549      wsmap="managed" autogen="VBoxEvent" id="OnVRDPServerChange"
     14549     wsmap="managed" autogen="VBoxEvent" id="OnVRDPServerChanged"
    1455014550     >
    1455114551    <desc>
     
    1456014560     name="IRemoteDisplayInfoChangedEvent" extends="IEvent"
    1456114561     uuid="65B556C5-2A99-47D8-B311-FC177F0914CD"
    14562      wsmap="managed" autogen="VBoxEvent" id="OnRemoteDisplayInfoChange"
     14562     wsmap="managed" autogen="VBoxEvent" id="OnRemoteDisplayInfoChanged"
    1456314563     >
    1456414564    <desc>
     
    1457214572     name="IUSBControllerChangedEvent" extends="IEvent"
    1457314573     uuid="93BADC0C-61D9-4940-A084-E6BB29AF3D83"
    14574      wsmap="managed" autogen="VBoxEvent" id="OnUSBControllerChange"
     14574     wsmap="managed" autogen="VBoxEvent" id="OnUSBControllerChanged"
    1457514575     >
    1457614576    <desc>
     
    1458514585     name="IUSBDeviceStateChangedEvent" extends="IEvent"
    1458614586     uuid="806da61b-6679-422a-b629-51b06b0c6d93"
    14587      wsmap="managed" autogen="VBoxEvent" id="OnUSBDeviceStateChange"
     14587     wsmap="managed" autogen="VBoxEvent" id="OnUSBDeviceStateChanged"
    1458814588     >
    1458914589    <desc>
     
    1462614626     name="ISharedFolderChangedEvent" extends="IEvent"
    1462714627     uuid="B66349B5-3534-4239-B2DE-8E1535D94C0B"
    14628      wsmap="managed" autogen="VBoxEvent" id="OnSharedFolderChange"
     14628     wsmap="managed" autogen="VBoxEvent" id="OnSharedFolderChanged"
    1462914629     >
    1463014630    <desc>
     
    1472414724     uuid="e7932cb8-f6d4-4ab6-9cbf-558eb8959a6a"
    1472514725     waitable="yes"
    14726      wsmap="managed" autogen="VBoxEvent" id="OnEventSourceChange"
     14726     wsmap="managed" autogen="VBoxEvent" id="OnEventSourceChanged"
    1472714727     >
    1472814728    <desc>
     
    1474614746      name="IExtraDataChangedEvent" extends="IEvent"
    1474714747      uuid="024F00CE-6E0B-492A-A8D0-968472A94DC7"
    14748       wsmap="managed" autogen="VBoxEvent" id="OnExtraDataChange"
     14748      wsmap="managed" autogen="VBoxEvent" id="OnExtraDataChanged"
    1474914749      >
    1475014750    <desc>
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette