Changeset 54150 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
- Timestamp:
- Feb 11, 2015 4:51:55 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98183
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r54149 r54150 112 112 QString homeFolder() const { return m_strHomeFolder; } 113 113 114 /** Returns the VBoxSVC availability value. */ 115 bool isVBoxSVCAvailable() const { return m_fVBoxSVCAvailable; } 116 114 117 VBoxGlobalSettings &settings() { return gset; } 115 118 bool setSettings (VBoxGlobalSettings &gs); … … 396 399 signals: 397 400 401 /** Notifies listeners about the VBoxSVC availability change. */ 402 void sigVBoxSVCAvailabilityChange(); 403 398 404 /* Notifiers: Medium-processing stuff: */ 399 405 void sigMediumCreated(const QString &strMediumID); … … 417 423 void prepare(); 418 424 void cleanup(); 425 426 /** Handles the VBoxSVC availability change. */ 427 void sltHandleVBoxSVCAvailabilityChange(bool fAvailable); 419 428 420 429 protected: … … 444 453 /** Holds the symbolic VirtualBox home-folder representation. */ 445 454 QString m_strHomeFolder; 455 456 /** Holds the VBoxSVC availability value. */ 457 bool m_fVBoxSVCAvailable; 446 458 447 459 VBoxGlobalSettings gset;
Note:
See TracChangeset
for help on using the changeset viewer.