//
// Authors:
//   Marek Habersack (mhabersack@novell.com)
//
// Copyright (C) 2010 Novell, Inc (http://novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.Web;
using System.Web.UI;

namespace System.Web.UI.WebControls
{
	public class StyleCollection : StateManagedCollection
	{
		internal StyleCollection ()
		{
		}
		
		public Style this [int i] {
			get { return (Style)((IList)this) [i]; }
			set { ((IList)this) [i] = value; }
		}
		
		public int Add (Style style)
		{
			return ((IList)this).Add (style);
		}

		public bool Contains (Style style)
		{
			return ((IList)this).Contains (style);
		}

		public void CopyTo (Style[] styleArray, int index)
		{
			((IList)this).CopyTo (styleArray, index);
		}

		protected override object CreateKnownType (int index)
		{
			return new Style ();
		}

		protected override Type[] GetKnownTypes ()
		{
			return new Type[] { typeof (Style) };
		}

		public int IndexOf (Style style)
		{
			return ((IList)this).IndexOf (style);
		}

		public void Insert (int index, Style style)
		{
			((IList)this).Insert (index, style);
		}

		public void Remove (Style style)
		{
			((IList)this).Remove (style);
		}

		public void RemoveAt (int index)
		{
			((IList)this).RemoveAt (index);
		}

		protected override void SetDirtyObject (object o)
		{
			Style s = o as Style;
			if (s == null)
				return;

			s.SetDirty ();
		}
	}
}