diff options
author | Justin Clarke Casey | 2009-01-07 20:46:28 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-07 20:46:28 +0000 |
commit | b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b (patch) | |
tree | 84699c8f1264e94c338848458f1d4e27106a13c9 /OpenSim/Region/Environment/Interfaces/IDialogModule.cs | |
parent | * Move general alert code to DialogModule. (diff) | |
download | opensim-SC_OLD-b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b.zip opensim-SC_OLD-b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b.tar.gz opensim-SC_OLD-b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b.tar.bz2 opensim-SC_OLD-b97a51d7d0dc0946e5bf5e42c69a40a68af4d01b.tar.xz |
* refactor: Make some direct IClientAPI calls go through the dialog module instead
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IDialogModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IDialogModule.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs index 1e5c791..a296c5a 100644 --- a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs | |||
@@ -27,6 +27,7 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using OpenMetaverse; | 29 | using OpenMetaverse; |
30 | using OpenSim.Framework; | ||
30 | 31 | ||
31 | namespace OpenSim.Region.Environment.Interfaces | 32 | namespace OpenSim.Region.Environment.Interfaces |
32 | { | 33 | { |
@@ -35,6 +36,21 @@ namespace OpenSim.Region.Environment.Interfaces | |||
35 | /// <summary> | 36 | /// <summary> |
36 | /// Send a non-modal alert message to a particular user. | 37 | /// Send a non-modal alert message to a particular user. |
37 | /// </summary> | 38 | /// </summary> |
39 | /// <param name="client"></param> | ||
40 | /// <param name="message"></param> | ||
41 | void SendAlertToUser(IClientAPI client, string message); | ||
42 | |||
43 | /// <summary> | ||
44 | /// Send an alert message to a particular user. | ||
45 | /// </summary> | ||
46 | /// <param name="client"></param> | ||
47 | /// <param name="message"></param> | ||
48 | /// <param name="modal"></param> | ||
49 | void SendAlertToUser(IClientAPI client, string message, bool modal); | ||
50 | |||
51 | /// <summary> | ||
52 | /// Send a non-modal alert message to a particular user. | ||
53 | /// </summary> | ||
38 | /// <param name="agentID"></param> | 54 | /// <param name="agentID"></param> |
39 | /// <param name="message"></param> | 55 | /// <param name="message"></param> |
40 | void SendAlertToUser(UUID agentID, string message); | 56 | void SendAlertToUser(UUID agentID, string message); |