Changeset 38476 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 16, 2011 1:25:17 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73530
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 19 edited
- 4 copied
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r38421 r38476 271 271 src/VBoxSnapshotDetailsDlg.h \ 272 272 src/VBoxTakeSnapshotDlg.h \ 273 src/VBoxUpdateDlg.h \274 273 src/VBoxVMInformationDlg.h \ 275 274 src/VBoxVMLogViewer.h \ … … 353 352 src/widgets/VBoxWarningPane.h \ 354 353 src/net/UINetworkManager.h \ 354 src/net/UIUpdateManager.h \ 355 355 src/net/UIDownloader.h \ 356 356 src/net/UIDownloaderAdditions.h \ 357 357 src/net/UIDownloaderUserManual.h \ 358 src/net/UIDownloaderExtensionPack.h \ 358 359 src/selector/UIActionPoolSelector.h \ 359 360 src/selector/UIVMDesktop.h \ … … 440 441 src/VBoxSnapshotDetailsDlg.cpp \ 441 442 src/VBoxTakeSnapshotDlg.cpp \ 442 src/VBoxUpdateDlg.cpp \443 443 src/VBoxVMInformationDlg.cpp \ 444 444 src/VBoxVMLogViewer.cpp \ … … 526 526 src/widgets/VBoxWarningPane.cpp \ 527 527 src/net/UINetworkManager.cpp \ 528 src/net/UIUpdateDefs.cpp \ 529 src/net/UIUpdateManager.cpp \ 528 530 src/net/UIDownloader.cpp \ 529 531 src/net/UIDownloaderAdditions.cpp \ 530 532 src/net/UIDownloaderUserManual.cpp \ 533 src/net/UIDownloaderExtensionPack.cpp \ 531 534 src/selector/UIActionPoolSelector.cpp \ 532 535 src/selector/UISelectorShortcuts.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro
r38384 r38476 26 26 src/VBoxSnapshotDetailsDlg.ui \ 27 27 src/VBoxTakeSnapshotDlg.ui \ 28 src/VBoxUpdateDlg.ui \29 28 src/VBoxVMLogViewer.ui \ 30 29 src/settings/UISettingsDialog.ui \ -
trunk/src/VBox/Frontends/VirtualBox/nls/VirtualBox_ru.ts
r38457 r38476 5121 5121 <message> 5122 5122 <source>You are already running the most recent version of VirtualBox.</source> 5123 <translation> Вы уже установили последнюю версиюпрограммы VirtualBox. Повторите проверку обновлений позже.</translation>5123 <translation>У Вас уже установлена последняя версия программы VirtualBox. Повторите проверку обновлений позже.</translation> 5124 5124 </message> 5125 5125 <message> -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r38337 r38476 1788 1788 } 1789 1789 1790 bool UIMessageCenter::proposeDownloadExtensionPack() 1791 { 1792 return messageOkCancel(mainWindowShown(), Question, 1793 tr("<p>You have an old " 1794 "VirtualBox Extension Pack installed.</p>" 1795 "<p>Do you wish to download latest one from the Internet?</p>"), 1796 0, /* Auto-confirm Id */ 1797 tr("Download", "extension pack")); 1798 } 1799 1800 bool UIMessageCenter::confirmDownloadExtensionPack(const QString &strURL, ulong uSize) 1801 { 1802 return messageOkCancel(mainWindowShown(), Question, 1803 tr("<p>Are you sure you want to download the " 1804 "VirtualBox Extension Pack from " 1805 "<nobr><a href=\"%1\">%2</a></nobr> " 1806 "(size %3 bytes)?</p>").arg(strURL).arg(strURL).arg(uSize), 1807 0, /* Auto-confirm Id */ 1808 tr("Download", "extension pack")); 1809 } 1810 1811 bool UIMessageCenter::proposeInstallExtentionPack(const QString &strFrom, const QString &strTo) 1812 { 1813 return messageOkCancel(mainWindowShown(), Question, 1814 tr("<p>The VirtualBox Extension Pack has been " 1815 "successfully downloaded from " 1816 "<nobr><a href=\"%1\">%2</a></nobr> " 1817 "and saved locally as <nobr><b>%3</b>.</nobr></p>" 1818 "<p>Do you wish to install this extension pack?</p>") 1819 .arg(strFrom).arg(strFrom).arg(strTo), 1820 0, /* Auto-confirm Id */ 1821 tr ("Install", "extension pack")); 1822 } 1823 1824 void UIMessageCenter::warnAboutExtentionPackCantBeSaved(const QString &strFrom, const QString &strTo) 1825 { 1826 message(mainWindowShown(), Error, 1827 tr("<p>The VirtualBox Extension Pack has been " 1828 "successfully downloaded from " 1829 "<nobr><a href=\"%1\">%2</a></nobr> " 1830 "but can't be saved locally as <nobr><b>%3</b>.</nobr></p>" 1831 "<p>Please choose another location for that file.</p>") 1832 .arg(strFrom).arg(strFrom).arg(strTo)); 1833 } 1834 1835 void UIMessageCenter::cannotDownloadExtensionPack(const QString &strFrom, const QString &strError) 1836 { 1837 message(mainWindowShown(), Error, 1838 tr("<p>Failed to download the VirtualBox Extension Pack " 1839 "from <nobr><a href=\"%1\">%2</a>.</nobr></p><p>%3</p>") 1840 .arg(strFrom).arg(strFrom).arg(strError)); 1841 } 1842 1790 1843 void UIMessageCenter::cannotConnectRegister(QWidget *pParent, 1791 1844 const QString &strUrl, -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.h
r38311 r38476 310 310 void warnAboutUserManualCantBeSaved(const QString &strURL, const QString &strTarget); 311 311 312 bool proposeDownloadExtensionPack(); 313 bool confirmDownloadExtensionPack(const QString &strURL, ulong uSize); 314 bool proposeInstallExtentionPack(const QString &strFrom, const QString &strTo); 315 void warnAboutExtentionPackCantBeSaved(const QString &strFrom, const QString &strTo); 316 void cannotDownloadExtensionPack(const QString &strFrom, const QString &strError); 317 312 318 void cannotConnectRegister(QWidget *pParent, 313 319 const QString &strUrl, -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r38467 r38476 29 29 #include "QIDialogButtonBox.h" 30 30 #include "UIIconPool.h" 31 #include "UIActionPoolSelector.h" 32 #include "UIActionPoolRuntime.h" 31 33 #include "UIExtraDataEventHandler.h" 32 34 #include "QIFileDialog.h" 33 35 #include "UINetworkManager.h" 36 #include "UIUpdateManager.h" 34 37 35 38 #include "UIMachine.h" … … 38 41 # include "UIRegistrationWzd.h" 39 42 #endif 40 #include "VBoxUpdateDlg.h"41 43 #ifdef VBOX_WITH_VIDEOHWACCEL 42 44 # include "VBoxFBOverlay.h" … … 271 273 , mRegDlg (NULL) 272 274 #endif 273 , mUpdDlg (NULL)274 275 #ifdef VBOX_GUI_WITH_SYSTRAY 275 276 , mIsTrayMenu (false) … … 4611 4612 } 4612 4613 #endif 4613 }4614 4615 /**4616 * Shows the VirtualBox version check & update dialog.4617 *4618 * @note that this method is not part of UIMessageCenter (like e.g.4619 * UIMessageCenter::sltShowHelpAboutDialog()) because it is tied to4620 * VBoxCallback::OnExtraDataChange() handling performed by VBoxGlobal.4621 *4622 * @param aForce4623 */4624 void VBoxGlobal::showUpdateDialog (bool aForce)4625 {4626 /* Silently check in one day after current time-stamp */4627 QTimer::singleShot (24 /* hours */ * 60 /* minutes */ *4628 60 /* seconds */ * 1000 /* milliseconds */,4629 this, SLOT (perDayNewVersionNotifier()));4630 4631 bool isNecessary = VBoxUpdateDlg::isNecessary();4632 4633 if (!aForce && !isNecessary)4634 return;4635 4636 if (mUpdDlg)4637 {4638 if (!mUpdDlg->isHidden())4639 {4640 mUpdDlg->setWindowState (mUpdDlg->windowState() & ~Qt::WindowMinimized);4641 mUpdDlg->raise();4642 mUpdDlg->activateWindow();4643 }4644 }4645 else4646 {4647 /* Store the ID of the main window to ensure that only one4648 * update dialog is shown at a time. Due to manipulations with4649 * OnExtraDataCanChange() and OnExtraDataChange() signals, this extra4650 * data item acts like an inter-process mutex, so the first process4651 * that attempts to set it will win, the rest will get a failure from4652 * the SetExtraData() call. */4653 mVBox.SetExtraData (VBoxDefs::GUI_UpdateDlgWinID,4654 QString ("%1").arg ((qulonglong) mMainWindow->winId()));4655 4656 if (mVBox.isOk())4657 {4658 /* We've got the "mutex", create a new update dialog */4659 VBoxUpdateDlg *dlg = new VBoxUpdateDlg (&mUpdDlg, aForce, 0);4660 dlg->setAttribute (Qt::WA_DeleteOnClose);4661 Assert (dlg == mUpdDlg);4662 4663 /* Update dialog always in background mode for now.4664 * if (!aForce && isAutomatic) */4665 mUpdDlg->search();4666 /* else mUpdDlg->show(); */4667 }4668 }4669 }4670 4671 void VBoxGlobal::perDayNewVersionNotifier()4672 {4673 showUpdateDialog (false /* force show? */);4674 4614 } 4675 4615 … … 5244 5184 sltProcessGlobalSettingChange(); 5245 5185 5186 /* Create action pool: */ 5187 if (isVMConsoleProcess()) 5188 UIActionPoolRuntime::create(); 5189 else 5190 UIActionPoolSelector::create(); 5191 5246 5192 /* Create network manager: */ 5247 5193 UINetworkManager::create(); 5194 5195 /* Schedule update manager: */ 5196 UIUpdateManager::schedule(); 5248 5197 } 5249 5198 … … 5256 5205 void VBoxGlobal::cleanup() 5257 5206 { 5207 /* Shutdown update manager: */ 5208 UIUpdateManager::shutdown(); 5209 5258 5210 /* Destroy network manager: */ 5259 5211 UINetworkManager::destroy(); 5212 5213 /* Destroy action pool: */ 5214 if (isVMConsoleProcess()) 5215 UIActionPoolRuntime::destroy(); 5216 else 5217 UIActionPoolSelector::destroy(); 5260 5218 5261 5219 /* sanity check */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r38467 r38476 771 771 772 772 void showRegistrationDialog (bool aForce = true); 773 void showUpdateDialog (bool aForce = true);774 void perDayNewVersionNotifier();775 773 void sltGUILanguageChange(QString strLang); 776 774 void sltProcessGlobalSettingChange(); … … 806 804 UIRegistrationWzd *mRegDlg; 807 805 #endif 808 VBoxUpdateDlg *mUpdDlg;809 806 810 807 QString vmUuid; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxUtils.h
r37867 r38476 195 195 }; 196 196 197 /** 198 * VBoxVersion represents VirtualBox version parser 199 */ 200 class VBoxVersion 201 { 202 public: 203 204 VBoxVersion(const QString &strVersion) 205 : m_x(0), m_y(0), m_z(0) 206 { 207 QStringList versionStack = strVersion.split('.'); 208 if (versionStack.size() > 0) 209 m_x = versionStack[0].toInt(); 210 if (versionStack.size() > 1) 211 m_y = versionStack[1].toInt(); 212 if (versionStack.size() > 2) 213 m_z = versionStack[2].toInt(); 214 } 215 216 bool equal(const VBoxVersion &other) const { return (m_x == other.m_x) && (m_y == other.m_y) && (m_z == other.m_z); } 217 bool operator==(const VBoxVersion &other) const { return equal(other); } 218 bool operator!=(const VBoxVersion &other) const { return !equal(other); } 219 220 bool operator<(const VBoxVersion &other) const 221 { 222 return (m_x < other.m_x) || 223 (m_x == other.m_x && m_y < other.m_y) || 224 (m_x == other.m_x && m_y == other.m_y && m_z < other.m_z); 225 } 226 bool operator>(const VBoxVersion &other) const 227 { 228 return (m_x > other.m_x) || 229 (m_x == other.m_x && m_y > other.m_y) || 230 (m_x == other.m_x && m_y == other.m_y && m_z > other.m_z); 231 } 232 233 QString toString() const 234 { 235 return QString("%1.%2.%3").arg(m_x).arg(m_y).arg(m_z); 236 } 237 238 int x() const { return m_x; } 239 int y() const { return m_y; } 240 int z() const { return m_z; } 241 242 private: 243 244 int m_x; 245 int m_y; 246 int m_z; 247 }; 248 197 249 #ifdef Q_WS_MAC 198 250 # include "VBoxUtils-darwin.h" -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r38324 r38476 526 526 vboxGlobal().showRegistrationDialog (false /* aForce */); 527 527 #endif 528 #ifdef VBOX_WITH_UPDATE_REQUEST529 vboxGlobal().showUpdateDialog (false /* aForce */);530 #endif531 528 #ifdef VBOX_GUI_WITH_SYSTRAY 532 529 } -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIDownloaderExtensionPack.cpp
r38256 r38476 3 3 * 4 4 * VBox frontends: Qt GUI ("VirtualBox"): 5 * UIDownloader Additions class implementation5 * UIDownloader for extension pack 6 6 */ 7 7 8 8 /* 9 * Copyright (C) 20 06-2011 Oracle Corporation9 * Copyright (C) 2011 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 19 19 20 20 /* Global includes: */ 21 #include <QAction>22 21 #include <QDir> 23 22 #include <QFile> … … 25 24 26 25 /* Local includes: */ 27 #include "UIDownloaderAdditions.h" 26 #include "UIDownloaderExtensionPack.h" 27 #include "VBoxGlobal.h" 28 #include "UIMessageCenter.h" 28 29 #include "QIFileDialog.h" 29 #include "VBoxProblemReporter.h"30 30 31 UIDownloaderAdditions *UIDownloaderAdditions::m_pInstance = 0; 32 33 UIDownloaderAdditions *UIDownloaderAdditions::create()31 /* UIMiniProgressWidget stuff: */ 32 UIMiniProgressWidgetExtension::UIMiniProgressWidgetExtension(const QString &strSource, QWidget *pParent /* = 0 */) 33 : QIWithRetranslateUI<UIMiniProgressWidget>(pParent) 34 34 { 35 if (!m_pInstance) 36 m_pInstance = new UIDownloaderAdditions; 37 return m_pInstance; 35 sltSetSource(strSource); 36 retranslateUi(); 38 37 } 39 38 40 UIDownloaderAdditions *UIDownloaderAdditions::current()39 void UIMiniProgressWidgetExtension::retranslateUi() 41 40 { 42 return m_pInstance; 41 setCancelButtonToolTip(tr("Cancel the VirtualBox Extension Pack download")); 42 setProgressBarToolTip(tr("Downloading the VirtualBox Extension Pack from <nobr><b>%1</b>...</nobr>") 43 .arg(source())); 43 44 } 44 45 45 void UIDownloaderAdditions::setAction(QAction *pAction) 46 /* UIDownloaderExtensionPack stuff: */ 47 UIDownloaderExtensionPack* UIDownloaderExtensionPack::m_pInstance = 0; 48 49 /* static */ 50 void UIDownloaderExtensionPack::download(QObject *pListener) 46 51 { 47 m_pAction = pAction; 48 if (m_pAction) 49 m_pAction->setEnabled(false); 52 /* Create downloader instance: */ 53 UIDownloaderExtensionPack *pDownloader = new UIDownloaderExtensionPack; 54 pDownloader->setParentWidget(msgCenter().mainWindowShown()); 55 56 /* Configure connections for the passed listener: */ 57 connect(pDownloader, SIGNAL(sigToStartAcknowledging()), 58 pListener, SIGNAL(sigDownloaderCreatedForExtensionPack())); 59 connect(pDownloader, SIGNAL(sigNotifyAboutExtensionPackDownloaded(const QString &, const QString &)), 60 pListener, SLOT(sltHandleDownloadedExtensionPack(const QString &, const QString &))); 50 61 } 51 62 52 QAction *UIDownloaderAdditions::action() const 63 UIDownloaderExtensionPack::UIDownloaderExtensionPack() 53 64 { 54 return m_pAction; 65 /* Prepare instance: */ 66 if (!m_pInstance) 67 m_pInstance = this; 68 69 /* Prepare source/target: */ 70 QString strTemplateSourcePath("http://download.virtualbox.org/virtualbox/%1/"); 71 QString strTemplateSourceName("Oracle_VM_VirtualBox_Extension_Pack-%1.vbox-extpack"); 72 QString strSourcePath(strTemplateSourcePath.arg(vboxGlobal().virtualBox().GetVersion().remove("_OSE"))); 73 QString strSourceName(strTemplateSourceName.arg(vboxGlobal().virtualBox().GetVersion().remove("_OSE"))); 74 QString strSource(strSourcePath + strSourceName); 75 QString strTargetPath(vboxGlobal().virtualBox().GetHomeFolder()); 76 QString strTargetName(strSourceName); 77 QString strTarget(QDir(strTargetPath).absoluteFilePath(strTargetName)); 78 79 /* Set source/target: */ 80 setSource(strSource); 81 setTarget(strTarget); 82 83 /* Start downloading: */ 84 start(); 55 85 } 56 86 57 UIDownloaderAdditions::UIDownloaderAdditions() 58 : UIDownloader() 87 UIDownloaderExtensionPack::~UIDownloaderExtensionPack() 59 88 { 60 } 61 62 UIDownloaderAdditions::~UIDownloaderAdditions() 63 { 64 if (m_pAction) 65 m_pAction->setEnabled(true); 89 /* Cleanup instance: */ 66 90 if (m_pInstance == this) 67 91 m_pInstance = 0; 68 92 } 69 93 70 UIMiniProgressWidget* UIDownloader Additions::createProgressWidgetFor(QWidget *pParent) const94 UIMiniProgressWidget* UIDownloaderExtensionPack::createProgressWidgetFor(QWidget *pParent) const 71 95 { 72 return new UIMiniProgressWidget Additions(source(), pParent);96 return new UIMiniProgressWidgetExtension(source(), pParent); 73 97 } 74 98 75 bool UIDownloader Additions::askForDownloadingConfirmation(QNetworkReply *pReply)99 bool UIDownloaderExtensionPack::askForDownloadingConfirmation(QNetworkReply *pReply) 76 100 { 77 return vboxProblem().confirmDownloadAdditions(source(), pReply->header(QNetworkRequest::ContentLengthHeader).toInt());101 return msgCenter().confirmDownloadExtensionPack(source(), pReply->header(QNetworkRequest::ContentLengthHeader).toInt()); 78 102 } 79 103 80 void UIDownloader Additions::handleDownloadedObject(QNetworkReply *pReply)104 void UIDownloaderExtensionPack::handleDownloadedObject(QNetworkReply *pReply) 81 105 { 82 /* Read received data : */106 /* Read received data into buffer: */ 83 107 QByteArray receivedData(pReply->readAll()); 84 /* Serialize the incoming buffer into the .iso image: */108 /* Serialize the incoming buffer into the file: */ 85 109 while (true) 86 110 { 87 /* Try to open file to save image: */111 /* Try to open file for writing: */ 88 112 QFile file(target()); 89 113 if (file.open(QIODevice::WriteOnly)) 90 114 { 91 /* Write received datainto the file: */115 /* Write incoming buffer into the file: */ 92 116 file.write(receivedData); 93 117 file.close(); 94 /* Warn user about additions image loaded and saved, propose to mount it: */ 95 if (vboxProblem().confirmMountAdditions(source(), QDir::toNativeSeparators(target()))) 96 emit sigDownloadFinished(target()); 118 /* Notify listener about extension pack was downloaded: */ 119 emit sigNotifyAboutExtensionPackDownloaded(source(), target()); 97 120 break; 98 121 } 99 122 else 100 123 { 101 /* Warn user about additions image loaded but was not saved: */102 vboxProblem().warnAboutAdditionsCantBeSaved(target());124 /* Warn the user about extension pack was downloaded but was NOT saved, explain it: */ 125 msgCenter().warnAboutExtentionPackCantBeSaved(source(), QDir::toNativeSeparators(target())); 103 126 } 104 127 105 /* Ask the user about additions image file save location: */128 /* Ask the user for another location for the extension pack file: */ 106 129 QString strTarget = QIFileDialog::getExistingDirectory(QFileInfo(target()).absolutePath(), parentWidget(), 107 tr("Select folder to save Guest Additions imageto"), true);130 tr("Select folder to save VirtualBox Extension Pack to"), true); 108 131 109 /* Check if user setnew target: */132 /* Check if user had really set a new target: */ 110 133 if (!strTarget.isNull()) 111 134 setTarget(QDir(strTarget).absoluteFilePath(QFileInfo(target()).fileName())); … … 115 138 } 116 139 117 void UIDownloader Additions::warnAboutNetworkError(const QString &strError)140 void UIDownloaderExtensionPack::warnAboutNetworkError(const QString &strError) 118 141 { 119 return vboxProblem().cannotDownloadGuestAdditions(source(), strError);142 return msgCenter().cannotDownloadExtensionPack(source(), strError); 120 143 } 121 144 -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIDownloaderExtensionPack.h
r38256 r38476 2 2 * 3 3 * VBox frontends: Qt GUI ("VirtualBox"): 4 * UIDownloader Additions class declaration4 * UIDownloader for extension pack 5 5 */ 6 6 7 7 /* 8 * Copyright (C) 20 06-2011 Oracle Corporation8 * Copyright (C) 2011 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 17 17 */ 18 18 19 #ifndef __UIDownloader Additions_h__20 #define __UIDownloader Additions_h__19 #ifndef __UIDownloaderExtensionPack_h__ 20 #define __UIDownloaderExtensionPack_h__ 21 21 22 22 /* Local includes: */ … … 24 24 #include "UIDownloader.h" 25 25 26 class UIMiniProgressWidgetAdditions : public QIWithRetranslateUI<UIMiniProgressWidget> 26 /* UIMiniProgressWidget reimplementation for the VirtualBox extension pack downloading: */ 27 class UIMiniProgressWidgetExtension : public QIWithRetranslateUI<UIMiniProgressWidget> 27 28 { 28 29 Q_OBJECT; … … 30 31 public: 31 32 32 UIMiniProgressWidgetAdditions(const QString &strSource, QWidget *pParent = 0) 33 : QIWithRetranslateUI<UIMiniProgressWidget>(pParent) 34 { 35 sltSetSource(strSource); 36 retranslateUi(); 37 } 33 /* Constructor: */ 34 UIMiniProgressWidgetExtension(const QString &strSource, QWidget *pParent = 0); 38 35 39 pr otected:36 private: 40 37 41 void retranslateUi() 42 { 43 setCancelButtonToolTip(tr("Cancel the VirtualBox Guest Additions CD image download")); 44 setProgressBarToolTip(tr("Downloading the VirtualBox Guest Additions CD image from <nobr><b>%1</b>...</nobr>") 45 .arg(source())); 46 } 38 /* Translating stuff: */ 39 void retranslateUi(); 47 40 }; 48 41 49 class UIDownloaderAdditions : public UIDownloader 42 /* UIDownloader reimplementation for the VirtualBox Extension Pack updating: */ 43 class UIDownloaderExtensionPack : public UIDownloader 50 44 { 51 45 Q_OBJECT; … … 53 47 public: 54 48 55 static UIDownloaderAdditions* create(); 56 static UIDownloaderAdditions* current(); 57 58 void setAction(QAction *pAction); 59 QAction *action() const; 49 /* Returns updater if exists: */ 50 static UIDownloaderExtensionPack* current() { return m_pInstance; } 51 /* Start downloading: */ 52 static void download(QObject *pListener); 60 53 61 54 signals: 62 55 63 void sigDownloadFinished(const QString &strFile); 56 /* Notify listeners about extension pack downloaded: */ 57 void sigNotifyAboutExtensionPackDownloaded(const QString &strSource, const QString &strTarget); 64 58 65 59 private: 66 60 67 UIDownloaderAdditions(); 68 ~UIDownloaderAdditions(); 61 /* Constructor/destructor: */ 62 UIDownloaderExtensionPack(); 63 ~UIDownloaderExtensionPack(); 69 64 65 /* Virtual methods reimplementations: */ 70 66 UIMiniProgressWidget* createProgressWidgetFor(QWidget *pParent) const; 71 67 bool askForDownloadingConfirmation(QNetworkReply *pReply); … … 73 69 void warnAboutNetworkError(const QString &strError); 74 70 75 /* Private member variables: */ 76 static UIDownloaderAdditions *m_pInstance; 77 78 /* Action to be blocked: */ 79 QPointer<QAction> m_pAction; 71 /* Variables: */ 72 static UIDownloaderExtensionPack *m_pInstance; 80 73 }; 81 74 82 #endif // __UIDownloaderAdditions_h__ 83 75 #endif // __UIDownloaderExtensionPack_h__ -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateDefs.cpp
r38457 r38476 1 /* $Id$ */ 1 2 /** @file 2 3 * 3 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * VBoxUpdateDlg class implementation5 * Update routine related implementations 5 6 */ 6 7 … … 17 18 */ 18 19 19 #ifdef VBOX_WITH_PRECOMPILED_HEADERS 20 #include "precomp.h" 21 #else /* !VBOX_WITH_PRECOMPILED_HEADERS */ 22 /* Global includes */ 23 #include <QNetworkAccessManager> 24 #include <QNetworkReply> 25 /* Local includes */ 26 #include "VBoxUpdateDlg.h" 27 #include "VBoxGlobal.h" 28 #include "UIMessageCenter.h" 29 #include "UIIconPool.h" 30 #include "VBoxUtils.h" 31 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 20 /* Global includes: */ 21 #include <QCoreApplication> 22 #include <QStringList> 32 23 33 /** 34 * This class is used to store VBox version data. 35 */ 36 class VBoxVersion 37 { 38 public: 24 /* Local includes: */ 25 #include "UIUpdateDefs.h" 39 26 40 VBoxVersion(const QString &strVersion) 41 : x(0), y(0), z(0) 42 { 43 QStringList versionStack = strVersion.split('.'); 44 if (versionStack.size() > 0) 45 x = versionStack[0].toInt(); 46 if (versionStack.size() > 1) 47 y = versionStack[1].toInt(); 48 if (versionStack.size() > 2) 49 z = versionStack[2].toInt(); 50 } 27 /* static: */ 28 VBoxUpdateDayList VBoxUpdateData::m_dayList = VBoxUpdateDayList(); 51 29 52 bool operator<(const VBoxVersion &other) const 53 { 54 return (x < other.x) || 55 (x == other.x && y < other.y) || 56 (x == other.x && y == other.y && z < other.z); 57 } 58 59 QString toString() const 60 { 61 return QString("%1.%2.%3").arg(x).arg(y).arg(z); 62 } 63 64 private: 65 66 int x; 67 int y; 68 int z; 69 }; 70 71 /* VBoxUpdateData stuff: */ 72 QList<UpdateDay> VBoxUpdateData::m_dayList = QList<UpdateDay>(); 73 30 /* static */ 74 31 void VBoxUpdateData::populate() 75 32 { 33 /* Clear list initially: */ 76 34 m_dayList.clear(); 77 35 78 /* To avoid re-translation complexity all79 * have tobe retranslated separately: */36 /* To avoid re-translation complexity 37 * all values will be retranslated separately: */ 80 38 81 39 /* Separately retranslate each day: */ 82 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 day"), "1 d");83 m_dayList << UpdateDay(VBoxUpdateDlg::tr("2 days"), "2 d");84 m_dayList << UpdateDay(VBoxUpdateDlg::tr("3 days"), "3 d");85 m_dayList << UpdateDay(VBoxUpdateDlg::tr("4 days"), "4 d");86 m_dayList << UpdateDay(VBoxUpdateDlg::tr("5 days"), "5 d");87 m_dayList << UpdateDay(VBoxUpdateDlg::tr("6 days"), "6 d");40 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "1 day"), "1 d"); 41 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "2 days"), "2 d"); 42 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "3 days"), "3 d"); 43 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "4 days"), "4 d"); 44 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "5 days"), "5 d"); 45 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "6 days"), "6 d"); 88 46 89 /* Separately retranslate each week */90 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 week"), "1 w");91 m_dayList << UpdateDay(VBoxUpdateDlg::tr("2 weeks"), "2 w");92 m_dayList << UpdateDay(VBoxUpdateDlg::tr("3 weeks"), "3 w");47 /* Separately retranslate each week: */ 48 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "1 week"), "1 w"); 49 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "2 weeks"), "2 w"); 50 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "3 weeks"), "3 w"); 93 51 94 /* Separately retranslate each month */95 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 month"), "1 m");52 /* Separately retranslate each month: */ 53 m_dayList << VBoxUpdateDay(QCoreApplication::translate("UIUpdateManager", "1 month"), "1 m"); 96 54 } 97 55 56 /* static */ 98 57 QStringList VBoxUpdateData::list() 99 58 { … … 120 79 } 121 80 122 bool VBoxUpdateData::isN ecessary()81 bool VBoxUpdateData::isNoNeedToCheck() const 123 82 { 124 return m_periodIndex != PeriodNever && QDate::currentDate() >= m_date;83 return m_periodIndex == PeriodNever; 125 84 } 126 85 127 bool VBoxUpdateData::isN oNeedToCheck()86 bool VBoxUpdateData::isNeedToCheck() const 128 87 { 129 return m_periodIndex == PeriodNever;88 return !isNoNeedToCheck() && QDate::currentDate() >= m_date; 130 89 } 131 90 … … 142 101 QString VBoxUpdateData::date() const 143 102 { 144 return m_periodIndex == PeriodNever ? VBoxUpdateDlg::tr("Never") 145 : m_date.toString(Qt::LocaleDate); 103 return isNoNeedToCheck() ? QCoreApplication::translate("UIUpdateManager", "Never") : m_date.toString(Qt::LocaleDate); 146 104 } 147 105 … … 180 138 if (m_dayList.isEmpty()) 181 139 populate(); 182 PeriodType index = (PeriodType)m_dayList.indexOf( UpdateDay(QString(), parser[0]));140 PeriodType index = (PeriodType)m_dayList.indexOf(VBoxUpdateDay(QString(), parser[0])); 183 141 m_periodIndex = index == PeriodUndefined ? Period1Day : index; 184 142 } … … 234 192 } 235 193 236 /* VBoxUpdateDlg stuff: */237 bool VBoxUpdateDlg::isNecessary()238 {239 VBoxUpdateData data(vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateDate));240 return data.isNecessary();241 }242 243 VBoxUpdateDlg::VBoxUpdateDlg(VBoxUpdateDlg **ppSelf, bool fForceRun, QWidget *pParent)244 : QIWithRetranslateUI<QDialog>(pParent)245 , m_ppSelf(ppSelf)246 , m_pNetworkManager(new QNetworkAccessManager(this))247 , m_url("http://update.virtualbox.org/query.php")248 , m_fForceRun(fForceRun)249 {250 /* Store external pointer to this dialog: */251 *m_ppSelf = this;252 253 /* Apply UI decorations: */254 Ui::VBoxUpdateDlg::setupUi(this);255 256 /* Apply window icons: */257 setWindowIcon(UIIconPool::iconSetFull(QSize(32, 32), QSize(16, 16),258 ":/refresh_32px.png", ":/refresh_16px.png"));259 260 /* Setup other connections: */261 connect(mBtnCheck, SIGNAL(clicked()), this, SLOT(search()));262 connect(mBtnFinish, SIGNAL(clicked()), this, SLOT(accept()));263 connect(this, SIGNAL(sigDelayedAcception()), this, SLOT(accept()), Qt::QueuedConnection);264 265 /* Setup initial condition: */266 mPbCheck->setMinimumWidth(mLogoUpdate->width() + mLogoUpdate->frameWidth() * 2);267 mPbCheck->hide();268 mTextSuccessInfo->hide();269 mTextFailureInfo->hide();270 mTextNotFoundInfo->hide();271 272 /* Retranslate string constants: */273 retranslateUi();274 }275 276 VBoxUpdateDlg::~VBoxUpdateDlg()277 {278 /* Erase dialog handle in config file: */279 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateDlgWinID, QString());280 281 /* Erase external pointer to this dialog: */282 *m_ppSelf = 0;283 }284 285 void VBoxUpdateDlg::retranslateUi()286 {287 /* Translate uic generated strings: */288 Ui::VBoxUpdateDlg::retranslateUi(this);289 290 /* For wizard update: */291 if (!isHidden())292 {293 setWindowTitle(tr("VirtualBox Update Wizard"));294 295 mPageUpdateHdr->setText(tr("Check for Updates"));296 mBtnCheck->setText(tr("Chec&k"));297 mBtnCancel->setText(tr("Cancel"));298 299 mPageFinishHdr->setText(tr("Summary"));300 mBtnFinish->setText(tr("&Close"));301 302 mTextUpdateInfo->setText(tr("<p>This wizard will connect to the VirtualBox "303 "web-site and check if a newer version of "304 "VirtualBox is available.</p><p>Use the "305 "<b>Check</b> button to check for a new version "306 "now or the <b>Cancel</b> button if you do not "307 "want to perform this check.</p><p>You can run "308 "this wizard at any time by choosing <b>Check "309 "for Updates...</b> from the <b>Help</b> menu.</p>"));310 311 mTextSuccessInfo->setText(tr("<p>A new version of VirtualBox has been released! "312 "Version <b>%1</b> is available at "313 "<a href=\"http://www.virtualbox.org/\">virtualbox.org</a>.</p>"314 "<p>You can download this version using the link:</p>"315 "<p><a href=%2>%3</a></p>"));316 317 mTextFailureInfo->setText(tr("<p>Unable to obtain the new version information "318 "due to the following network error:</p><p><b>%1</b></p>"));319 320 mTextNotFoundInfo->setText(tr("You are already running the most recent version of VirtualBox."));321 }322 }323 324 void VBoxUpdateDlg::accept()325 {326 /* Recalculate new update data: */327 VBoxUpdateData oldData(vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateDate));328 VBoxUpdateData newData(oldData.periodIndex(), oldData.branchIndex());329 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateDate, newData.data());330 /* Call to base-class: */331 QDialog::accept();332 }333 334 void VBoxUpdateDlg::search()335 {336 /* Calculate the count of checks left: */337 int cCount = 1;338 QString strCount = vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateCheckCount);339 if (!strCount.isEmpty())340 {341 bool ok = false;342 int c = strCount.toLongLong(&ok);343 if (ok) cCount = c;344 }345 346 /* Compose query: */347 QUrl url(m_url);348 url.addQueryItem("platform", vboxGlobal().virtualBox().GetPackageType());349 /* Branding: Check whether we have a local branding file which tells us our version suffix "FOO"350 (e.g. 3.06.54321_FOO) to identify this installation */351 if (vboxGlobal().brandingIsActive())352 {353 url.addQueryItem("version", QString("%1_%2_%3").arg(vboxGlobal().virtualBox().GetVersion())354 .arg(vboxGlobal().virtualBox().GetRevision())355 .arg(vboxGlobal().brandingGetKey("VerSuffix")));356 }357 else358 {359 /* Use hard coded version set by VBOX_VERSION_STRING: */360 url.addQueryItem("version", QString("%1_%2").arg(vboxGlobal().virtualBox().GetVersion())361 .arg(vboxGlobal().virtualBox().GetRevision()));362 }363 url.addQueryItem("count", QString::number(cCount));364 url.addQueryItem("branch", VBoxUpdateData(vboxGlobal().virtualBox().365 GetExtraData(VBoxDefs::GUI_UpdateDate)).branchName());366 QString strUserAgent(QString("VirtualBox %1 <%2>")367 .arg(vboxGlobal().virtualBox().GetVersion())368 .arg(vboxGlobal().platformInfo()));369 370 /* Show progress bar: */371 mPbCheck->show();372 373 /* Setup GET request: */374 QNetworkRequest request;375 request.setUrl(url);376 request.setRawHeader("User-Agent", strUserAgent.toAscii());377 QNetworkReply *pReply = m_pNetworkManager->get(request);378 connect(pReply, SIGNAL(finished()), this, SLOT(sltHandleReply()));379 connect(pReply, SIGNAL(sslErrors(QList<QSslError>)), pReply, SLOT(ignoreSslErrors()));380 }381 382 void VBoxUpdateDlg::sltHandleReply()383 {384 /* Get corresponding network reply object: */385 QNetworkReply *pReply = qobject_cast<QNetworkReply*>(sender());386 /* And ask it for suicide: */387 pReply->deleteLater();388 389 /* Hide progress bar: */390 mPbCheck->hide();391 392 /* Handle normal result: */393 if (pReply->error() == QNetworkReply::NoError)394 {395 /* Deserialize incoming data: */396 QString strResponseData(pReply->readAll());397 398 /* Newer version of necessary package found: */399 if (strResponseData.indexOf(QRegExp("^\\d+\\.\\d+\\.\\d+ \\S+$")) == 0)400 {401 QStringList response = strResponseData.split(" ", QString::SkipEmptyParts);402 403 /* For background update: */404 if (isHidden())405 {406 msgCenter().showUpdateSuccess(vboxGlobal().mainWindow(), response[0], response[1]);407 acceptLater();408 }409 /* For wizard update: */410 else411 {412 mTextSuccessInfo->setText(mTextSuccessInfo->text().arg(response[0], response[1], response[1]));413 mTextSuccessInfo->show();414 mPageStack->setCurrentIndex(1);415 }416 }417 /* No newer version of necessary package found: */418 else419 {420 /* For background update: */421 if (isHidden())422 {423 if (m_fForceRun)424 msgCenter().showUpdateNotFound(vboxGlobal().mainWindow());425 acceptLater();426 }427 /* For wizard update: */428 else429 {430 mTextNotFoundInfo->show();431 mPageStack->setCurrentIndex(1);432 }433 }434 435 /* Save left count of checks: */436 int cCount = 1;437 QString strCount = vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateCheckCount);438 if (!strCount.isEmpty())439 {440 bool ok = false;441 int c = strCount.toLongLong(&ok);442 if (ok) cCount = c;443 }444 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateCheckCount, QString("%1").arg((qulonglong)cCount + 1));445 }446 /* Handle errors: */447 else448 {449 /* For background update: */450 if (isHidden())451 {452 if (m_fForceRun)453 msgCenter().showUpdateFailure(vboxGlobal().mainWindow(), pReply->errorString());454 acceptLater();455 }456 /* For wizard update: */457 else458 {459 mTextFailureInfo->setText(mTextFailureInfo->text().arg(pReply->errorString()));460 mTextFailureInfo->show();461 mPageStack->setCurrentIndex(1);462 }463 }464 }465 -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateDefs.h
r38457 r38476 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * VBoxUpdateDlg class declaration4 * Update routine related declarations 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __ VBoxUpdateDlg_h__20 #define __ VBoxUpdateDlg_h__19 #ifndef __UIUpdateDefs_h__ 20 #define __UIUpdateDefs_h__ 21 21 22 22 /* Global includes: */ 23 23 #include <QDate> 24 #include <QUrl>25 24 26 /* Local includes */ 27 #include "QIWithRetranslateUI.h" 28 #include "VBoxUpdateDlg.gen.h" 29 30 /* Forward declarations: */ 31 class QNetworkAccessManager; 32 33 /** 34 * This structure is used to store retranslated reminder values. 35 */ 36 struct UpdateDay 25 /* This structure is used to store retranslated reminder values. */ 26 struct VBoxUpdateDay 37 27 { 38 UpdateDay(const QString &strVal, const QString &strKey)28 VBoxUpdateDay(const QString &strVal, const QString &strKey) 39 29 : val(strVal), key(strKey) {} 40 30 41 bool operator==(const UpdateDay &other) 42 { 43 return val == other.val || key == other.key; 44 } 31 bool operator==(const VBoxUpdateDay &other) { return val == other.val || key == other.key; } 45 32 46 33 QString val; 47 34 QString key; 48 35 }; 36 typedef QList<VBoxUpdateDay> VBoxUpdateDayList; 49 37 50 /** 51 * This class is used to encode/decode the registration data. 52 */ 38 /* This class is used to encode/decode update data. */ 53 39 class VBoxUpdateData 54 40 { 55 41 public: 56 42 43 /* Period types: */ 57 44 enum PeriodType 58 45 { … … 71 58 }; 72 59 60 /* Branch types: */ 73 61 enum BranchType 74 62 { … … 78 66 }; 79 67 68 /* Public static helpers: */ 80 69 static void populate(); 81 70 static QStringList list(); 82 71 72 /* Constructors: */ 83 73 VBoxUpdateData(const QString &strData); 84 74 VBoxUpdateData(PeriodType periodIndex, BranchType branchIndex); 85 75 86 bool isNecessary();87 bool isNoNeedToCheck() ;88 76 /* Public helpers: */ 77 bool isNoNeedToCheck() const; 78 bool isNeedToCheck() const; 89 79 QString data() const; 90 80 PeriodType periodIndex() const; … … 95 85 private: 96 86 97 /* Private functions*/87 /* Private helpers: */ 98 88 void decode(); 99 89 void encode(); 100 90 101 /* Private variables */ 102 static QList <UpdateDay> m_dayList; 103 91 /* Private variables: */ 92 static VBoxUpdateDayList m_dayList; 104 93 QString m_strData; 105 94 PeriodType m_periodIndex; … … 108 97 }; 109 98 110 class VBoxUpdateDlg : public QIWithRetranslateUI<QDialog>, public Ui::VBoxUpdateDlg 111 { 112 Q_OBJECT; 113 114 public: 115 116 static bool isNecessary(); 117 118 VBoxUpdateDlg(VBoxUpdateDlg **ppSelf, bool fForceRun, QWidget *pParent = 0); 119 ~VBoxUpdateDlg(); 120 121 signals: 122 123 void sigDelayedAcception(); 124 125 public slots: 126 127 void search(); 128 129 protected: 130 131 void retranslateUi(); 132 void acceptLater() { emit sigDelayedAcception(); } 133 134 private slots: 135 136 void accept(); 137 void sltHandleReply(); 138 139 private: 140 141 VBoxUpdateDlg **m_ppSelf; 142 QNetworkAccessManager *m_pNetworkManager; 143 QUrl m_url; 144 bool m_fForceRun; 145 }; 146 147 #endif // __VBoxUpdateDlg_h__ 148 99 #endif // __UIUpdateDefs_h__ -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp
r38457 r38476 1 /* $Id$ */ 1 2 /** @file 2 3 * 3 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * VBoxUpdateDlgclass implementation5 * UIUpdateManager class implementation 5 6 */ 6 7 … … 17 18 */ 18 19 19 #ifdef VBOX_WITH_PRECOMPILED_HEADERS 20 #include "precomp.h" 21 #else /* !VBOX_WITH_PRECOMPILED_HEADERS */ 22 /* Global includes */ 23 #include <QNetworkAccessManager> 20 /* Global includes: */ 21 #include <QEventLoop> 24 22 #include <QNetworkReply> 25 /* Local includes */ 26 #include "VBoxUpdateDlg.h" 23 #include <QTimer> 24 #include <QDir> 25 26 /* Local includes: */ 27 #include "UIUpdateManager.h" 28 #include "UINetworkManager.h" 27 29 #include "VBoxGlobal.h" 28 30 #include "UIMessageCenter.h" 29 #include "UIIconPool.h"30 31 #include "VBoxUtils.h" 31 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 32 33 /** 34 * This class is used to store VBox version data. 35 */ 36 class VBoxVersion 37 { 38 public: 39 40 VBoxVersion(const QString &strVersion) 41 : x(0), y(0), z(0) 42 { 43 QStringList versionStack = strVersion.split('.'); 44 if (versionStack.size() > 0) 45 x = versionStack[0].toInt(); 46 if (versionStack.size() > 1) 47 y = versionStack[1].toInt(); 48 if (versionStack.size() > 2) 49 z = versionStack[2].toInt(); 50 } 51 52 bool operator<(const VBoxVersion &other) const 53 { 54 return (x < other.x) || 55 (x == other.x && y < other.y) || 56 (x == other.x && y == other.y && z < other.z); 57 } 58 59 QString toString() const 60 { 61 return QString("%1.%2.%3").arg(x).arg(y).arg(z); 62 } 63 64 private: 65 66 int x; 67 int y; 68 int z; 69 }; 70 71 /* VBoxUpdateData stuff: */ 72 QList<UpdateDay> VBoxUpdateData::m_dayList = QList<UpdateDay>(); 73 74 void VBoxUpdateData::populate() 75 { 76 m_dayList.clear(); 77 78 /* To avoid re-translation complexity all 79 * have to be retranslated separately: */ 80 81 /* Separately retranslate each day: */ 82 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 day"), "1 d"); 83 m_dayList << UpdateDay(VBoxUpdateDlg::tr("2 days"), "2 d"); 84 m_dayList << UpdateDay(VBoxUpdateDlg::tr("3 days"), "3 d"); 85 m_dayList << UpdateDay(VBoxUpdateDlg::tr("4 days"), "4 d"); 86 m_dayList << UpdateDay(VBoxUpdateDlg::tr("5 days"), "5 d"); 87 m_dayList << UpdateDay(VBoxUpdateDlg::tr("6 days"), "6 d"); 88 89 /* Separately retranslate each week */ 90 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 week"), "1 w"); 91 m_dayList << UpdateDay(VBoxUpdateDlg::tr("2 weeks"), "2 w"); 92 m_dayList << UpdateDay(VBoxUpdateDlg::tr("3 weeks"), "3 w"); 93 94 /* Separately retranslate each month */ 95 m_dayList << UpdateDay(VBoxUpdateDlg::tr("1 month"), "1 m"); 96 } 97 98 QStringList VBoxUpdateData::list() 99 { 100 QStringList result; 101 for (int i = 0; i < m_dayList.size(); ++i) 102 result << m_dayList[i].val; 103 return result; 104 } 105 106 VBoxUpdateData::VBoxUpdateData(const QString &strData) 107 : m_strData(strData) 108 , m_periodIndex(Period1Day) 109 , m_branchIndex(BranchStable) 110 { 111 decode(); 112 } 113 114 VBoxUpdateData::VBoxUpdateData(PeriodType periodIndex, BranchType branchIndex) 115 : m_strData(QString()) 116 , m_periodIndex(periodIndex) 117 , m_branchIndex(branchIndex) 118 { 119 encode(); 120 } 121 122 bool VBoxUpdateData::isNecessary() 123 { 124 return m_periodIndex != PeriodNever && QDate::currentDate() >= m_date; 125 } 126 127 bool VBoxUpdateData::isNoNeedToCheck() 128 { 129 return m_periodIndex == PeriodNever; 130 } 131 132 QString VBoxUpdateData::data() const 133 { 134 return m_strData; 135 } 136 137 VBoxUpdateData::PeriodType VBoxUpdateData::periodIndex() const 138 { 139 return m_periodIndex; 140 } 141 142 QString VBoxUpdateData::date() const 143 { 144 return m_periodIndex == PeriodNever ? VBoxUpdateDlg::tr("Never") 145 : m_date.toString(Qt::LocaleDate); 146 } 147 148 VBoxUpdateData::BranchType VBoxUpdateData::branchIndex() const 149 { 150 return m_branchIndex; 151 } 152 153 QString VBoxUpdateData::branchName() const 154 { 155 switch (m_branchIndex) 156 { 157 case BranchStable: 158 return "stable"; 159 case BranchAllRelease: 160 return "allrelease"; 161 case BranchWithBetas: 162 return "withbetas"; 163 } 164 return QString(); 165 } 166 167 void VBoxUpdateData::decode() 168 { 169 /* Parse standard values: */ 170 if (m_strData == "never") 171 m_periodIndex = PeriodNever; 172 /* Parse other values: */ 173 else 174 { 175 QStringList parser(m_strData.split(", ", QString::SkipEmptyParts)); 176 177 /* Parse 'period' value: */ 178 if (parser.size() > 0) 179 { 180 if (m_dayList.isEmpty()) 181 populate(); 182 PeriodType index = (PeriodType)m_dayList.indexOf(UpdateDay(QString(), parser[0])); 183 m_periodIndex = index == PeriodUndefined ? Period1Day : index; 184 } 185 186 /* Parse 'date' value: */ 187 if (parser.size() > 1) 188 { 189 QDate date = QDate::fromString(parser[1], Qt::ISODate); 190 m_date = date.isValid() ? date : QDate::currentDate(); 191 } 192 193 /* Parse 'branch' value: */ 194 if (parser.size() > 2) 195 { 196 QString branch(parser[2]); 197 m_branchIndex = branch == "withbetas" ? BranchWithBetas : 198 branch == "allrelease" ? BranchAllRelease : BranchStable; 199 } 200 } 201 } 202 203 void VBoxUpdateData::encode() 204 { 205 /* Encode standard values: */ 206 if (m_periodIndex == PeriodNever) 207 m_strData = "never"; 208 /* Encode other values: */ 209 else 210 { 211 /* Encode 'period' value: */ 212 if (m_dayList.isEmpty()) 213 populate(); 214 QString remindPeriod = m_dayList[m_periodIndex].key; 215 216 /* Encode 'date' value: */ 217 m_date = QDate::currentDate(); 218 QStringList parser(remindPeriod.split(' ')); 219 if (parser[1] == "d") 220 m_date = m_date.addDays(parser[0].toInt()); 221 else if (parser[1] == "w") 222 m_date = m_date.addDays(parser[0].toInt() * 7); 223 else if (parser[1] == "m") 224 m_date = m_date.addMonths(parser[0].toInt()); 225 QString remindDate = m_date.toString(Qt::ISODate); 226 227 /* Encode 'branch' value: */ 228 QString branchValue = m_branchIndex == BranchWithBetas ? "withbetas" : 229 m_branchIndex == BranchAllRelease ? "allrelease" : "stable"; 230 231 /* Composite m_strData: */ 232 m_strData = QString("%1, %2, %3").arg(remindPeriod, remindDate, branchValue); 233 } 234 } 235 236 /* VBoxUpdateDlg stuff: */ 237 bool VBoxUpdateDlg::isNecessary() 238 { 239 VBoxUpdateData data(vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateDate)); 240 return data.isNecessary(); 241 } 242 243 VBoxUpdateDlg::VBoxUpdateDlg(VBoxUpdateDlg **ppSelf, bool fForceRun, QWidget *pParent) 244 : QIWithRetranslateUI<QDialog>(pParent) 245 , m_ppSelf(ppSelf) 246 , m_pNetworkManager(new QNetworkAccessManager(this)) 247 , m_url("http://update.virtualbox.org/query.php") 248 , m_fForceRun(fForceRun) 249 { 250 /* Store external pointer to this dialog: */ 251 *m_ppSelf = this; 252 253 /* Apply UI decorations: */ 254 Ui::VBoxUpdateDlg::setupUi(this); 255 256 /* Apply window icons: */ 257 setWindowIcon(UIIconPool::iconSetFull(QSize(32, 32), QSize(16, 16), 258 ":/refresh_32px.png", ":/refresh_16px.png")); 259 260 /* Setup other connections: */ 261 connect(mBtnCheck, SIGNAL(clicked()), this, SLOT(search())); 262 connect(mBtnFinish, SIGNAL(clicked()), this, SLOT(accept())); 263 connect(this, SIGNAL(sigDelayedAcception()), this, SLOT(accept()), Qt::QueuedConnection); 264 265 /* Setup initial condition: */ 266 mPbCheck->setMinimumWidth(mLogoUpdate->width() + mLogoUpdate->frameWidth() * 2); 267 mPbCheck->hide(); 268 mTextSuccessInfo->hide(); 269 mTextFailureInfo->hide(); 270 mTextNotFoundInfo->hide(); 271 272 /* Retranslate string constants: */ 273 retranslateUi(); 274 } 275 276 VBoxUpdateDlg::~VBoxUpdateDlg() 277 { 278 /* Erase dialog handle in config file: */ 279 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateDlgWinID, QString()); 280 281 /* Erase external pointer to this dialog: */ 282 *m_ppSelf = 0; 283 } 284 285 void VBoxUpdateDlg::retranslateUi() 286 { 287 /* Translate uic generated strings: */ 288 Ui::VBoxUpdateDlg::retranslateUi(this); 289 290 /* For wizard update: */ 291 if (!isHidden()) 292 { 293 setWindowTitle(tr("VirtualBox Update Wizard")); 294 295 mPageUpdateHdr->setText(tr("Check for Updates")); 296 mBtnCheck->setText(tr("Chec&k")); 297 mBtnCancel->setText(tr("Cancel")); 298 299 mPageFinishHdr->setText(tr("Summary")); 300 mBtnFinish->setText(tr("&Close")); 301 302 mTextUpdateInfo->setText(tr("<p>This wizard will connect to the VirtualBox " 303 "web-site and check if a newer version of " 304 "VirtualBox is available.</p><p>Use the " 305 "<b>Check</b> button to check for a new version " 306 "now or the <b>Cancel</b> button if you do not " 307 "want to perform this check.</p><p>You can run " 308 "this wizard at any time by choosing <b>Check " 309 "for Updates...</b> from the <b>Help</b> menu.</p>")); 310 311 mTextSuccessInfo->setText(tr("<p>A new version of VirtualBox has been released! " 312 "Version <b>%1</b> is available at " 313 "<a href=\"http://www.virtualbox.org/\">virtualbox.org</a>.</p>" 314 "<p>You can download this version using the link:</p>" 315 "<p><a href=%2>%3</a></p>")); 316 317 mTextFailureInfo->setText(tr("<p>Unable to obtain the new version information " 318 "due to the following network error:</p><p><b>%1</b></p>")); 319 320 mTextNotFoundInfo->setText(tr("You are already running the most recent version of VirtualBox.")); 321 } 322 } 323 324 void VBoxUpdateDlg::accept() 325 { 326 /* Recalculate new update data: */ 327 VBoxUpdateData oldData(vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateDate)); 328 VBoxUpdateData newData(oldData.periodIndex(), oldData.branchIndex()); 329 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateDate, newData.data()); 330 /* Call to base-class: */ 331 QDialog::accept(); 332 } 333 334 void VBoxUpdateDlg::search() 32 #include "UIDownloaderExtensionPack.h" 33 #include "UIGlobalSettingsExtension.h" 34 35 /* UIUpdateManager stuff: */ 36 UIUpdateManager* UIUpdateManager::m_pInstance = 0; 37 38 /* static */ 39 void UIUpdateManager::schedule() 40 { 41 /* Ensure instance is NOT created: */ 42 if (m_pInstance) 43 return; 44 45 /* Create instance: */ 46 new UIUpdateManager; 47 } 48 49 /* static */ 50 void UIUpdateManager::shutdown() 51 { 52 /* Ensure instance is created: */ 53 if (!m_pInstance) 54 return; 55 56 /* Delete instance: */ 57 delete m_pInstance; 58 } 59 60 void UIUpdateManager::sltForceCheck() 61 { 62 /* Force call for new version check: */ 63 sltCheckIfUpdateIsNecessary(true); 64 } 65 66 UIUpdateManager::UIUpdateManager() 67 : m_uTime(1 /* day */ * 24 /* hours */ * 60 /* minutes */ * 60 /* seconds */ * 1000 /* ms */) 68 { 69 /* Prepare instance: */ 70 if (m_pInstance != this) 71 m_pInstance = this; 72 73 #ifdef VBOX_WITH_UPDATE_REQUEST 74 /* Ask updater to check for the first time: */ 75 QTimer::singleShot(0, this, SLOT(sltCheckIfUpdateIsNecessary())); 76 #endif /* VBOX_WITH_UPDATE_REQUEST */ 77 } 78 79 UIUpdateManager::~UIUpdateManager() 80 { 81 /* Cleanup instance: */ 82 if (m_pInstance == this) 83 m_pInstance = 0; 84 } 85 86 void UIUpdateManager::sltCheckIfUpdateIsNecessary(bool fForceCall /* = false */) 87 { 88 /* Load/decode curent update data: */ 89 VBoxUpdateData currentData(vboxGlobal().virtualBox().GetExtraData(VBoxDefs::GUI_UpdateDate)); 90 91 /* Check if update is really neessary: */ 92 if (fForceCall || currentData.isNeedToCheck()) 93 { 94 /* Check if update is necessary for VirtualBox itself: */ 95 checkIfUpdateIsNecessary(fForceCall); 96 97 /* Check if update is necessary for VirtualBox extension pack: */ 98 checkIfUpdateIsNecessaryForExtensionPack(fForceCall); 99 100 /* Encode/save new update data: */ 101 VBoxUpdateData newData(currentData.periodIndex(), currentData.branchIndex()); 102 vboxGlobal().virtualBox().SetExtraData(VBoxDefs::GUI_UpdateDate, newData.data()); 103 } 104 105 #ifdef VBOX_WITH_UPDATE_REQUEST 106 /* Ask updater to check for the next time: */ 107 QTimer::singleShot(m_uTime, this, SLOT(sltCheckIfUpdateIsNecessary())); 108 #endif /* VBOX_WITH_UPDATE_REQUEST */ 109 } 110 111 void UIUpdateManager::checkIfUpdateIsNecessary(bool fForceCall) 112 { 113 /* Creating VirtualBox version checker: */ 114 UINewVersionChecker checker(fForceCall); 115 /* Start synchronous check: */ 116 checker.checkForTheNewVersion(); 117 } 118 119 void UIUpdateManager::checkIfUpdateIsNecessaryForExtensionPack(bool /* fForceCall */) 120 { 121 /* Check if updater instance already created: */ 122 if (UIDownloaderExtensionPack::current()) 123 return; 124 125 /* Get extension pack information: */ 126 QString strExtPackName = "Oracle VM VirtualBox Extension Pack"; 127 CExtPack extPack = vboxGlobal().virtualBox().GetExtensionPackManager().Find(strExtPackName); 128 /* Check if extension pack is really installed: */ 129 if (extPack.isNull()) 130 return; 131 132 /* Get VirtualBox version: */ 133 VBoxVersion vboxVersion(vboxGlobal().virtualBox().GetVersion().remove("_OSE")); 134 /* Get extension pack version: */ 135 VBoxVersion expackVersion(extPack.GetVersion().remove("_OSE")); 136 /* Check if extension pack version less than required: */ 137 if ((vboxVersion.z() % 2 != 0) /* Skip unstable VBox version */ || 138 !(expackVersion < vboxVersion) /* Ext Pack version more or equal to VBox version */) 139 return; 140 141 /* Ask the user about extension pack downloading: */ 142 if (!msgCenter().proposeDownloadExtensionPack()) 143 return; 144 145 /* Run downloader for VirtualBox extension pack: */ 146 UIDownloaderExtensionPack::download(this); 147 } 148 149 void UIUpdateManager::sltHandleDownloadedExtensionPack(const QString &strSource, const QString &strTarget) 150 { 151 /* Warn the user about extension pack was downloaded and saved, propose to install it: */ 152 if (msgCenter().proposeInstallExtentionPack(strSource, QDir::toNativeSeparators(strTarget))) 153 UIGlobalSettingsExtension::doInstallation(strTarget, msgCenter().mainWindowShown(), NULL); 154 } 155 156 /* UINewVersionChecker stuff: */ 157 UINewVersionChecker::UINewVersionChecker(bool fForceCall) 158 : m_url("http://update.virtualbox.org/query.php") 159 , m_fForceCall(fForceCall) 160 , m_pLoop(new QEventLoop(this)) 161 { 162 } 163 164 void UINewVersionChecker::checkForTheNewVersion() 335 165 { 336 166 /* Calculate the count of checks left: */ … … 347 177 QUrl url(m_url); 348 178 url.addQueryItem("platform", vboxGlobal().virtualBox().GetPackageType()); 349 /* Branding: Check whether we have a local branding file which tells us our version suffix "FOO" 350 (e.g. 3.06.54321_FOO) to identify this installation */ 179 /* Check if branding is active: */ 351 180 if (vboxGlobal().brandingIsActive()) 352 181 { 182 /* Branding: Check whether we have a local branding file which tells us our version suffix "FOO" 183 (e.g. 3.06.54321_FOO) to identify this installation: */ 353 184 url.addQueryItem("version", QString("%1_%2_%3").arg(vboxGlobal().virtualBox().GetVersion()) 354 185 .arg(vboxGlobal().virtualBox().GetRevision()) … … 368 199 .arg(vboxGlobal().platformInfo())); 369 200 370 /* Show progress bar: */371 mPbCheck->show();372 373 201 /* Setup GET request: */ 374 202 QNetworkRequest request; 375 203 request.setUrl(url); 376 204 request.setRawHeader("User-Agent", strUserAgent.toAscii()); 377 QNetworkReply *pReply = m_pNetworkManager->get(request);378 connect(pReply, SIGNAL(finished()), this, SLOT(sltHandle Reply()));205 QNetworkReply *pReply = gNetworkManager->get(request); 206 connect(pReply, SIGNAL(finished()), this, SLOT(sltHandleCheckReply())); 379 207 connect(pReply, SIGNAL(sslErrors(QList<QSslError>)), pReply, SLOT(ignoreSslErrors())); 380 } 381 382 void VBoxUpdateDlg::sltHandleReply() 208 209 /* Lock event loop: */ 210 m_pLoop->exec(); 211 } 212 213 void UINewVersionChecker::sltHandleCheckReply() 383 214 { 384 215 /* Get corresponding network reply object: */ … … 387 218 pReply->deleteLater(); 388 219 389 /* Hide progress bar: */390 mPbCheck->hide();391 392 220 /* Handle normal result: */ 393 221 if (pReply->error() == QNetworkReply::NoError) … … 400 228 { 401 229 QStringList response = strResponseData.split(" ", QString::SkipEmptyParts); 402 403 /* For background update: */ 404 if (isHidden()) 405 { 406 msgCenter().showUpdateSuccess(vboxGlobal().mainWindow(), response[0], response[1]); 407 acceptLater(); 408 } 409 /* For wizard update: */ 410 else 411 { 412 mTextSuccessInfo->setText(mTextSuccessInfo->text().arg(response[0], response[1], response[1])); 413 mTextSuccessInfo->show(); 414 mPageStack->setCurrentIndex(1); 415 } 230 msgCenter().showUpdateSuccess(vboxGlobal().mainWindow(), response[0], response[1]); 416 231 } 417 232 /* No newer version of necessary package found: */ 418 233 else 419 234 { 420 /* For background update: */ 421 if (isHidden()) 422 { 423 if (m_fForceRun) 424 msgCenter().showUpdateNotFound(vboxGlobal().mainWindow()); 425 acceptLater(); 426 } 427 /* For wizard update: */ 428 else 429 { 430 mTextNotFoundInfo->show(); 431 mPageStack->setCurrentIndex(1); 432 } 235 if (m_fForceCall) 236 msgCenter().showUpdateNotFound(vboxGlobal().mainWindow()); 433 237 } 434 238 … … 447 251 else 448 252 { 449 /* For background update: */ 450 if (isHidden()) 451 { 452 if (m_fForceRun) 453 msgCenter().showUpdateFailure(vboxGlobal().mainWindow(), pReply->errorString()); 454 acceptLater(); 455 } 456 /* For wizard update: */ 457 else 458 { 459 mTextFailureInfo->setText(mTextFailureInfo->text().arg(pReply->errorString())); 460 mTextFailureInfo->show(); 461 mPageStack->setCurrentIndex(1); 462 } 463 } 464 } 465 253 if (m_fForceCall) 254 msgCenter().showUpdateFailure(vboxGlobal().mainWindow(), pReply->errorString()); 255 } 256 257 /* Unlock event loop: */ 258 m_pLoop->exit(); 259 } 260 -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.h
r38457 r38476 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * VBoxUpdateDlgclass declaration4 * UIUpdateManager class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __ VBoxUpdateDlg_h__20 #define __ VBoxUpdateDlg_h__19 #ifndef __UIUpdateManager_h__ 20 #define __UIUpdateManager_h__ 21 21 22 22 /* Global includes: */ 23 #include <QDate>24 23 #include <QUrl> 25 24 26 /* Local includes */ 27 #include "QIWithRetranslateUI.h" 28 #include "VBoxUpdateDlg.gen.h" 25 /* Local includes: */ 26 #include "UIUpdateDefs.h" 29 27 30 28 /* Forward declarations: */ 31 class Q NetworkAccessManager;29 class QEventLoop; 32 30 33 /** 34 * This structure is used to store retranslated reminder values. 35 */ 36 struct UpdateDay 37 { 38 UpdateDay(const QString &strVal, const QString &strKey) 39 : val(strVal), key(strKey) {} 40 41 bool operator==(const UpdateDay &other) 42 { 43 return val == other.val || key == other.key; 44 } 45 46 QString val; 47 QString key; 48 }; 49 50 /** 51 * This class is used to encode/decode the registration data. 52 */ 53 class VBoxUpdateData 54 { 55 public: 56 57 enum PeriodType 58 { 59 PeriodNever = -2, 60 PeriodUndefined = -1, 61 Period1Day = 0, 62 Period2Days = 1, 63 Period3Days = 2, 64 Period4Days = 3, 65 Period5Days = 4, 66 Period6Days = 5, 67 Period1Week = 6, 68 Period2Weeks = 7, 69 Period3Weeks = 8, 70 Period1Month = 9 71 }; 72 73 enum BranchType 74 { 75 BranchStable = 0, 76 BranchAllRelease = 1, 77 BranchWithBetas = 2 78 }; 79 80 static void populate(); 81 static QStringList list(); 82 83 VBoxUpdateData(const QString &strData); 84 VBoxUpdateData(PeriodType periodIndex, BranchType branchIndex); 85 86 bool isNecessary(); 87 bool isNoNeedToCheck(); 88 89 QString data() const; 90 PeriodType periodIndex() const; 91 QString date() const; 92 BranchType branchIndex() const; 93 QString branchName() const; 94 95 private: 96 97 /* Private functions */ 98 void decode(); 99 void encode(); 100 101 /* Private variables */ 102 static QList <UpdateDay> m_dayList; 103 104 QString m_strData; 105 PeriodType m_periodIndex; 106 QDate m_date; 107 BranchType m_branchIndex; 108 }; 109 110 class VBoxUpdateDlg : public QIWithRetranslateUI<QDialog>, public Ui::VBoxUpdateDlg 31 /* Singleton to check for the new VirtualBox version. 32 * Performs update of required parts if necessary. */ 33 class UIUpdateManager : public QObject 111 34 { 112 35 Q_OBJECT; … … 114 37 public: 115 38 116 static bool isNecessary(); 117 118 VBoxUpdateDlg(VBoxUpdateDlg **ppSelf, bool fForceRun, QWidget *pParent = 0); 119 ~VBoxUpdateDlg(); 39 /* Schedule manager: */ 40 static void schedule(); 41 /* Shutdown manager: */ 42 static void shutdown(); 43 /* Manager instance: */ 44 static UIUpdateManager* instance() { return m_pInstance; } 120 45 121 46 signals: 122 47 123 void sigDelayedAcception(); 48 /* Signal to notify listeners about downloading: */ 49 void sigDownloaderCreatedForExtensionPack(); 124 50 125 51 public slots: 126 52 127 void search(); 128 129 protected: 130 131 void retranslateUi(); 132 void acceptLater() { emit sigDelayedAcception(); } 53 /* Force call for new version check: */ 54 void sltForceCheck(); 133 55 134 56 private slots: 135 57 136 void accept(); 137 void sltHandleReply(); 58 /* Slot to check if update is necessary: */ 59 void sltCheckIfUpdateIsNecessary(bool fForceCall = false); 60 61 /* Handle downloaded extension pack: */ 62 void sltHandleDownloadedExtensionPack(const QString &strSource, const QString &strTarget); 138 63 139 64 private: 140 65 141 VBoxUpdateDlg **m_ppSelf; 142 QNetworkAccessManager *m_pNetworkManager; 143 QUrl m_url; 144 bool m_fForceRun; 66 /* Constructor/destructor: */ 67 UIUpdateManager(); 68 ~UIUpdateManager(); 69 70 /* Helping stuff: */ 71 void checkIfUpdateIsNecessary(bool fForceCall); 72 void checkIfUpdateIsNecessaryForExtensionPack(bool fForceCall); 73 74 /* Variables: */ 75 static UIUpdateManager* m_pInstance; 76 quint64 m_uTime; 77 }; 78 #define gUpdateManager UIUpdateManager::instance() 79 80 /* Class to check for the new VirtualBox version: */ 81 class UINewVersionChecker : public QObject 82 { 83 Q_OBJECT; 84 85 public: 86 87 /* Constructor: */ 88 UINewVersionChecker(bool fForceCall); 89 90 /* Function to check if new version is available: */ 91 void checkForTheNewVersion(); 92 93 private slots: 94 95 /* Slot to analyze new version check reply: */ 96 void sltHandleCheckReply(); 97 98 private: 99 100 /* Variables: */ 101 QUrl m_url; 102 bool m_fForceCall; 103 QEventLoop *m_pLoop; 145 104 }; 146 105 147 #endif // __VBoxUpdateDlg_h__ 148 106 #endif // __UIUpdateManager_h__ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachine.cpp
r38348 r38476 386 386 *m_ppThis = this; 387 387 388 /* Create action pool: */389 UIActionPoolRuntime::create();390 391 388 /* Create UISession object: */ 392 389 m_pSession = new UISession(this, m_session); … … 418 415 m_session.UnlockMachine(); 419 416 m_session.detach(); 420 /* Destroy action pool: */421 UIActionPoolRuntime::destroy();422 417 /* Quit application: */ 423 418 QApplication::quit(); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineMenuBar.cpp
r38348 r38476 26 26 #include "UIExtraDataEventHandler.h" 27 27 #include "UIImageTools.h" 28 #include "UIUpdateManager.h" 28 29 29 30 /* Global includes */ … … 295 296 &msgCenter(), SLOT(sltShowHelpAboutDialog())); 296 297 VBoxGlobal::connect(gActionPool->action(UIActionIndex_Simple_Update), SIGNAL(triggered()), 297 &vboxGlobal(), SLOT(showUpdateDialog()));298 gUpdateManager, SLOT(sltForceCheck())); 298 299 #if defined(Q_WS_MAC) && (QT_VERSION < 0x040700) 299 300 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r38348 r38476 1027 1027 void UISession::preparePowerUp() 1028 1028 { 1029 #ifdef VBOX_WITH_UPDATE_REQUEST1030 /* Check for updates if necessary: */1031 vboxGlobal().showUpdateDialog(false /* force request? */);1032 #endif1033 1034 1029 /* Notify user about mouse&keyboard auto-capturing: */ 1035 1030 if (vboxGlobal().settings().autoCapture()) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp
r38348 r38476 31 31 #include "UIMachineWindow.h" 32 32 #include "UIDownloaderAdditions.h" 33 #include "UIDownloaderExtensionPack.h" 33 34 34 35 #ifdef Q_WS_MAC … … 77 78 prepareMachineWindows(); 78 79 79 /* If there is an Additions download running, update the parent window 80 * information. */ 80 /* If there is an Additions download running, update the parent window information. */ 81 81 if (UIDownloaderAdditions *pDl = UIDownloaderAdditions::current()) 82 pDl->setParentWidget(mainMachineWindow()->machineWindow()); 83 84 /* If there is an Extension Pack download running, update the parent window information. */ 85 if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current()) 82 86 pDl->setParentWidget(mainMachineWindow()->machineWindow()); 83 87 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r38348 r38476 37 37 #include "UIMachineWindowNormal.h" 38 38 #include "UIMachineView.h" 39 #include "UIUpdateManager.h" 39 40 #include "UIDownloaderAdditions.h" 40 41 #include "UIDownloaderUserManual.h" 42 #include "UIDownloaderExtensionPack.h" 41 43 #ifdef Q_WS_MAC 42 44 # include "UIImageTools.h" … … 168 170 } 169 171 170 void UIMachineWindowNormal::slt DownloaderAdditionsEmbed()172 void UIMachineWindowNormal::sltEmbedDownloaderForAdditions() 171 173 { 172 174 /* If there is an additions download running show the process bar: */ … … 175 177 } 176 178 177 void UIMachineWindowNormal::slt DownloaderUserManualEmbed()179 void UIMachineWindowNormal::sltEmbedDownloaderForUserManual() 178 180 { 179 181 /* If there is an additions download running show the process bar: */ 180 182 if (UIDownloaderUserManual *pDl = UIDownloaderUserManual::current()) 183 statusBar()->addWidget(pDl->progressWidget(this), 0); 184 } 185 186 void UIMachineWindowNormal::sltEmbedDownloaderForExtensionPack() 187 { 188 /* If there is an extension pack download running show the process bar: */ 189 if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current()) 181 190 statusBar()->addWidget(pDl->progressWidget(this), 0); 182 191 } … … 460 469 /* Add the additions downloader progress bar to the status bar, 461 470 * if a download is actually running: */ 462 slt DownloaderAdditionsEmbed();471 sltEmbedDownloaderForAdditions(); 463 472 464 473 /* Add the user manual progress bar to the status bar, 465 474 * if a download is actually running: */ 466 sltDownloaderUserManualEmbed(); 475 sltEmbedDownloaderForUserManual(); 476 477 /* Add the extension pack progress bar to the status bar, 478 * if a download is actually running: */ 479 sltEmbedDownloaderForExtensionPack(); 467 480 468 481 /* Create & start timer to update LEDs: */ … … 483 496 this, SLOT(sltProcessGlobalSettingChange(const char *, const char *))); 484 497 /* Setup additions downloader listener: */ 485 connect(machineLogic(), SIGNAL(sigDownloaderAdditionsCreated()), this, SLOT(slt DownloaderAdditionsEmbed()));498 connect(machineLogic(), SIGNAL(sigDownloaderAdditionsCreated()), this, SLOT(sltEmbedDownloaderForAdditions())); 486 499 /* Setup user manual downloader listener: */ 487 connect(&msgCenter(), SIGNAL(sigDownloaderUserManualCreated()), this, SLOT(sltDownloaderUserManualEmbed())); 500 connect(&msgCenter(), SIGNAL(sigDownloaderUserManualCreated()), this, SLOT(sltEmbedDownloaderForUserManual())); 501 /* Setup extension pack downloader listener: */ 502 connect(gUpdateManager, SIGNAL(sigDownloaderCreatedForExtensionPack()), this, SLOT(sltEmbedDownloaderForExtensionPack())); 488 503 } 489 504 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.h
r37712 r38476 63 63 64 64 /* Downloader listeners: */ 65 void sltDownloaderAdditionsEmbed(); 66 void sltDownloaderUserManualEmbed(); 65 void sltEmbedDownloaderForAdditions(); 66 void sltEmbedDownloaderForUserManual(); 67 void sltEmbedDownloaderForExtensionPack(); 67 68 68 69 private: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineLogicScale.cpp
r38348 r38476 28 28 #include "UIMachineWindow.h" 29 29 #include "UIDownloaderAdditions.h" 30 #include "UIDownloaderExtensionPack.h" 30 31 31 32 #ifdef Q_WS_MAC … … 97 98 prepareMachineWindows(); 98 99 99 /* If there is an Additions download running, update the parent window 100 * information. */ 100 /* If there is an Additions download running, update the parent window information. */ 101 101 if (UIDownloaderAdditions *pDl = UIDownloaderAdditions::current()) 102 pDl->setParentWidget(mainMachineWindow()->machineWindow()); 103 104 /* If there is an Extension Pack download running, update the parent window information. */ 105 if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current()) 102 106 pDl->setParentWidget(mainMachineWindow()->machineWindow()); 103 107 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp
r38467 r38476 22 22 #include "QISplitter.h" 23 23 #include "UIBar.h" 24 #include "UIUpdateManager.h" 24 25 #include "UIDownloaderUserManual.h" 26 #include "UIDownloaderExtensionPack.h" 25 27 #include "UIExportApplianceWzd.h" 26 28 #include "UIIconPool.h" … … 42 44 #include "UIDesktopServices.h" 43 45 #include "UIGlobalSettingsExtension.h" /* extension pack installation */ 44 #include "UIActionPool Selector.h"46 #include "UIActionPool.h" 45 47 46 48 #ifdef VBOX_GUI_WITH_SYSTRAY … … 94 96 , mDoneInaccessibleWarningOnce(false) 95 97 { 96 /* Create offline action pool: */97 UIActionPoolSelector::create();98 99 98 VBoxGlobalSettings settings = vboxGlobal().settings(); 100 99 … … 494 493 495 494 /* Listen to potential downloaders signals: */ 496 connect(&msgCenter(), SIGNAL(sigDownloaderUserManualCreated()), this, SLOT(sltDownloaderUserManualEmbed())); 495 connect(&msgCenter(), SIGNAL(sigDownloaderUserManualCreated()), this, SLOT(sltEmbedDownloaderForUserManual())); 496 connect(gUpdateManager, SIGNAL(sigDownloaderCreatedForExtensionPack()), this, SLOT(sltEmbedDownloaderForExtensionPack())); 497 497 498 498 /* bring the VM list to the focus */ … … 563 563 /* Delete the items from our model */ 564 564 mVMModel->clear(); 565 566 /* Delete offline action pool: */567 UIActionPoolSelector::destroy();568 565 } 569 566 … … 1663 1660 #endif /* VBOX_GUI_WITH_SYSTRAY */ 1664 1661 1665 void VBoxSelectorWnd::slt DownloaderUserManualEmbed()1662 void VBoxSelectorWnd::sltEmbedDownloaderForUserManual() 1666 1663 { 1667 1664 /* If there is User Manual downloader created => show the process bar: */ 1668 1665 if (UIDownloaderUserManual *pDl = UIDownloaderUserManual::current()) 1666 statusBar()->addWidget(pDl->progressWidget(this), 0); 1667 } 1668 1669 void VBoxSelectorWnd::sltEmbedDownloaderForExtensionPack() 1670 { 1671 /* If there is Extension Pack downloader created => show the process bar: */ 1672 if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current()) 1669 1673 statusBar()->addWidget(pDl->progressWidget(this), 0); 1670 1674 } … … 1770 1774 #endif /* VBOX_WITH_REGISTRATION */ 1771 1775 VBoxGlobal::connect(gActionPool->action(UIActionIndex_Simple_Update), SIGNAL(triggered()), 1772 &vboxGlobal(), SLOT(showUpdateDialog()));1776 gUpdateManager, SLOT(sltForceCheck())); 1773 1777 VBoxGlobal::connect(gActionPool->action(UIActionIndex_Simple_About), SIGNAL(triggered()), 1774 1778 &msgCenter(), SLOT(sltShowHelpAboutDialog())); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.h
r38355 r38476 134 134 #endif 135 135 136 void sltDownloaderUserManualEmbed(); 136 void sltEmbedDownloaderForUserManual(); 137 void sltEmbedDownloaderForExtensionPack(); 137 138 138 139 void showViewContextMenu(const QPoint &pos); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.h
r34166 r38476 23 23 #include "UISettingsPage.h" 24 24 #include "UIGlobalSettingsUpdate.gen.h" 25 #include " VBoxUpdateDlg.h"25 #include "UIUpdateDefs.h" 26 26 27 27 /* Global settings / Update page / Cache: */
Note:
See TracChangeset
for help on using the changeset viewer.