aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-08 19:05:22 +0000
committerJustin Clarke Casey2009-01-08 19:05:22 +0000
commit9a97a6866ffeae85e959747195c139bfdbcac0e7 (patch)
tree03851460f70af5e38e19ffe75f080e4333b4e6bc /OpenSim/Region/Environment/Interfaces
parent* refactor: move code for sending a message to all users in a region to the D... (diff)
downloadopensim-SC_OLD-9a97a6866ffeae85e959747195c139bfdbcac0e7.zip
opensim-SC_OLD-9a97a6866ffeae85e959747195c139bfdbcac0e7.tar.gz
opensim-SC_OLD-9a97a6866ffeae85e959747195c139bfdbcac0e7.tar.bz2
opensim-SC_OLD-9a97a6866ffeae85e959747195c139bfdbcac0e7.tar.xz
* refactor: move estate dialog to DialogModule
* This appeared only to be implemented for the region, and doesn't currently seem to work anyway
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IDialogModule.cs15
1 files changed, 14 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
index 4a648d6..b55ba26 100644
--- a/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/IDialogModule.cs
@@ -90,6 +90,19 @@ namespace OpenSim.Region.Environment.Interfaces
90 /// <param name="fromAvatarID">The user sending the message</param> 90 /// <param name="fromAvatarID">The user sending the message</param>
91 /// <param name="fromAvatarName">The name of the user doing the sending</param> 91 /// <param name="fromAvatarName">The name of the user doing the sending</param>
92 /// <param name="message">The message being sent to the user</param> 92 /// <param name="message">The message being sent to the user</param>
93 void SendNotificationToUsersInRegion(UUID fromAvatarID, string fromAvatarName, string message); 93 void SendNotificationToUsersInRegion(UUID fromAvatarID, string fromAvatarName, string message);
94
95 /// <summary>
96 /// Send a notification to all users in the estate. This notification should remain around until the
97 /// user explicitly dismisses it.
98 /// </summary>
99 ///
100 /// On the Linden Labs Second Client (as of 1.21), this is a big blue box message on the upper right of the
101 /// screen.
102 ///
103 /// <param name="fromAvatarID">The user sending the message</param>
104 /// <param name="fromAvatarName">The name of the user doing the sending</param>
105 /// <param name="message">The message being sent to the user</param>
106 void SendNotificationToUsersInEstate(UUID fromAvatarID, string fromAvatarName, string message);
94 } 107 }
95} 108}