File: MobileListItemCollection.cs

package info (click to toggle)
mono 6.12.0.199%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296,836 kB
  • sloc: cs: 11,181,803; xml: 2,850,076; ansic: 699,709; cpp: 123,344; perl: 59,361; javascript: 30,841; asm: 21,853; makefile: 20,405; sh: 15,009; python: 4,839; pascal: 925; sql: 859; sed: 16; php: 1
file content (442 lines) | stat: -rw-r--r-- 14,624 bytes parent folder | download | duplicates (7)
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//------------------------------------------------------------------------------
// <copyright file="MobileListItemCollection.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
{

    /*
     * Mobile List Item collection class.
     *
     * Copyright (c) 2000 Microsoft Corporation
     */

    /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection"]/*' />
    [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 MobileListItemCollection : ArrayListCollectionBase, IStateManager
    {
        private bool _marked = false;
        private bool _saveAll = false;
        private bool _saveSelection = false;
        private int _baseIndex = 0;

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.MobileListItemCollection"]/*' />
        public MobileListItemCollection()
        {
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.MobileListItemCollection1"]/*' />
        public MobileListItemCollection(ArrayList items) : base(items)
        {
        }

        internal int BaseIndex
        {
            get
            {
                return _baseIndex;
            }

            set
            {
                _baseIndex = value;
            }
        }

        internal bool SaveSelection {
            get {
                return _saveSelection;
            }
            set {
                _saveSelection = value;
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.GetAll"]/*' />
        public MobileListItem[] GetAll()
        {
            int n = Count;
            MobileListItem[] result = new MobileListItem[n];
            if (n > 0) 
            {
                Items.CopyTo (0, result, 0, n);
            }
            return result;
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.SetAll"]/*' />
        public void SetAll(MobileListItem[] value)
        {
            Items = new ArrayList (value);
            if (_marked)
            {
                _saveAll = true;
            }

            int count = Count;
            for (int i = 0; i < count; i++)
            {
                MobileListItem item = this[i];
                item.SetIndex(i + BaseIndex);
                if (_marked)
                {
                    item.Dirty = true;
                }
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.this"]/*' />
        public MobileListItem this[int index]
        {
            get
            {
                return (MobileListItem)Items[index];
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Add"]/*' />
        public void Add(MobileListItem item)
        {
            item.SetIndex(Items.Count + BaseIndex);
            Items.Add (item);
            if (_marked)
            {
                item.Dirty = true;
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Add1"]/*' />
        public virtual void Add(String item)
        {
            Add (new MobileListItem (item));
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Clear"]/*' />
        public void Clear()
        {
            Items.Clear ();
            if (_marked)
            {
                _saveAll = true;
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Contains"]/*' />
        public bool Contains(MobileListItem item)
        {
            return Items.Contains (item);
        }


        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.IndexOf"]/*' />
        public int IndexOf(MobileListItem item)
        {
            return Items.IndexOf(item);
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Insert"]/*' />
        public virtual void Insert(int index, String item) 
        {
            Insert (index, new MobileListItem (item));
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Insert1"]/*' />
        public void Insert(int index, MobileListItem item) 
        {
            Items.Insert (index, item);
            for (int i = index; i < Items.Count; i++)
            {
                ((MobileListItem)Items[i]).SetIndex(i + BaseIndex);
            }
            if (_marked)
            {
                _saveAll = true;
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.RemoveAt"]/*' />
        public void RemoveAt(int index) 
        {
            Items.RemoveAt (index);
            for (int i = index; i < Items.Count; i++)
            {
                ((MobileListItem)Items[i]).SetIndex(i + BaseIndex);
            }
            if (_marked)
            {
                _saveAll = true;
            }
        }
    
        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Remove"]/*' />
        public virtual void Remove(String item) 
        {
            int index = IndexOf (new MobileListItem(item));
            if (index >= 0) 
            {
                RemoveAt (index);
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.Remove1"]/*' />
        public void Remove(MobileListItem item) 
        {
            int index = IndexOf(item);
            if (index >= 0) 
            {
                RemoveAt(index);
            }
        }

        /////////////////////////////////////////////////////////////////////////
        //  STATE MANAGEMENT
        /////////////////////////////////////////////////////////////////////////

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.IStateManager.IsTrackingViewState"]/*' />
        /// <internalonly/>
        protected bool IsTrackingViewState
        {
            get
            {
                return _marked;
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.IStateManager.TrackViewState"]/*' />
        /// <internalonly/>
        protected void TrackViewState() 
        {
            _marked = true;
            foreach (IStateManager item in Items)
            {
                item.TrackViewState();
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.IStateManager.LoadViewState"]/*' />
        /// <internalonly/>
        protected void LoadViewState(Object state) 
        {
            if (state != null)
            {
                Object[] changes = (Object[]) state;
                int length = changes.Length;

                if (length == 5)
                {
                    int count = (int)changes[0];
                    if (count < Count)
                    {
                        throw new Exception(
                            SR.GetString(SR.MobileListItemCollection_ViewStateManagementError));
                    }
                    EnsureCount ((int)changes[0]);
                    int[] changeIndices = (int[])changes[1];
                    Object[] itemChanges = (Object[])changes[2];
                    for (int i = 0; i < changeIndices.Length; i++)
                    {
                        ((IStateManager)Items[changeIndices[i]]).LoadViewState (itemChanges[i]);
                    }
                }
                else if (length == 3)
                {
                    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++]);
                        }
                    }
                }

                if (length >= 2 && changes[length - 2] != null && SaveSelection)
                {
                    bool[] selection = (bool[])changes[length - 2];
                    for (int i = selection.Length - 1; i >= 0; i--)
                    {
                        ((MobileListItem)Items[i]).Selected = selection[i];
                    }
                }

                int oldBaseIndex = BaseIndex;
                BaseIndex = (int)changes[length - 1];
                if (oldBaseIndex != BaseIndex)
                {
                    int index = BaseIndex;
                    foreach (MobileListItem item in Items)
                    {
                        item.SetIndex(index++);
                    }
                }
            }
        }

        /// <include file='doc\MobileListItemCollection.uex' path='docs/doc[@for="MobileListItemCollection.IStateManager.SaveViewState"]/*' />
        /// <internalonly/>
        protected Object SaveViewState() 
        {
            Object[] changes;
            int changedCount = 0;
            bool selectionNeedsSaving = false;

            if (!_saveAll)
            {
                foreach (MobileListItem item in Items)
                {
                    if (item.Dirty)
                    {
                        changedCount++;
                    }

                    if (SaveSelection && item.SelectionDirty)
                    {
                        selectionNeedsSaving = true;
                    }
                }
                if (changedCount == Count)
                {
                    _saveAll = true;
                }
                else if (changedCount == 0 && !selectionNeedsSaving && BaseIndex == 0)
                {
                    return null;
                }
            }

            if (_saveAll)
            {
                // Save all items.

                Object[] itemChanges;
                if (Count > 0)
                {
                    itemChanges = new Object[Count];
                    int i = 0;
                    foreach (MobileListItem item in Items)
                    {
                        item.Dirty = true;
                        itemChanges[i++] = ((IStateManager)item).SaveViewState ();
                    }
                }
                else
                {
                    itemChanges = null;
                }

                changes = new Object[3];
                changes[0] = itemChanges;
                selectionNeedsSaving = true;
            }
            else if (changedCount == 0)
            {
                changes = new Object[selectionNeedsSaving ? 2 : 1];
            }
            else
            {
                // Save changed items.

                int[] changeIndices = new int[changedCount];
                Object[] itemChanges = new Object[changedCount];

                changedCount = 0;
                int i = 0;
                foreach (MobileListItem item in Items)
                {
                    if (item.Dirty)
                    {
                        changeIndices[changedCount] = i;
                        itemChanges[changedCount] = ((IStateManager)item).SaveViewState ();
                        changedCount++;
                    }
                    i++;
                }

                changes = new Object[5];
                changes[0] = (int)Count;
                changes[1] = changeIndices;
                changes[2] = itemChanges;
                changes[3] = null;
            }

            if (selectionNeedsSaving)
            {
                bool[] selection = new bool[Count];
                int i = 0;
                foreach (MobileListItem item in Items)
                {
                    selection[i++] = item.Selected;
                }
                changes[changes.Length - 2] = selection;
            }

            changes[changes.Length - 1] = BaseIndex;
            return changes;
        }

        private void EnsureCount(int count)
        {
            int diff = Count - count;
            if (diff > 0)
            {
                Items.RemoveRange (count, diff);
                if (_marked)
                {
                    _saveAll = true;
                }
            }
            else
            {
                for (int i = Count; i < count; i++)
                {
                    MobileListItem item = new MobileListItem ();
                    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
    } 
}