/** @file * * VBox frontends: Qt GUI ("VirtualBox"): * VBoxGlobalSettingsData, VBoxGlobalSettings class declarations */ /* * Copyright (C) 2006-2007 Sun Microsystems, Inc. * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 USA or visit http://www.sun.com if you need * additional information or have any questions. */ #ifndef __VBoxGlobalSettings_h__ #define __VBoxGlobalSettings_h__ #include "CIShared.h" #include class CVirtualBox; class VBoxGlobalSettingsData { public: VBoxGlobalSettingsData(); VBoxGlobalSettingsData( const VBoxGlobalSettingsData &that ); virtual ~VBoxGlobalSettingsData(); bool operator==( const VBoxGlobalSettingsData &that ) const; private: int hostkey; bool autoCapture; QString guiFeatures; QString languageId; QString maxGuestRes; friend class VBoxGlobalSettings; }; ///////////////////////////////////////////////////////////////////////////// class VBoxGlobalSettings : public QObject, public CIShared { Q_OBJECT Q_PROPERTY (int hostKey READ hostKey WRITE setHostKey) Q_PROPERTY (bool autoCapture READ autoCapture WRITE setAutoCapture) Q_PROPERTY (QString guiFeatures READ guiFeatures WRITE setGuiFeatures) Q_PROPERTY (QString languageId READ languageId WRITE setLanguageId) Q_PROPERTY (QString maxGuestRes READ maxGuestRes WRITE setMaxGuestRes) public: VBoxGlobalSettings (bool null = true) : CIShared (null) {} VBoxGlobalSettings (const VBoxGlobalSettings &that) : QObject(), CIShared (that) {} VBoxGlobalSettings &operator= (const VBoxGlobalSettings &that) { CIShared ::operator= (that); return *this; } // Properties int hostKey() const { return data()->hostkey; } void setHostKey (int key); bool autoCapture() const { return data()->autoCapture; } void setAutoCapture (bool autoCapture) { mData()->autoCapture = autoCapture; resetError(); } QString guiFeatures() const { return data()->guiFeatures; } void setGuiFeatures (const QString &aFeatures) { mData()->guiFeatures = aFeatures; } bool isFeatureActive (const char*) const; QString languageId() const { return data()->languageId; } void setLanguageId (const QString &aLanguageId) { mData()->languageId = aLanguageId; } QString maxGuestRes() const { return data()->maxGuestRes; } void setMaxGuestRes (const QString &aMaxGuestRes) { mData()->maxGuestRes = aMaxGuestRes; } // void load (CVirtualBox &vbox); void save (CVirtualBox &vbox) const; /** * Returns true if the last setter or #load() operation has been failed * and false otherwise. */ bool operator !() const { return !last_err.isEmpty(); } /** * Returns the description of the error set by the last setter or #load() * operation, or an empty (or null) string if the last operation was * successful. */ QString lastError() const { return last_err; } QString publicProperty (const QString &publicName) const; bool setPublicProperty (const QString &publicName, const QString &value); signals: /** * This sighal is emitted only when #setPublicProperty() or #load() is called. * Direct modification of properties through individual setters or through * QObject::setProperty() currently cannot be tracked. */ void propertyChanged (const char *publicName, const char *name); private: void setPropertyPrivate (int index, const QString &value); void resetError() { last_err = QString::null; } QString last_err; }; #endif // __VBoxGlobalSettings_h__