// *****************************************************************************
//
// Copyright 2004, Weifen Luo
// All rights reserved. The software and associated documentation
// supplied hereunder are the proprietary information of Weifen Luo
// and are supplied subject to licence terms.
//
// WinFormsUI Library Version 1.0
// *****************************************************************************
using System;
using System.Drawing;
namespace WeifenLuo.WinFormsUI
{
///
public interface IDockContent : IDisposable
{
///
DockContentHandler DockHandler { get; }
bool IsDisposed { get; }
}
///
public interface IDockListContainer
{
///
DockState DockState { get; }
///
Rectangle DisplayingRectangle { get; }
///
DockList DockList { get; }
///
DisplayingDockList DisplayingList { get; }
///
bool IsDisposed { get; }
///
bool IsFloat { get; }
}
}