// MIT license (Free to do whatever you want with)

using System;
using PowerUI;


namespace Widgets{
	
	/// <summary>
	/// A floating window is a classic desktop style 'window'.
	/// It resizes, has a title bar, a close button, scrolls when it overflows etc.
	/// Don't create directly - use the document.widgets API instead.
	/// </summary>
	
	[Dom.TagName("floating")]
	public class FloatingWindow : Widget{
		
		/// <summary>The depth that this type of widget lives at.</summary>
		public override int Depth{
			get{
				return 1000;
			}
		}
		
	}
	
}