Diff of /trunk/ModularRex/RexNetwork/RexClientView.cs
Parent Directory
|
Revision Log
|
Patch
| revision 81, Mon Mar 2 11:46:20 2009 UTC | revision 82, Mon Mar 2 14:46:45 2009 UTC | |
|---|---|---|
| # | Line 40 | Line 40 |
| 40 | ||
| 41 | private string m_rexAccountID; | private string m_rexAccountID; |
| 42 | private string m_rexAvatarURL; | private string m_rexAvatarURL; |
| 43 | private string m_rexAvatarURLOverride; | |
| 44 | private string m_rexAuthURL; | private string m_rexAuthURL; |
| 45 | private string m_rexSkypeURL; | private string m_rexSkypeURL; |
| 46 | public string AvatarStorageOverride; | public string AvatarStorageOverride; |
| # | Line 141 | Line 142 |
| 142 | } | } |
| 143 | ||
| 144 | /// <summary> | /// <summary> |
| 145 | /// The avatar URL override for this avatar | |
| 146 | /// Eg: http://avatar.com:10000/uuid/ | |
| 147 | /// </summary> | |
| 148 | public string RexAvatarURLOverride | |
| 149 | { | |
| 150 | get { return m_rexAvatarURLOverride; } | |
| 151 | set | |
| 152 | { | |
| 153 | m_rexAvatarURLOverride = value; | |
| 154 | if (OnRexAppearance != null) | |
| 155 | { | |
| 156 | OnRexAppearance(this); | |
| 157 | return; | |
| 158 | } | |
| 159 | } | |
| 160 | } | |
| 161 | ||
| 162 | /// <summary> | |
| 163 | /// The URL to avatar appearance which this view currently uses. | |
| 164 | /// If override is used, return it. Otherwise return normal avatar url. | |
| 165 | /// Eg: http://avatar.com:10000/uuid/ | |
| 166 | /// </summary> | |
| 167 | public string RexAvatarURLVisible | |
| 168 | { | |
| 169 | get | |
| 170 | { | |
| 171 | if (!string.IsNullOrEmpty(RexAvatarURLOverride)) | |
| 172 | return RexAvatarURLOverride; | |
| 173 | else | |
| 174 | return RexAvatarURL; | |
| 175 | } | |
| 176 | } | |
| 177 | ||
| 178 | ||
| 179 | /// <summary> | |
| 180 | /// Skype username of the avatar | /// Skype username of the avatar |
| 181 | /// eg: Skypeuser | /// eg: Skypeuser |
| 182 | /// </summary> | /// </summary> |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

