diff options
Diffstat (limited to 'OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs')
-rw-r--r-- | OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs index f45cb44..864b4f1 100644 --- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs +++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs | |||
@@ -196,7 +196,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
196 | get { throw new System.NotImplementedException(); } | 196 | get { throw new System.NotImplementedException(); } |
197 | set { throw new System.NotImplementedException(); } | 197 | set { throw new System.NotImplementedException(); } |
198 | } | 198 | } |
199 | 199 | public bool IsLoggingOut | |
200 | { | ||
201 | get { throw new System.NotImplementedException(); } | ||
202 | set { throw new System.NotImplementedException(); } | ||
203 | } | ||
200 | public bool SendLogoutPacketWhenClosing | 204 | public bool SendLogoutPacketWhenClosing |
201 | { | 205 | { |
202 | set { throw new System.NotImplementedException(); } | 206 | set { throw new System.NotImplementedException(); } |
@@ -242,7 +246,8 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
242 | public event DeRezObject OnDeRezObject = delegate { }; | 246 | public event DeRezObject OnDeRezObject = delegate { }; |
243 | public event Action<IClientAPI> OnRegionHandShakeReply = delegate { }; | 247 | public event Action<IClientAPI> OnRegionHandShakeReply = delegate { }; |
244 | public event GenericCall2 OnRequestWearables = delegate { }; | 248 | public event GenericCall2 OnRequestWearables = delegate { }; |
245 | public event GenericCall2 OnCompleteMovementToRegion = delegate { }; | 249 | public event GenericCall1 OnCompleteMovementToRegion = delegate { }; |
250 | public event UpdateAgent OnPreAgentUpdate; | ||
246 | public event UpdateAgent OnAgentUpdate = delegate { }; | 251 | public event UpdateAgent OnAgentUpdate = delegate { }; |
247 | public event AgentRequestSit OnAgentRequestSit = delegate { }; | 252 | public event AgentRequestSit OnAgentRequestSit = delegate { }; |
248 | public event AgentSit OnAgentSit = delegate { }; | 253 | public event AgentSit OnAgentSit = delegate { }; |
@@ -286,6 +291,7 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
286 | public event Action<UUID> OnRemoveAvatar = delegate { }; | 291 | public event Action<UUID> OnRemoveAvatar = delegate { }; |
287 | public event ObjectPermissions OnObjectPermissions = delegate { }; | 292 | public event ObjectPermissions OnObjectPermissions = delegate { }; |
288 | public event CreateNewInventoryItem OnCreateNewInventoryItem = delegate { }; | 293 | public event CreateNewInventoryItem OnCreateNewInventoryItem = delegate { }; |
294 | public event LinkInventoryItem OnLinkInventoryItem = delegate { }; | ||
289 | public event CreateInventoryFolder OnCreateNewInventoryFolder = delegate { }; | 295 | public event CreateInventoryFolder OnCreateNewInventoryFolder = delegate { }; |
290 | public event UpdateInventoryFolder OnUpdateInventoryFolder = delegate { }; | 296 | public event UpdateInventoryFolder OnUpdateInventoryFolder = delegate { }; |
291 | public event MoveInventoryFolder OnMoveInventoryFolder = delegate { }; | 297 | public event MoveInventoryFolder OnMoveInventoryFolder = delegate { }; |
@@ -1206,5 +1212,13 @@ namespace OpenSim.Client.VWoHTTP.ClientStack | |||
1206 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1212 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1207 | { | 1213 | { |
1208 | } | 1214 | } |
1215 | |||
1216 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1217 | { | ||
1218 | } | ||
1219 | |||
1220 | public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId) | ||
1221 | { | ||
1222 | } | ||
1209 | } | 1223 | } |
1210 | } | 1224 | } |