VirtualBox

source: vbox/trunk/src/VBox/Main/include/VRDPServerImpl.h@ 7954

Last change on this file since 7954 was 6076, checked in by vboxsync, 17 years ago

Merged dmik/s2 branch (r25959:26751) to the trunk.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/* $Id: VRDPServerImpl.h 6076 2007-12-14 19:23:03Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2007 innotek GmbH
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 */
19
20#ifndef ____H_VRDPSERVER
21#define ____H_VRDPSERVER
22
23#include "VirtualBoxBase.h"
24
25#include <VBox/VRDPAuth.h>
26
27class Machine;
28
29class ATL_NO_VTABLE VRDPServer :
30 public VirtualBoxBaseNEXT,
31 public VirtualBoxSupportErrorInfoImpl <VRDPServer, IVRDPServer>,
32 public VirtualBoxSupportTranslation <VRDPServer>,
33 public IVRDPServer
34{
35public:
36
37 struct Data
38 {
39 bool operator== (const Data &that) const
40 {
41 return this == &that ||
42 (mEnabled == that.mEnabled &&
43 mVRDPPort == that.mVRDPPort &&
44 mVRDPAddress == that.mVRDPAddress &&
45 mAuthType == that.mAuthType &&
46 mAuthTimeout == that.mAuthTimeout &&
47 mAllowMultiConnection == that.mAllowMultiConnection);
48 }
49
50 BOOL mEnabled;
51 ULONG mVRDPPort;
52 Bstr mVRDPAddress;
53 VRDPAuthType_T mAuthType;
54 ULONG mAuthTimeout;
55 BOOL mAllowMultiConnection;
56 };
57
58 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (VRDPServer)
59
60 DECLARE_NOT_AGGREGATABLE(VRDPServer)
61
62 DECLARE_PROTECT_FINAL_CONSTRUCT()
63
64 BEGIN_COM_MAP(VRDPServer)
65 COM_INTERFACE_ENTRY(ISupportErrorInfo)
66 COM_INTERFACE_ENTRY(IVRDPServer)
67 END_COM_MAP()
68
69 NS_DECL_ISUPPORTS
70
71 DECLARE_EMPTY_CTOR_DTOR (VRDPServer)
72
73 HRESULT FinalConstruct();
74 void FinalRelease();
75
76 // public initializer/uninitializer for internal purposes only
77 HRESULT init(Machine *aParent);
78 HRESULT init(Machine *aParent, VRDPServer *aThat);
79 HRESULT initCopy (Machine *aParent, VRDPServer *aThat);
80 void uninit();
81
82 // IVRDPServer properties
83 STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
84 STDMETHOD(COMSETTER(Enabled)) (BOOL aEnable);
85 STDMETHOD(COMGETTER(Port)) (ULONG *aPort);
86 STDMETHOD(COMSETTER(Port)) (ULONG aPort);
87 STDMETHOD(COMGETTER(NetAddress)) (BSTR *aAddress);
88 STDMETHOD(COMSETTER(NetAddress)) (INPTR BSTR aAddress);
89 STDMETHOD(COMGETTER(AuthType)) (VRDPAuthType_T *aType);
90 STDMETHOD(COMSETTER(AuthType)) (VRDPAuthType_T aType);
91 STDMETHOD(COMGETTER(AuthTimeout)) (ULONG *aTimeout);
92 STDMETHOD(COMSETTER(AuthTimeout)) (ULONG aTimeout);
93 STDMETHOD(COMGETTER(AllowMultiConnection)) (BOOL *aAllowMultiConnection);
94 STDMETHOD(COMSETTER(AllowMultiConnection)) (BOOL aAllowMultiConnection);
95
96 // IVRDPServer methods
97
98 // public methods only for internal purposes
99
100 HRESULT loadSettings (const settings::Key &aMachineNode);
101 HRESULT saveSettings (settings::Key &aMachineNode);
102
103 bool isModified() { AutoLock alock (this); return mData.isBackedUp(); }
104 bool isReallyModified() { AutoLock alock (this); return mData.hasActualChanges(); }
105 bool rollback();
106 void commit();
107 void copyFrom (VRDPServer *aThat);
108
109 // public methods for internal purposes only
110 // (ensure there is a caller and a read lock before calling them!)
111
112 const Backupable <Data> &data() const { return mData; }
113
114 // for VirtualBoxSupportErrorInfoImpl
115 static const wchar_t *getComponentName() { return L"VRDPServer"; }
116
117private:
118
119 const ComObjPtr <Machine, ComWeakRef> mParent;
120 const ComObjPtr <VRDPServer> mPeer;
121
122 Backupable <Data> mData;
123};
124
125#endif // ____H_VRDPSERVER
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette