Changeset 1435 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Mar 13, 2007 9:35:26 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19468
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleWnd.h
r993 r1435 109 109 void finalizeOpenView(); 110 110 111 void loadGuiCustomizations(); 112 111 113 void vmFullscreen (bool on); 112 114 void vmAutoresizeGuest (bool on); -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r1370 r1435 207 207 const QString &hostKey); 208 208 209 void cannotRunInSelectorMode(); 210 209 211 void showRuntimeError (const CConsole &console, bool fatal, 210 212 const QString &errorID, -
trunk/src/VBox/Frontends/VirtualBox/include/VMGlobalSettings.h
r382 r1435 43 43 int hostkey; 44 44 bool autoCapture; 45 QString guiFeatures; 45 46 46 47 friend class VMGlobalSettings; … … 54 55 Q_PROPERTY (int hostKey READ hostKey WRITE setHostKey) 55 56 Q_PROPERTY (bool autoCapture READ autoCapture WRITE setAutoCapture) 57 Q_PROPERTY (QString guiFeatures READ guiFeatures WRITE setGuiFeatures) 56 58 57 59 public: … … 76 78 resetError(); 77 79 } 80 81 QString guiFeatures() const { return data()->guiFeatures; } 82 void setGuiFeatures (const QString &aFeatures) 83 { 84 mData()->guiFeatures = aFeatures; 85 } 86 bool isFeatureActivated (const char*) const; 78 87 79 88 //
Note:
See TracChangeset
for help on using the changeset viewer.