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
|
//------------------------------------------------------------------------------
// <copyright file="ObjectListItemCollection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.Collections;
using System.Diagnostics;
using System.Web;
using System.Web.UI;
using System.Security.Permissions;
namespace System.Web.UI.MobileControls
{
/*
* Object List Item collection class. Does not derive from MobileListItemCollection,
* because much of the functionality there is disallowed here.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection"]/*' />
[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 ObjectListItemCollection : ArrayListCollectionBase, IStateManager
{
private bool _marked = false;
private bool _dirty = false;
private ObjectList _owner;
private int _baseIndex = 0;
internal ObjectListItemCollection(ObjectList owner)
{
_owner = owner;
}
internal int BaseIndex
{
get
{
return _baseIndex;
}
set
{
_baseIndex = value;
}
}
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection.GetAll"]/*' />
public ObjectListItem[] GetAll()
{
int n = Count;
ObjectListItem[] result = new ObjectListItem[n];
if (n > 0)
{
Items.CopyTo (0, result, 0, n);
}
return result;
}
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection.this"]/*' />
public ObjectListItem this[int index]
{
get
{
return (ObjectListItem)Items[index];
}
}
internal void Add(ObjectListItem item)
{
Items.Add (item);
if (_marked)
{
_dirty = true;
item.Dirty = true;
}
}
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection.Clear"]/*' />
public void Clear()
{
Items.Clear ();
if (_marked)
{
_dirty = true;
}
}
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection.Contains"]/*' />
public bool Contains(ObjectListItem item)
{
return Items.Contains (item);
}
/// <include file='doc\ObjectListItemCollection.uex' path='docs/doc[@for="ObjectListItemCollection.IndexOf"]/*' />
public int IndexOf(ObjectListItem item)
{
return Items.IndexOf(item);
}
/////////////////////////////////////////////////////////////////////////
// STATE MANAGEMENT
/////////////////////////////////////////////////////////////////////////
/// <internalonly/>
protected bool IsTrackingViewState
{
get
{
return _marked;
}
}
/// <internalonly/>
protected void TrackViewState()
{
_marked = true;
foreach (IStateManager item in Items)
{
item.TrackViewState();
}
}
/// <internalonly/>
protected void LoadViewState(Object state)
{
if (state != null)
{
Object[] changes = (Object[])state;
Debug.Assert (changes.Length == 2);
if (changes[0] == null)
{
Clear ();
}
else
{
Object[] itemChanges = (Object[])changes[0];
EnsureCount (itemChanges.Length);
int i = 0;
foreach (IStateManager item in Items)
{
item.LoadViewState (itemChanges[i++]);
}
}
int oldBaseIndex = BaseIndex;
BaseIndex = (int)changes[1];
if (oldBaseIndex != BaseIndex)
{
int index = BaseIndex;
foreach (ObjectListItem item in Items)
{
item.SetIndex(index++);
}
}
}
}
/// <internalonly/>
protected Object SaveViewState()
{
if (!_dirty)
{
return null;
}
Object[] itemChanges;
if (Count > 0)
{
itemChanges = new Object[Count];
int i = 0;
foreach (IStateManager item in Items)
{
itemChanges[i++] = item.SaveViewState ();
}
}
else
{
itemChanges = null;
}
if (itemChanges == null && BaseIndex == 0)
{
return null;
}
else
{
return new Object[2] { itemChanges, BaseIndex };
}
}
private void EnsureCount(int count)
{
int diff = Count - count;
if (diff > 0)
{
Items.RemoveRange (count, diff);
if (_marked)
{
_dirty = true;
}
}
else
{
for (int i = Count; i < count; i++)
{
ObjectListItem item = new ObjectListItem(_owner);
item.SetIndex(i + BaseIndex);
Add (item);
}
}
}
#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
}
}
|