1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Default types - Adjusted namespaces

This commit is contained in:
Robert 2020-11-13 19:59:01 +01:00
parent ed58745a6e
commit 11327eb2ca
64 changed files with 62 additions and 69 deletions

View File

@ -1,4 +1,5 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=defaulttypes/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cconditions_005Cwrappers/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cconditions_005Cwrappers/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes_005Cconditional/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes_005Cconditional/@EntryIndexedValue">True</s:Boolean>

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class EqualsConditionOperator : ConditionOperator<object, object> internal class EqualsConditionOperator : ConditionOperator<object, object>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class GreaterThanConditionOperator : ConditionOperator<double, double> internal class GreaterThanConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class GreaterThanOrEqualConditionOperator : ConditionOperator<double, double> internal class GreaterThanOrEqualConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class LessThanConditionOperator : ConditionOperator<double, double> internal class LessThanConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class LessThanOrEqualConditionOperator : ConditionOperator<double, double> internal class LessThanOrEqualConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class NotEqualConditionOperator : ConditionOperator<object, object> internal class NotEqualConditionOperator : ConditionOperator<object, object>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class NotNullConditionOperator : ConditionOperator<object> internal class NotNullConditionOperator : ConditionOperator<object>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class NullConditionOperator : ConditionOperator<object> internal class NullConditionOperator : ConditionOperator<object>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class NumberEqualsConditionOperator : ConditionOperator<double, double> internal class NumberEqualsConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class NumberNotEqualConditionOperator : ConditionOperator<double, double> internal class NumberNotEqualConditionOperator : ConditionOperator<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringContainsConditionOperator : ConditionOperator<string, string> internal class StringContainsConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringEndsWithConditionOperator : ConditionOperator<string, string> internal class StringEndsWithConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringEqualsConditionOperator : ConditionOperator<string, string> internal class StringEqualsConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
namespace Artemis.Core.DefaultTypes { namespace Artemis.Core {
internal class StringMatchesRegexConditionOperator : ConditionOperator<string, string> internal class StringMatchesRegexConditionOperator : ConditionOperator<string, string>
{ {
public override string Description => "Matches Regex"; public override string Description => "Matches Regex";

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringNotContainsConditionOperator : ConditionOperator<string, string> internal class StringNotContainsConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringNotEqualConditionOperator : ConditionOperator<string, string> internal class StringNotEqualConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class StringStartsWithConditionOperator : ConditionOperator<string, string> internal class StringStartsWithConditionOperator : ConditionOperator<string, string>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class FloatDataBindingConverter : FloatDataBindingConverter<float> public class FloatDataBindingConverter : FloatDataBindingConverter<float>

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <summary> /// <summary>
/// Represents a generic data binding converter that acts as the bridge between a /// Represents a generic data binding converter that acts as the bridge between a

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class IntDataBindingConverter : IntDataBindingConverter<int> public class IntDataBindingConverter : IntDataBindingConverter<int>

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class SKColorDataBindingConverter : DataBindingConverter<SKColor, SKColor> public class SKColorDataBindingConverter : DataBindingConverter<SKColor, SKColor>

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorBrightenModifierType : DataBindingModifierType<SKColor, float> internal class SKColorBrightenModifierType : DataBindingModifierType<SKColor, float>
{ {

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorDarkenModifierType : DataBindingModifierType<SKColor, float> internal class SKColorDarkenModifierType : DataBindingModifierType<SKColor, float>
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorDesaturateModifierType : DataBindingModifierType<SKColor, float> internal class SKColorDesaturateModifierType : DataBindingModifierType<SKColor, float>
{ {

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorInvertModifierType : DataBindingModifierType<SKColor> internal class SKColorInvertModifierType : DataBindingModifierType<SKColor>
{ {

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorRotateHueModifierType : DataBindingModifierType<SKColor, float> internal class SKColorRotateHueModifierType : DataBindingModifierType<SKColor, float>
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorSaturateModifierType : DataBindingModifierType<SKColor, float> internal class SKColorSaturateModifierType : DataBindingModifierType<SKColor, float>
{ {

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SKColorSumModifierType : DataBindingModifierType<SKColor, SKColor> internal class SKColorSumModifierType : DataBindingModifierType<SKColor, SKColor>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class AbsoluteModifierType : DataBindingModifierType<double> internal class AbsoluteModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class DivideModifierType : DataBindingModifierType<double, double> internal class DivideModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class MaxModifierType : DataBindingModifierType<double, double> internal class MaxModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class MinModifierType : DataBindingModifierType<double, double> internal class MinModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class ModuloModifierType : DataBindingModifierType<double, double> internal class ModuloModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class MultiplicationModifierType : DataBindingModifierType<double, double> internal class MultiplicationModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class PercentageOfModifierType : DataBindingModifierType<double, double> internal class PercentageOfModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class PowerModifierType : DataBindingModifierType<double, double> internal class PowerModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class CeilingModifierType : DataBindingModifierType<double> internal class CeilingModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class FloorModifierType : DataBindingModifierType<double> internal class FloorModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class RoundModifierType : DataBindingModifierType<double> internal class RoundModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SquareRootModifierType : DataBindingModifierType<double> internal class SquareRootModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SubtractModifierType : DataBindingModifierType<double, double> internal class SubtractModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SumModifierType : DataBindingModifierType<double, double> internal class SumModifierType : DataBindingModifierType<double, double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class CosecantModifierType : DataBindingModifierType<double> internal class CosecantModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class CosineModifierType : DataBindingModifierType<double> internal class CosineModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class CotangentModifierType : DataBindingModifierType<double> internal class CotangentModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SecantModifierType : DataBindingModifierType<double> internal class SecantModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class SineModifierType : DataBindingModifierType<double> internal class SineModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
internal class TangentModifierType : DataBindingModifierType<double> internal class TangentModifierType : DataBindingModifierType<double>
{ {

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class BoolLayerProperty : LayerProperty<bool> public class BoolLayerProperty : LayerProperty<bool>

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class ColorGradientLayerProperty : LayerProperty<ColorGradient> public class ColorGradientLayerProperty : LayerProperty<ColorGradient>

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class EnumLayerProperty<T> : LayerProperty<T> where T : Enum public class EnumLayerProperty<T> : LayerProperty<T> where T : Enum

View File

@ -1,6 +1,4 @@
using System; namespace Artemis.Core
namespace Artemis.Core.DefaultTypes
{ {
/// <inheritdoc /> /// <inheritdoc />
public class FloatLayerProperty : LayerProperty<float> public class FloatLayerProperty : LayerProperty<float>

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class FloatRangeLayerProperty : LayerProperty<FloatRange> public class FloatRangeLayerProperty : LayerProperty<FloatRange>

View File

@ -1,6 +1,6 @@
using System; using System;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class IntLayerProperty : LayerProperty<int> public class IntLayerProperty : LayerProperty<int>

View File

@ -1,6 +1,4 @@
using System; namespace Artemis.Core
namespace Artemis.Core.DefaultTypes
{ {
/// <inheritdoc /> /// <inheritdoc />
public class IntRangeLayerProperty : LayerProperty<IntRange> public class IntRangeLayerProperty : LayerProperty<IntRange>

View File

@ -1,4 +1,4 @@
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <summary> /// <summary>
/// A special layer property used to configure the selected layer brush /// A special layer property used to configure the selected layer brush

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class SKColorLayerProperty : LayerProperty<SKColor> public class SKColorLayerProperty : LayerProperty<SKColor>

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class SKPointLayerProperty : LayerProperty<SKPoint> public class SKPointLayerProperty : LayerProperty<SKPoint>

View File

@ -1,6 +1,6 @@
using SkiaSharp; using SkiaSharp;
namespace Artemis.Core.DefaultTypes namespace Artemis.Core
{ {
/// <inheritdoc /> /// <inheritdoc />
public class SKSizeLayerProperty : LayerProperty<SKSize> public class SKSizeLayerProperty : LayerProperty<SKSize>

View File

@ -1,5 +1,4 @@
using Artemis.Core.DefaultTypes; using SkiaSharp;
using SkiaSharp;
namespace Artemis.Core namespace Artemis.Core
{ {

View File

@ -1,5 +1,4 @@
using Artemis.Core.DefaultTypes; using SkiaSharp;
using SkiaSharp;
namespace Artemis.Core namespace Artemis.Core
{ {

View File

@ -1,7 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using Artemis.Core.DefaultTypes;
namespace Artemis.Core.Services namespace Artemis.Core.Services
{ {

View File

@ -1,7 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using Artemis.Core.DefaultTypes;
namespace Artemis.Core.Services namespace Artemis.Core.Services
{ {