csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.0 KiB
118 lines
4.0 KiB
// -----------------------------------------------------------------------
|
|
// <copyright file="Selectors.cs" company="Steven Kirk">
|
|
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace Perspex.Styling
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reactive.Linq;
|
|
|
|
public static class Selectors
|
|
{
|
|
public static Selector Class(this Selector previous, string name)
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
Contract.Requires<ArgumentNullException>(name != null);
|
|
|
|
return new Selector(previous, BindingPriority.StyleTrigger)
|
|
{
|
|
GetObservable = control => Observable
|
|
.Return(control.Classes.Contains(name))
|
|
.Concat(control.Classes.Changed.Select(e => control.Classes.Contains(name))),
|
|
SelectorString = (name[0] == ':') ? name : '.' + name,
|
|
};
|
|
}
|
|
|
|
public static Selector Descendent(this Selector previous)
|
|
{
|
|
return new Selector(previous, stopTraversal: true)
|
|
{
|
|
SelectorString = " ",
|
|
GetObservable = control =>
|
|
{
|
|
ILogical c = (ILogical)control;
|
|
List<IObservable<bool>> descendentMatches = new List<IObservable<bool>>();
|
|
|
|
while (c != null)
|
|
{
|
|
c = c.LogicalParent;
|
|
|
|
if (c is IStyleable)
|
|
{
|
|
descendentMatches.Add(previous.GetActivator((IStyleable)c));
|
|
}
|
|
}
|
|
|
|
return new StyleActivator(
|
|
descendentMatches,
|
|
ActivatorMode.Or);
|
|
},
|
|
};
|
|
}
|
|
|
|
public static Selector Id(this Selector previous, string id)
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
|
|
return new Selector(previous)
|
|
{
|
|
GetObservable = control => Observable.Return(control.Id == id),
|
|
SelectorString = '#' + id,
|
|
};
|
|
}
|
|
|
|
public static Selector OfType<T>(this Selector previous) where T : IStyleable
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
|
|
return new Selector(previous)
|
|
{
|
|
GetObservable = control => Observable.Return(control.StyleKey == typeof(T)),
|
|
SelectorString = typeof(T).Name,
|
|
};
|
|
}
|
|
|
|
public static Selector Is<T>(this Selector previous) where T : IStyleable
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
|
|
return new Selector(previous)
|
|
{
|
|
GetObservable = control => Observable.Return(control is T),
|
|
SelectorString = ":is(" + typeof(T).Name + ")",
|
|
};
|
|
}
|
|
|
|
public static Selector OfType(this Selector previous, Type type)
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
|
|
return new Selector(previous)
|
|
{
|
|
GetObservable = control => Observable.Return(control.GetType() == type),
|
|
SelectorString = type.Name,
|
|
};
|
|
}
|
|
|
|
public static Selector Template(this Selector previous)
|
|
{
|
|
Contract.Requires<ArgumentNullException>(previous != null);
|
|
|
|
return new Selector(previous, stopTraversal: true)
|
|
{
|
|
GetObservable = control =>
|
|
{
|
|
IStyleable templatedParent = control.TemplatedParent as IStyleable;
|
|
return templatedParent != null ?
|
|
previous.GetActivator(templatedParent) :
|
|
Observable.Return(true);
|
|
},
|
|
InTemplate = true,
|
|
SelectorString = " $ ",
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|