Changeset 34787 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 7, 2010 2:51:18 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68597
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.cpp
r34781 r34787 45 45 46 46 #if defined (Q_WS_WIN32) 47 # include <Htmlhelp.h>47 # include <Htmlhelp.h> 48 48 #endif 49 49 … … 2110 2110 } 2111 2111 2112 void VBoxProblemReporter::cannotInstallExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0 */) 2112 void VBoxProblemReporter::cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent /* = 0 */) 2113 { 2114 message (pParent ? pParent : mainWindowShown(), 2115 Error, 2116 tr("Failed to open the Extension Pack <b>%1</b>.").arg(strFilename), 2117 formatErrorInfo(extPackManager)); 2118 } 2119 2120 void VBoxProblemReporter::badExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0 */) 2121 { 2122 message (pParent ? pParent : mainWindowShown(), 2123 Error, 2124 tr("Failed to open the Extension Pack <b>%1</b>.").arg(strFilename), 2125 extPackFile.GetWhyUnusable()); 2126 } 2127 2128 void VBoxProblemReporter::cannotInstallExtPack(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent /* = 0 */) 2113 2129 { 2114 2130 message (pParent ? pParent : mainWindowShown(), 2115 2131 Error, 2116 2132 tr("Failed to install the Extension Pack <b>%1</b>.").arg(strFilename), 2117 formatErrorInfo(extPack Manager));2133 formatErrorInfo(extPackFile)); 2118 2134 } 2119 2135 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxProblemReporter.h
r34740 r34787 338 338 void cannotUpdateGuestAdditions (const CProgress &aProgress, QWidget *aParent /* = NULL */) const; 339 339 340 void cannotInstallExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent = 0); 340 void cannotOpenExtPack(const QString &strFilename, const CExtPackManager &extPackManager, QWidget *pParent = 0); 341 void badExtPackFile(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent = 0); 342 void cannotInstallExtPack(const QString &strFilename, const CExtPackFile &extPackFile, QWidget *pParent = 0); 341 343 void cannotUninstallExtPack(const QString &strPackName, const CExtPackManager &extPackManager, QWidget *pParent = 0); 342 344 bool confirmRemovingPackage(const QString &strPackName, QWidget *pParent = 0); -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp
r34728 r34787 39 39 #include "QIFileDialog.h" 40 40 #include "UIDesktopServices.h" 41 #include "UIGlobalSettingsExtension.h" /* extension pack installation */ 41 42 42 43 #ifdef VBOX_GUI_WITH_SYSTRAY … … 1011 1012 else if (VBoxGlobal::hasAllowedExtension(strFile, VBoxDefs::VBoxExtPackFileExts)) 1012 1013 { 1013 CExtPackManager extPackManager = vboxGlobal().virtualBox().GetExtensionPackManager(); 1014 extPackManager.Install(strFile); 1015 if (!extPackManager.isOk()) 1016 vboxProblem().cannotInstallExtPack(strFile, extPackManager, this); 1014 UIGlobalSettingsExtension::doInstallation(strFile, this, NULL); 1017 1015 } 1018 1016 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.cpp
r34596 r34787 104 104 } 105 105 106 /** 107 * Attempt the actual installation. 108 * 109 * This code is shared by UIGlobalSettingsExtension::sltInstallPackage and 110 * VBoxSelectorWnd::sltOpenUrls. 111 * @todo Is there perhaps a better home for this method? 112 * 113 * @returns true if successfully installed, false if not. 114 * @param strFilePath The path to the tarball. 115 * @param pParent The parent widget. 116 * @param pstrExtPackName Where to return the extension pack name. Optional. 117 */ 118 /*static*/ bool UIGlobalSettingsExtension::doInstallation(QString const &strFilePath, QWidget *pParent, QString *pstrExtPackName) 119 { 120 bool fInstalled = false; 121 122 /* 123 * Open the extpack tarball via IExtPackManager. 124 */ 125 CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager(); 126 CExtPackFile extPackFile = manager.OpenExtPackFile(strFilePath); 127 if (manager.isOk()) 128 { 129 if (pstrExtPackName) 130 *pstrExtPackName = extPackFile.GetName(); 131 if (extPackFile.GetUsable()) 132 { 133 bool fAck = true; 134 /** @todo display big fat warning message. */ 135 136 if (fAck) 137 { 138 /** @todo display licenses. */ 139 } 140 141 /* 142 * Install it if everything was ACKed by the user. 143 */ 144 if (fAck) 145 { 146 extPackFile.Install(); 147 if (extPackFile.isOk()) 148 fInstalled = true; 149 else 150 vboxProblem().cannotInstallExtPack(strFilePath, extPackFile, pParent); 151 } 152 } 153 else 154 vboxProblem().badExtPackFile(strFilePath, extPackFile, pParent); 155 } 156 else 157 vboxProblem().cannotOpenExtPack(strFilePath, manager, pParent); 158 159 return fInstalled; 160 } 161 106 162 /* Load data to cashe from corresponding external object(s), 107 163 * this task COULD be performed in other than GUI thread: */ … … 208 264 extensions << QString("*.%1").arg(VBoxDefs::VBoxExtPackFileExts[i]); 209 265 QString strFilter = tr("Extension package files (%1)").arg(extensions.join(" ")); 266 210 267 /* Create open file dialog: */ 211 268 QStringList fileNames = QIFileDialog::getOpenFileNames(strBaseFolder, strFilter, this, strTitle, 0, true, true); … … 213 270 strFilePath = fileNames.at(0); 214 271 215 /* Install chosen package: */ 272 /* 273 * Install chosen package. 274 */ 216 275 if (!strFilePath.isEmpty()) 217 276 { 218 /* Get package manager: */ 219 CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager(); 220 /* Install package & get the name of newly installed package: */ 221 QString strAddedPackageName = manager.Install(strFilePath); 222 if (manager.isOk()) 277 QString strExtPackName; 278 if (doInstallation(strFilePath, this, &strExtPackName)) 223 279 { 224 /* Get the newly added package: */ 225 const CExtPack &package = manager.Find(strAddedPackageName); 226 /* Add newly added package into cache: */ 280 /* 281 * Insert the fresly installed extension pack, mark it as 282 * current in the tree and sort by name (col 1). 283 */ 284 CExtPackManager manager = vboxGlobal().virtualBox().GetExtensionPackManager(); 285 const CExtPack &package = manager.Find(strExtPackName); 227 286 m_cache.m_items << fetchData(package); 228 /* Add newly added package into tree: */229 287 UIExtensionPackageItem *pItem = new UIExtensionPackageItem(m_pPackagesTree, m_cache.m_items.last()); 230 /* Set the newly created item as current: */231 288 m_pPackagesTree->setCurrentItem(pItem); 232 /* Sort the tree by <name> column: */233 289 m_pPackagesTree->sortByColumn(1, Qt::AscendingOrder); 234 290 } 235 else vboxProblem().cannotInstallExtPack(strFilePath, manager, this);236 291 } 237 292 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsExtension.h
r34543 r34787 51 51 UIGlobalSettingsExtension(); 52 52 53 static bool doInstallation(QString const &strFilePath, QWidget *pParent, QString *pstrExtPackName); 54 53 55 protected: 54 56
Note:
See TracChangeset
for help on using the changeset viewer.