Skip to content

Commit

Permalink
Changed encapsulation on interfaces from internal to public
Browse files Browse the repository at this point in the history
  • Loading branch information
X39 committed Apr 19, 2021
1 parent ffe5d73 commit 2036c5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/************************************************************************
/************************************************************************
AvalonDock
Copyright (C) 2007-2013 Xceed Software Inc.
Expand All @@ -10,7 +10,7 @@ This program is provided to you under the terms of the Microsoft Public
namespace AvalonDock.Layout
{
/// <summary>Interface definition for a layout pane that can be identified by a unique id.</summary>
internal interface ILayoutPaneSerializable
public interface ILayoutPaneSerializable
{
/// <summary>Gets/sets the unique id for this layout pane.</summary>
string Id { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/************************************************************************
/************************************************************************
AvalonDock
Copyright (C) 2007-2013 Xceed Software Inc.
Expand All @@ -12,7 +12,7 @@ This program is provided to you under the terms of the Microsoft Public
namespace AvalonDock.Layout
{
/// <summary>Defines a layout element that can be positioned in a Grid like environment.</summary>
internal interface ILayoutPositionableElement : ILayoutElement, ILayoutElementForFloatingWindow
public interface ILayoutPositionableElement : ILayoutElement, ILayoutElementForFloatingWindow
{
/// <summary>Gets/sets the <see cref="GridLength"/> of the dock width for this positionable layout element.</summary>
GridLength DockWidth { get; set; }
Expand Down Expand Up @@ -52,7 +52,7 @@ internal interface ILayoutPositionableElement : ILayoutElement, ILayoutElementFo
}

/// <summary>Defines a layout element that supports actual width and height properties.</summary>
internal interface ILayoutPositionableElementWithActualSize : ILayoutPositionableElement
public interface ILayoutPositionableElementWithActualSize : ILayoutPositionableElement
{
/// <summary>Gets/sets the actual width the positionable layout element.</summary>
double ActualWidth { get; set; }
Expand All @@ -62,7 +62,7 @@ internal interface ILayoutPositionableElementWithActualSize : ILayoutPositionabl
}

/// <summary>Defines a layout element that supports position properties for a floating window.</summary>
internal interface ILayoutElementForFloatingWindow
public interface ILayoutElementForFloatingWindow
{
/// <summary>Invoke this method to raise the FloatingPropertiesUpdated event to inform subscribers of the change.</summary>
void RaiseFloatingPropertiesUpdated();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/************************************************************************
/************************************************************************
AvalonDock
Copyright (C) 2007-2013 Xceed Software Inc.
Expand All @@ -9,7 +9,7 @@ This program is provided to you under the terms of the Microsoft Public

namespace AvalonDock.Layout
{
internal interface ILayoutPreviousContainer
public interface ILayoutPreviousContainer
{
ILayoutContainer PreviousContainer { get; set; }

Expand Down

0 comments on commit 2036c5c

Please sign in to comment.