/* $Id: VRDEServerImpl.h 35638 2011-01-19 19:10:49Z vboxsync $ */ /** @file * * VirtualBox COM class implementation */ /* * Copyright (C) 2006-2010 Oracle Corporation * * 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. */ #ifndef ____H_VRDPSERVER #define ____H_VRDPSERVER #include "VirtualBoxBase.h" #include #include class ATL_NO_VTABLE VRDEServer : public VirtualBoxBase, VBOX_SCRIPTABLE_IMPL(IVRDEServer) { public: struct Data { BOOL mEnabled; Bstr mAuthLibrary; AuthType_T mAuthType; ULONG mAuthTimeout; BOOL mAllowMultiConnection; BOOL mReuseSingleConnection; Utf8Str mVrdeExtPack; settings::StringsMap mProperties; }; VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(VRDEServer, IVRDEServer) DECLARE_NOT_AGGREGATABLE(VRDEServer) DECLARE_PROTECT_FINAL_CONSTRUCT() BEGIN_COM_MAP(VRDEServer) VBOX_DEFAULT_INTERFACE_ENTRIES(IVRDEServer) END_COM_MAP() DECLARE_EMPTY_CTOR_DTOR (VRDEServer) HRESULT FinalConstruct(); void FinalRelease(); // public initializer/uninitializer for internal purposes only HRESULT init(Machine *aParent); HRESULT init(Machine *aParent, VRDEServer *aThat); HRESULT initCopy (Machine *aParent, VRDEServer *aThat); void uninit(); // IVRDEServer properties STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled); STDMETHOD(COMSETTER(Enabled)) (BOOL aEnable); STDMETHOD(COMGETTER(AuthType)) (AuthType_T *aType); STDMETHOD(COMSETTER(AuthType)) (AuthType_T aType); STDMETHOD(COMGETTER(AuthTimeout)) (ULONG *aTimeout); STDMETHOD(COMSETTER(AuthTimeout)) (ULONG aTimeout); STDMETHOD(COMGETTER(AllowMultiConnection)) (BOOL *aAllowMultiConnection); STDMETHOD(COMSETTER(AllowMultiConnection)) (BOOL aAllowMultiConnection); STDMETHOD(COMGETTER(ReuseSingleConnection)) (BOOL *aReuseSingleConnection); STDMETHOD(COMSETTER(ReuseSingleConnection)) (BOOL aReuseSingleConnection); STDMETHOD(COMGETTER(VRDEExtPack))(BSTR *aExtPack); STDMETHOD(COMSETTER(VRDEExtPack))(IN_BSTR aExtPack); STDMETHOD(COMGETTER(AuthLibrary)) (BSTR *aValue); STDMETHOD(COMSETTER(AuthLibrary)) (IN_BSTR aValue); STDMETHOD(COMGETTER(VRDEProperties)) (ComSafeArrayOut (BSTR, aProperties)); // IVRDEServer methods STDMETHOD(SetVRDEProperty) (IN_BSTR aKey, IN_BSTR aValue); STDMETHOD(GetVRDEProperty) (IN_BSTR aKey, BSTR *aValue); // public methods only for internal purposes HRESULT loadSettings(const settings::VRDESettings &data); HRESULT saveSettings(settings::VRDESettings &data); void rollback(); void commit(); void copyFrom (VRDEServer *aThat); private: Machine * const mParent; const ComObjPtr mPeer; Backupable mData; }; #endif // ____H_VRDPSERVER /* vi: set tabstop=4 shiftwidth=4 expandtab: */