~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/Libraries/AvalonDock/AvalonDock/IDockableControl.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//Copyright (c) 2007-2010, Adolfo Marinucci
 
2
//All rights reserved.
 
3
 
 
4
//Redistribution and use in source and binary forms, with or without modification, 
 
5
//are permitted provided that the following conditions are met:
 
6
//
 
7
//* Redistributions of source code must retain the above copyright notice, 
 
8
//  this list of conditions and the following disclaimer.
 
9
//* Redistributions in binary form must reproduce the above copyright notice, 
 
10
//  this list of conditions and the following disclaimer in the documentation 
 
11
//  and/or other materials provided with the distribution.
 
12
//* Neither the name of Adolfo Marinucci nor the names of its contributors may 
 
13
//  be used to endorse or promote products derived from this software without 
 
14
//  specific prior written permission.
 
15
//
 
16
//THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 
17
//AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 
18
//WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
 
19
//IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
 
20
//INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
 
21
//PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 
22
//HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
 
23
//OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
 
24
//EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
25
 
 
26
using System;
 
27
using System.Collections.Generic;
 
28
using System.Text;
 
29
 
 
30
namespace AvalonDock
 
31
{
 
32
    interface IDockableControl
 
33
    {
 
34
        bool IsDocked { get; }
 
35
    }
 
36
}