Changeset 57883 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 24, 2015 3:13:29 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102850
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r57844 r57883 232 232 VBoxGlobal::VBoxGlobal() 233 233 : mValid (false) 234 , m_fWrappersValid(false) 234 235 , m_fVBoxSVCAvailable(true) 235 236 , m_fSeparateProcess(false) … … 4022 4023 m_host = virtualBox().GetHost(); 4023 4024 m_strHomeFolder = virtualBox().GetHomeFolder(); 4025 /* Mark wrappers valid: */ 4026 m_fWrappersValid = true; 4024 4027 4025 4028 /* Watch for the VBoxSVC availability changes: */ … … 4379 4382 UIUpdateManager::schedule(); 4380 4383 #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */ 4384 4385 #ifdef RT_OS_LINUX 4386 /* Make sure no wrong USB mounted: */ 4387 checkForWrongUSBMounted(); 4388 #endif /* RT_OS_LINUX */ 4381 4389 } 4382 4390 … … 4467 4475 /* Cache the new VBoxSVC availability value: */ 4468 4476 m_fVBoxSVCAvailable = fAvailable; 4477 4478 /* If VBoxSVC is not available: */ 4479 if (!m_fVBoxSVCAvailable) 4480 { 4481 /* Mark wrappers invalid: */ 4482 m_fWrappersValid = false; 4483 /* Re-fetch corresponding CVirtualBox to restart VBoxSVC: */ 4484 // CVirtualBox is still NULL in current Main implementation, 4485 // and this call do not restart anything, so we are waiting 4486 // for subsequent event about VBoxSVC is available again. 4487 m_vbox = virtualBoxClient().GetVirtualBox(); 4488 } 4489 /* If VBoxSVC is available: */ 4490 else 4491 { 4492 if (!m_fWrappersValid) 4493 { 4494 /* Re-fetch corresponding objects/values: */ 4495 m_vbox = virtualBoxClient().GetVirtualBox(); 4496 m_host = virtualBox().GetHost(); 4497 m_strHomeFolder = virtualBox().GetHomeFolder(); 4498 /* Mark wrappers valid: */ 4499 m_fWrappersValid = true; 4500 4501 /* If that is Selector UI: */ 4502 if (!isVMConsoleProcess()) 4503 { 4504 /* Recreate/show selector-window: */ 4505 UISelectorWindow::destroy(); 4506 UISelectorWindow::create(); 4507 } 4508 } 4509 } 4469 4510 4470 4511 /* Notify listeners about the VBoxSVC availability change: */ … … 4585 4626 #endif /* VBOX_WITH_DEBUGGER_GUI */ 4586 4627 4587 /** @fn vboxGlobal 4588 * 4589 * Shortcut to the static VBoxGlobal::instance() method, for convenience. 4590 */ 4628 bool VBoxGlobal::showUI() 4629 { 4630 /* Load application settings: */ 4631 VBoxGlobalSettings appSettings = settings(); 4632 4633 /* Show Selector UI: */ 4634 if (!isVMConsoleProcess()) 4635 { 4636 /* Make sure Selector UI is permitted: */ 4637 if (appSettings.isFeatureActive("noSelector")) 4638 { 4639 msgCenter().cannotStartSelector(); 4640 return false; 4641 } 4642 4643 #ifdef VBOX_BLEEDING_EDGE 4644 /* Show EXPERIMENTAL BUILD warning: */ 4645 msgCenter().showExperimentalBuildWarning(); 4646 #else /* !VBOX_BLEEDING_EDGE */ 4647 # ifndef DEBUG 4648 /* Show BETA warning if necessary: */ 4649 const QString vboxVersion(vboxGlobal().virtualBox().GetVersion()); 4650 if ( vboxVersion.contains("BETA") 4651 && gEDataManager->preventBetaBuildWarningForVersion() != vboxVersion) 4652 msgCenter().showBetaBuildWarning(); 4653 # endif /* !DEBUG */ 4654 #endif /* !VBOX_BLEEDING_EDGE */ 4655 4656 /* Create/show selector-window: */ 4657 UISelectorWindow::create(); 4658 } 4659 /* Show Runtime UI: */ 4660 else 4661 { 4662 /* Make sure machine is started: */ 4663 if (!UIMachine::startMachine(vboxGlobal().managedVMUuid())) 4664 return false; 4665 } 4666 4667 /* True by default: */ 4668 return true; 4669 } 4591 4670 4592 4671 bool VBoxGlobal::switchToMachine(CMachine &machine) -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r57844 r57883 191 191 bool processArgs(); 192 192 193 /** Shows UI. */ 194 bool showUI(); 195 193 196 bool switchToMachine(CMachine &machine); 194 197 … … 529 532 QString m_strHomeFolder; 530 533 531 /** Holds the VBoxSVC availability value. */ 534 /** Holds whether acquired COM wrappers are currently valid. */ 535 bool m_fWrappersValid; 536 /** Holds whether VBoxSVC is currently available. */ 532 537 bool m_fVBoxSVCAvailable; 533 538 -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r57844 r57883 21 21 22 22 /* Qt includes: */ 23 # include <QLocale>24 23 # include <QMessageBox> 25 # include <QTranslator>26 24 27 25 /* GUI includes: */ 28 # include "VBoxUtils.h"29 26 # include "VBoxGlobal.h" 30 27 # include "UIMachine.h" 31 # include "UIMessageCenter.h"32 28 # include "UISelectorWindow.h" 33 # include "UIExtraDataManager.h"34 29 # include "UIModalWindowManager.h" 30 # ifdef VBOX_WITH_HARDENING 31 # include "QIMessageBox.h" 32 # endif /* VBOX_WITH_HARDENING */ 35 33 # ifdef Q_WS_MAC 34 # include "VBoxUtils.h" 36 35 # include "UICocoaApplication.h" 37 36 # endif /* Q_WS_MAC */ 38 37 39 38 /* Other VBox includes: */ 40 # include <iprt/asm.h>41 39 # include <iprt/buildconfig.h> 42 # include <iprt/initterm.h>43 # include <iprt/process.h>44 40 # include <iprt/stream.h> 45 # include <iprt/system.h>46 41 # include <VBox/version.h> 42 # ifdef VBOX_WITH_HARDENING 43 # include <VBox/sup.h> 44 # else /* !VBOX_WITH_HARDENING */ 45 # include <iprt/initterm.h> 46 # ifdef Q_WS_MAC 47 # include <iprt/asm.h> 48 # endif /* Q_WS_MAC */ 49 # endif /* !VBOX_WITH_HARDENING */ 47 50 # ifdef Q_WS_X11 48 51 # include <iprt/env.h> 49 52 # endif /* Q_WS_X11 */ 53 54 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 55 56 /* Qt includes: */ 57 #ifdef Q_WS_X11 58 # ifdef Q_OS_SOLARIS 59 # include <QPlastiqueStyle> 60 # endif /* Q_OS_SOLARIS */ 61 # ifndef Q_OS_SOLARIS 62 # include <QFontDatabase> 63 # endif /* !Q_OS_SOLARIS */ 64 #endif /* Q_WS_X11 */ 65 66 /* Other VBox includes: */ 50 67 #ifdef VBOX_WITH_HARDENING 51 # include <VBox/sup.h> 52 #endif /* VBOX_WITH_HARDENING */ 53 54 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 55 56 /* Qt includes: */ 57 #include <QCleanlooksStyle> 58 #include <QPlastiqueStyle> 59 #ifdef Q_WS_X11 60 # include <QFontDatabase> 61 #endif /* Q_WS_X11 */ 62 63 /* Other VBox includes: */ 64 #include <iprt/ctype.h> 65 #include <VBox/err.h> 68 # include <iprt/ctype.h> 69 #else /* !VBOX_WITH_HARDENING */ 70 # include <VBox/err.h> 71 #endif /* !VBOX_WITH_HARDENING */ 66 72 67 73 /* Other includes: */ 68 #include <cstdio>69 74 #ifdef Q_WS_MAC 70 75 # include <dlfcn.h> … … 321 326 extern "C" DECLEXPORT(int) TrustedMain(int argc, char **argv, char ** /*envp*/) 322 327 { 328 /* Failed result initially: */ 329 int iResultCode = 1; 330 323 331 /* Start logging: */ 324 332 LogFlowFuncEnter(); 325 326 /* Failed result initially: */327 int iResultCode = 1;328 333 329 334 /* Simulate try-catch block: */ … … 466 471 break; 467 472 468 /* Exit if VBoxGlobal was able to pre-processarguments: */473 /* Exit if VBoxGlobal pre-processed arguments: */ 469 474 if (vboxGlobal().processArgs()) 470 475 break; 471 476 472 #ifdef RT_OS_LINUX 473 /* Make sure no wrong USB mounted: */ 474 VBoxGlobal::checkForWrongUSBMounted(); 475 #endif /* RT_OS_LINUX */ 476 477 /* Load application settings: */ 478 VBoxGlobalSettings settings = vboxGlobal().settings(); 479 480 /* VM console process: */ 481 if (vboxGlobal().isVMConsoleProcess()) 482 { 483 /* Make sure VM is started: */ 484 if (!UIMachine::startMachine(vboxGlobal().managedVMUuid())) 485 break; 486 487 /* Start application: */ 488 iResultCode = a.exec(); 489 } 490 /* VM selector process: */ 491 else 492 { 493 /* Make sure VM selector is permitted: */ 494 if (settings.isFeatureActive("noSelector")) 495 { 496 msgCenter().cannotStartSelector(); 497 break; 498 } 499 500 #ifdef VBOX_BLEEDING_EDGE 501 msgCenter().showExperimentalBuildWarning(); 502 #else /* VBOX_BLEEDING_EDGE */ 503 # ifndef DEBUG 504 /* Check for BETA version: */ 505 const QString vboxVersion(vboxGlobal().virtualBox().GetVersion()); 506 if ( vboxVersion.contains("BETA") 507 && gEDataManager->preventBetaBuildWarningForVersion() != vboxVersion) 508 msgCenter().showBetaBuildWarning(); 509 # endif /* !DEBUG */ 510 #endif /* !VBOX_BLEEDING_EDGE*/ 511 512 /* Create/show selector window: */ 513 UISelectorWindow::create(); 514 515 /* Start application: */ 516 iResultCode = a.exec(); 517 } 477 /* Exit if VBoxGlobal is unable to show UI: */ 478 if (!vboxGlobal().showUI()) 479 break; 480 481 /* Start application: */ 482 iResultCode = a.exec(); 518 483 } 519 484 while (0);
Note:
See TracChangeset
for help on using the changeset viewer.