VirtualBox

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

Last change on this file since 25275 was 24989, checked in by vboxsync, 15 years ago

Main: enable -Wshadow gcc option to warn about shadowed variables and fix all resulting warnings; in particular, rename some stack and member variables and rename getter methods like id() to getId()

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1/* $Id: VRDPServerImpl.h 24989 2009-11-26 11:31:46Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#ifndef ____H_VRDPSERVER
25#define ____H_VRDPSERVER
26
27#include "VirtualBoxBase.h"
28
29#include <VBox/VRDPAuth.h>
30
31class Machine;
32
33namespace settings
34{
35 struct VRDPSettings;
36}
37
38class ATL_NO_VTABLE VRDPServer :
39 public VirtualBoxBase,
40 public VirtualBoxSupportErrorInfoImpl<VRDPServer, IVRDPServer>,
41 public VirtualBoxSupportTranslation<VRDPServer>,
42 VBOX_SCRIPTABLE_IMPL(IVRDPServer)
43{
44public:
45
46 struct Data
47 {
48 bool operator== (const Data &that) const
49 {
50 return this == &that ||
51 (mEnabled == that.mEnabled &&
52 mVRDPPorts == that.mVRDPPorts &&
53 mVRDPAddress == that.mVRDPAddress &&
54 mAuthType == that.mAuthType &&
55 mAuthTimeout == that.mAuthTimeout &&
56 mAllowMultiConnection == that.mAllowMultiConnection &&
57 mReuseSingleConnection == that.mReuseSingleConnection);
58 }
59
60 BOOL mEnabled;
61 Bstr mVRDPPorts;
62 Bstr mVRDPAddress;
63 VRDPAuthType_T mAuthType;
64 ULONG mAuthTimeout;
65 BOOL mAllowMultiConnection;
66 BOOL mReuseSingleConnection;
67 };
68
69 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (VRDPServer)
70
71 DECLARE_NOT_AGGREGATABLE(VRDPServer)
72
73 DECLARE_PROTECT_FINAL_CONSTRUCT()
74
75 BEGIN_COM_MAP(VRDPServer)
76 COM_INTERFACE_ENTRY (ISupportErrorInfo)
77 COM_INTERFACE_ENTRY (IVRDPServer)
78 COM_INTERFACE_ENTRY2 (IDispatch, IVRDPServer)
79 END_COM_MAP()
80
81 DECLARE_EMPTY_CTOR_DTOR (VRDPServer)
82
83 HRESULT FinalConstruct();
84 void FinalRelease();
85
86 // public initializer/uninitializer for internal purposes only
87 HRESULT init(Machine *aParent);
88 HRESULT init(Machine *aParent, VRDPServer *aThat);
89 HRESULT initCopy (Machine *aParent, VRDPServer *aThat);
90 void uninit();
91
92 // IVRDPServer properties
93 STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
94 STDMETHOD(COMSETTER(Enabled)) (BOOL aEnable);
95 STDMETHOD(COMGETTER(Ports)) (BSTR *aPorts);
96 STDMETHOD(COMSETTER(Ports)) (IN_BSTR aPorts);
97 STDMETHOD(COMGETTER(NetAddress)) (BSTR *aAddress);
98 STDMETHOD(COMSETTER(NetAddress)) (IN_BSTR aAddress);
99 STDMETHOD(COMGETTER(AuthType)) (VRDPAuthType_T *aType);
100 STDMETHOD(COMSETTER(AuthType)) (VRDPAuthType_T aType);
101 STDMETHOD(COMGETTER(AuthTimeout)) (ULONG *aTimeout);
102 STDMETHOD(COMSETTER(AuthTimeout)) (ULONG aTimeout);
103 STDMETHOD(COMGETTER(AllowMultiConnection)) (BOOL *aAllowMultiConnection);
104 STDMETHOD(COMSETTER(AllowMultiConnection)) (BOOL aAllowMultiConnection);
105 STDMETHOD(COMGETTER(ReuseSingleConnection)) (BOOL *aReuseSingleConnection);
106 STDMETHOD(COMSETTER(ReuseSingleConnection)) (BOOL aReuseSingleConnection);
107
108 // IVRDPServer methods
109
110 // public methods only for internal purposes
111
112 HRESULT loadSettings(const settings::VRDPSettings &data);
113 HRESULT saveSettings(settings::VRDPSettings &data);
114
115 bool isModified() { AutoWriteLock alock (this); return mData.isBackedUp(); }
116 bool isReallyModified() { AutoWriteLock alock (this); return mData.hasActualChanges(); }
117 bool rollback();
118 void commit();
119 void copyFrom (VRDPServer *aThat);
120
121 // for VirtualBoxSupportErrorInfoImpl
122 static const wchar_t *getComponentName() { return L"VRDPServer"; }
123
124private:
125
126 const ComObjPtr<Machine, ComWeakRef> mParent;
127 const ComObjPtr<VRDPServer> mPeer;
128
129 Backupable<Data> mData;
130};
131
132#endif // ____H_VRDPSERVER
133/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use