mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Make visual tree public
This commit is contained in:
@@ -8,7 +8,7 @@ using System.Collections;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct AncestorEnumerator : IEnumerator, IEnumerable
|
||||
public struct AncestorEnumerator : IEnumerator, IEnumerable
|
||||
{
|
||||
private TreeNode _nodeStart;
|
||||
private TreeNode _nodeCurrent;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct DataCookie
|
||||
public struct DataCookie
|
||||
{
|
||||
public static readonly DataCookie NULL = new DataCookie();
|
||||
private uint m_value;
|
||||
|
||||
@@ -8,7 +8,7 @@ using System.Diagnostics;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal class DisposableObject : IDisposableObject
|
||||
public class DisposableObject : IDisposableObject
|
||||
{
|
||||
private bool _isDisposed;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct EventCookie
|
||||
public struct EventCookie
|
||||
{
|
||||
public static readonly EventCookie NULL = new EventCookie();
|
||||
private uint m_value;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal interface IDisposableObject
|
||||
public interface IDisposableObject
|
||||
{
|
||||
bool IsDisposed { get; }
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal interface IDisposableOwner
|
||||
public interface IDisposableOwner
|
||||
{
|
||||
void RegisterDisposable(IDisposableObject disposable);
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ using Microsoft.Iris.UI;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal interface ITreeNode
|
||||
public interface ITreeNode
|
||||
{
|
||||
UIZone Zone { get; }
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ using Microsoft.Iris.Markup;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal class NotifyObjectBase : INotifyObject
|
||||
public class NotifyObjectBase : INotifyObject
|
||||
{
|
||||
private NotifyService _notifier = new NotifyService();
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct Result
|
||||
public struct Result
|
||||
{
|
||||
public static Result Success = new Result(null);
|
||||
private string _error;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal class SharedDisposableObject : DisposableObject
|
||||
public class SharedDisposableObject : DisposableObject
|
||||
{
|
||||
private int _usageCount;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ using System;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal abstract class TreeNode : DisposableObject, ITreeNode
|
||||
public abstract class TreeNode : DisposableObject, ITreeNode
|
||||
{
|
||||
private static readonly DataCookie s_instanceIDProperty = DataCookie.ReserveSlot();
|
||||
private static readonly EventCookie s_deepParentChangeEvent = EventCookie.ReserveSlot();
|
||||
|
||||
@@ -9,7 +9,7 @@ using System.Collections;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct TreeNodeCollection : IList, ICollection, IEnumerable
|
||||
public struct TreeNodeCollection : IList, ICollection, IEnumerable
|
||||
{
|
||||
private TreeNode _nodeSubject;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ using System.Collections;
|
||||
|
||||
namespace Microsoft.Iris.Library
|
||||
{
|
||||
internal struct TreeNodeEnumerator : IEnumerator
|
||||
public struct TreeNodeEnumerator : IEnumerator
|
||||
{
|
||||
private TreeNode _nodeParent;
|
||||
private TreeNode _nodeCurrent;
|
||||
|
||||
Reference in New Issue
Block a user