Changeset 49645 in vbox
- Timestamp:
- Nov 25, 2013 6:03:38 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90888
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r47396 r49645 133 133 { 134 134 CSnapshotTakenEvent es(pEvent); 135 emit sigSnapshot Change(es.GetMachineId(), es.GetSnapshotId());135 emit sigSnapshotTake(es.GetMachineId(), es.GetSnapshotId()); 136 136 break; 137 137 } … … 139 139 { 140 140 CSnapshotDeletedEvent es(pEvent); 141 emit sigSnapshot Change(es.GetMachineId(), es.GetSnapshotId());141 emit sigSnapshotDelete(es.GetMachineId(), es.GetSnapshotId()); 142 142 break; 143 143 } -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.h
r47396 r49645 63 63 void sigMachineRegistered(QString strId, bool fRegistered); 64 64 void sigSessionStateChange(QString strId, KSessionState state); 65 void sigSnapshotTake(QString strId, QString strSnapshotId); 66 void sigSnapshotDelete(QString strId, QString strSnapshotId); 65 67 void sigSnapshotChange(QString strId, QString strSnapshotId); 66 68 /* All Console Signals */ -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumEnumerator.cpp
r49589 r49645 70 70 /* Prepare Main event handlers: */ 71 71 connect(gVBoxEvents, SIGNAL(sigMachineDataChange(QString)), this, SLOT(sltHandleMachineUpdate(QString))); 72 connect(gVBoxEvents, SIGNAL(sigSnapshotTake(QString, QString)), this, SLOT(sltHandleMachineUpdate(QString))); 73 connect(gVBoxEvents, SIGNAL(sigSnapshotDelete(QString, QString)), this, SLOT(sltHandleMachineUpdate(QString))); 72 74 connect(gVBoxEvents, SIGNAL(sigSnapshotChange(QString, QString)), this, SLOT(sltHandleMachineUpdate(QString))); 73 75 connect(gVBoxEvents, SIGNAL(sigMachineRegistered(QString, bool)), this, SLOT(sltHandleMachineRegistration(QString, bool))); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp
r49608 r49645 1517 1517 connect(gVBoxEvents, SIGNAL(sigMachineStateChange(QString, KMachineState)), this, SLOT(sltStateChanged(QString))); 1518 1518 connect(gVBoxEvents, SIGNAL(sigSessionStateChange(QString, KSessionState)), this, SLOT(sltStateChanged(QString))); 1519 connect(gVBoxEvents, SIGNAL(sigSnapshotTake(QString, QString)), this, SLOT(sltSnapshotChanged(QString))); 1520 connect(gVBoxEvents, SIGNAL(sigSnapshotDelete(QString, QString)), this, SLOT(sltSnapshotChanged(QString))); 1519 1521 connect(gVBoxEvents, SIGNAL(sigSnapshotChange(QString, QString)), this, SLOT(sltSnapshotChanged(QString))); 1520 1522 } -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVirtualBoxEventHandler.cpp
r44529 r49645 84 84 Qt::QueuedConnection); 85 85 86 connect(pListener->getWrapped(), SIGNAL(sigSnapshotTake(QString, QString)), 87 this, SIGNAL(sigSnapshotTake(QString, QString)), 88 Qt::QueuedConnection); 89 90 connect(pListener->getWrapped(), SIGNAL(sigSnapshotDelete(QString, QString)), 91 this, SIGNAL(sigSnapshotDelete(QString, QString)), 92 Qt::QueuedConnection); 93 86 94 connect(pListener->getWrapped(), SIGNAL(sigSnapshotChange(QString, QString)), 87 95 this, SIGNAL(sigSnapshotChange(QString, QString)), -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVirtualBoxEventHandler.h
r44529 r49645 38 38 void sigMachineRegistered(QString strId, bool fRegistered); 39 39 void sigSessionStateChange(QString strId, KSessionState state); 40 void sigSnapshotTake(QString strId, QString strSnapshotId); 41 void sigSnapshotDelete(QString strId, QString strSnapshotId); 40 42 void sigSnapshotChange(QString strId, QString strSnapshotId); 41 43 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp
r48316 r49645 1219 1219 connect(gVBoxEvents, SIGNAL(sigSessionStateChange(QString, KSessionState)), 1220 1220 this, SLOT(sltSessionStateChanged(QString, KSessionState))); 1221 connect(gVBoxEvents, SIGNAL(sigSnapshotTake(QString, QString)), 1222 this, SLOT(sltSnapshotChanged(QString, QString))); 1223 connect(gVBoxEvents, SIGNAL(sigSnapshotDelete(QString, QString)), 1224 this, SLOT(sltSnapshotChanged(QString, QString))); 1221 1225 connect(gVBoxEvents, SIGNAL(sigSnapshotChange(QString, QString)), 1222 1226 this, SLOT(sltSnapshotChanged(QString, QString))); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp
r48260 r49645 343 343 connect(gVBoxEvents, SIGNAL(sigMachineDataChange(QString)), this, SLOT(sltMachineAttributesChange(QString))); 344 344 connect(gVBoxEvents, SIGNAL(sigSessionStateChange(QString, KSessionState)), this, SLOT(sltMachineAttributesChange(QString))); 345 connect(gVBoxEvents, SIGNAL(sigSnapshotTake(QString, QString)), this, SLOT(sltMachineAttributesChange(QString))); 346 connect(gVBoxEvents, SIGNAL(sigSnapshotDelete(QString, QString)), this, SLOT(sltMachineAttributesChange(QString))); 345 347 connect(gVBoxEvents, SIGNAL(sigSnapshotChange(QString, QString)), this, SLOT(sltMachineAttributesChange(QString))); 346 348
Note:
See TracChangeset
for help on using the changeset viewer.