Changeset 5022 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Sep 25, 2007 1:56:26 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24813
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxDefs.h
r4572 r5022 132 132 MachineDataChangeEventType, 133 133 MachineRegisteredEventType, 134 ShowRegDlgEventType, 134 135 SessionStateChangeEventType, 135 136 SnapshotEventType, … … 163 164 static const char* GUI_LicenseKey; 164 165 #endif 166 static const char* GUI_RegistrationTryLeft; 167 static const char* GUI_RegistrationDlgWinID; 165 168 }; 166 169 -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r4572 r5022 100 100 }; 101 101 102 class VBoxShowRegDlgEvent : public QEvent 103 { 104 public: 105 VBoxShowRegDlgEvent() 106 : QEvent ((QEvent::Type) VBoxDefs::ShowRegDlgEventType) 107 {} 108 }; 109 102 110 class VBoxSessionStateChangeEvent : public QEvent 103 111 { … … 136 144 class VBoxSelectorWnd; 137 145 class VBoxConsoleWnd; 146 class VBoxRegistrationDlg; 138 147 139 148 class VBoxGlobal : public QObject … … 367 376 bool showVirtualBoxLicense(); 368 377 #endif 378 379 void showRegistrationDialog(); 369 380 370 381 CSession openSession (const QUuid &id); … … 519 530 VBoxSelectorWnd *selector_wnd; 520 531 VBoxConsoleWnd *console_wnd; 532 533 VBoxRegistrationDlg *mRegDlg; 521 534 522 535 QUuid vmUuid; -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r4572 r5022 209 209 void warnAboutNewAdditions (QWidget *, const QString &, const QString &); 210 210 211 void cannotConnectRegister (QWidget *aParent, 212 const QString &aURL, 213 const QString &aReason); 214 void showRegisterResult (QWidget *aParent, 215 const QString &aResult); 216 211 217 bool remindAboutInputCapture(); 212 218 bool remindAboutAutoCapture();
Note:
See TracChangeset
for help on using the changeset viewer.