1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
|
//------------------------------------------------------------------------------
// <copyright file="MobileListItem.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.Permissions;
namespace System.Web.UI.MobileControls
{
/*
* List Item type - enumeration.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItemType"]/*' />
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public enum MobileListItemType
{
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItemType.HeaderItem"]/*' />
HeaderItem,
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItemType.ListItem"]/*' />
ListItem,
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItemType.FooterItem"]/*' />
FooterItem,
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItemType.SeparatorItem"]/*' />
SeparatorItem
}
/*
* Mobile List Item class.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem"]/*' />
[
PersistName("Item"),
ToolboxItem(false)
]
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public class MobileListItem : TemplateContainer, IStateManager
{
private const int SELECTED = 0;
private const int MARKED = 1;
private const int TEXTISDIRTY = 2;
private const int VALUEISDIRTY = 3;
private const int SELECTIONISDIRTY = 4;
private int _index;
private MobileListItemType _itemType;
private Object _dataItem;
private String _text;
private String _value;
private BitArray _flags;
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.MobileListItem"]/*' />
public MobileListItem() : this(null, null, null)
{
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.MobileListItem1"]/*' />
public MobileListItem(String text) : this(null, text, null)
{
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.MobileListItem2"]/*' />
public MobileListItem(String text, String value) : this(null, text, value)
{
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.MobileListItem3"]/*' />
public MobileListItem(MobileListItemType itemType) : this (null, null, null)
{
_itemType = itemType;
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.MobileListItem4"]/*' />
public MobileListItem(Object dataItem, String text, String value)
{
_index = -1;
_dataItem = dataItem;
_text = text;
_value = value;
_flags = new BitArray(5);
_itemType = MobileListItemType.ListItem;
}
internal MobileListItemType ItemType
{
get
{
return _itemType;
}
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.Index"]/*' />
[
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public int Index
{
get
{
return _index;
}
}
internal void SetIndex(int value)
{
_index = value;
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.operatorMobileListItem"]/*' />
public static implicit operator MobileListItem(String s)
{
return new MobileListItem(s);
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.Text"]/*' />
[
DefaultValue("")
]
public String Text
{
get
{
String s;
if (_text != null)
{
s = _text;
}
else if (_value != null)
{
s = _value;
}
else
{
s = String.Empty;
}
return s;
}
set
{
_text = value;
if (((IStateManager)this).IsTrackingViewState)
{
_flags.Set (TEXTISDIRTY,true);
}
}
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.Value"]/*' />
[
DefaultValue("")
]
public String Value
{
get
{
String s;
if (_value != null)
{
s = _value;
}
else if (_text != null)
{
s = _text;
}
else
{
s = String.Empty;
}
return s;
}
set
{
_value = value;
if (_flags.Get (MARKED))
{
_flags.Set (VALUEISDIRTY,true);
}
}
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.DataItem"]/*' />
[
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
]
public Object DataItem
{
get
{
return _dataItem;
}
set
{
_dataItem = value;
}
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.Equals"]/*' />
public override bool Equals(Object o)
{
MobileListItem other = o as MobileListItem;
if (other != null)
{
return Value.Equals(other.Value) && Text.Equals(other.Text);
}
return false;
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.GetHashCode"]/*' />
public override int GetHashCode()
{
return Value.GetHashCode();
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.FromString"]/*' />
public static MobileListItem FromString(String s)
{
return new MobileListItem(s);
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.ToString"]/*' />
public override String ToString()
{
return Text;
}
/////////////////////////////////////////////////////////////////////////
// STATE MANAGEMENT, FOR ITEM'S DATA (NON-CONTROL) STATE.
/////////////////////////////////////////////////////////////////////////
internal virtual Object SaveDataState()
{
String sa0 = _flags.Get(TEXTISDIRTY) ? _text : null;
String sa1 = _flags.Get(VALUEISDIRTY) ? _value : null;
if (sa0 == null && sa1 == null)
{
return null;
}
else
{
return new String[2] { sa0, sa1 };
}
}
internal virtual void LoadDataState(Object state)
{
if (state != null)
{
String[] sa = (String[])state;
if (sa[0] != null)
{
Text = sa[0];
}
if (sa[1] != null)
{
Value = sa[1];
}
}
}
/// <internalonly/>
protected new bool IsTrackingViewState
{
get
{
return _flags.Get (MARKED);
}
}
/// <internalonly/>
protected new void LoadViewState(Object state)
{
LoadDataState (state);
}
/// <internalonly/>
protected new void TrackViewState()
{
_flags.Set (MARKED, true);
}
/// <internalonly/>
protected new Object SaveViewState()
{
return SaveDataState ();
}
internal virtual bool Dirty
{
get
{
return (_flags.Get(TEXTISDIRTY) || _flags.Get(VALUEISDIRTY));
}
set
{
_flags.Set (TEXTISDIRTY, value);
_flags.Set (VALUEISDIRTY, value);
}
}
internal bool SelectionDirty
{
get
{
return _flags.Get(SELECTIONISDIRTY);
}
set
{
_flags.Set (SELECTIONISDIRTY, value);
}
}
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="ListItem.Selected"]/*' />
/// <devdoc>
/// <para>Specifies a value indicating whether the
/// item is selected.</para>
/// </devdoc>
[
DefaultValue(false)
]
public bool Selected {
get {
return _flags.Get(SELECTED);
}
set {
_flags.Set(SELECTED,value);
if (((IStateManager)this).IsTrackingViewState)
{
SelectionDirty = true;
}
}
}
/////////////////////////////////////////////////////////////////////////
// EVENT BUBBLING
/////////////////////////////////////////////////////////////////////////
/// <include file='doc\MobileListItem.uex' path='docs/doc[@for="MobileListItem.OnBubbleEvent"]/*' />
protected override bool OnBubbleEvent(Object source, EventArgs e)
{
if (e is CommandEventArgs)
{
ListCommandEventArgs args = new ListCommandEventArgs(this, source, (CommandEventArgs)e);
RaiseBubbleEvent (this, args);
return true;
}
return false;
}
#region Implementation of IStateManager
/// <internalonly/>
bool IStateManager.IsTrackingViewState {
get {
return IsTrackingViewState;
}
}
/// <internalonly/>
void IStateManager.LoadViewState(object state) {
LoadViewState(state);
}
/// <internalonly/>
void IStateManager.TrackViewState() {
TrackViewState();
}
/// <internalonly/>
object IStateManager.SaveViewState() {
return SaveViewState();
}
#endregion
}
}
|