Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/maintenance #133

Merged
merged 2 commits into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -574,14 +574,17 @@ dotnet_diagnostic.MA0131.severity = none # ArgumentNullException.Throw

dotnet_diagnostic.SA1010.severity = none # Opening square brackets must be spaced correctly

dotnet_diagnostic.S107.severity = none # Methods should not have too many parameters
dotnet_diagnostic.S1144.severity = none # Remove the unused internal class
dotnet_diagnostic.S1192.severity = none # String literals should not be duplicated
dotnet_diagnostic.S2094.severity = none # Remove this empty class, write its code or make it an "interface"
dotnet_diagnostic.S2325.severity = none # Make 'XXX' a static property
dotnet_diagnostic.S2445.severity = none # Do not lock on writable field 'items', use a readonly field instead
dotnet_diagnostic.S2583.severity = none # https://rules.sonarsource.com/csharp/RSPEC-2583
dotnet_diagnostic.S2589.severity = none # https://rules.sonarsource.com/csharp/RSPEC-2589
dotnet_diagnostic.S3267.severity = none # Loops should be simplified with "LINQ" expressions
dotnet_diagnostic.S3776.severity = none # Cognitive Complexity of methods should not be too high
dotnet_diagnostic.S6602.severity = none # "Find" method should be used instead of the "FirstOrDefault" extension method
dotnet_diagnostic.S6603.severity = none # The collection-specific "TrueForAll" method should be used instead of the "All" extension
dotnet_diagnostic.S6605.severity = none # Collection-specific "Exists" method should be used instead of the "Any" extension
dotnet_diagnostic.S6608.severity = none # Indexing at Count-1 should be used instead of the "Enumerable" extension method "Last"
dotnet_diagnostic.S6608.severity = none # Indexing at Count-1 should be used instead of the "Enumerable" extension method "Last"
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<ItemGroup Label="Code Analyzers">
<PackageReference Include="AsyncFixer" Version="1.6.0" PrivateAssets="All" />
<PackageReference Include="Asyncify" Version="0.9.7" PrivateAssets="All" />
<PackageReference Include="Meziantou.Analyzer" Version="2.0.186" PrivateAssets="All" />
<PackageReference Include="Meziantou.Analyzer" Version="2.0.187" PrivateAssets="All" />
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.7" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507" PrivateAssets="All" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.6.0.109712" PrivateAssets="All" />
Expand Down
26 changes: 1 addition & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,6 @@

This is a base libraries for building WPF application with the MVVM design pattern.

# Table of contents

- [ATC.Net WPF](#atcnet-wpf)
- [Table of contents](#table-of-contents)
- [Requirements](#requirements)
- [NuGet Packages Provided in this Repository](#nuget-packages-provided-in-this-repository)
- [🔎 Demonstration Application](#-demonstration-application)
- [Playground and Viewer for a Given Control or Functionality](#playground-and-viewer-for-a-given-control-or-functionality)
- [Initial glimpse at the demonstration application](#initial-glimpse-at-the-demonstration-application)
- [🚀 How to get started with atc-wpf](#-how-to-get-started-with-atc-wpf)
- [WPF with MVVM Easily Separate UI and Business Logic](#wpf-with-mvvm-easily-separate-ui-and-business-logic)
- [📝 Readme's for each NuGet Package area](#-readmes-for-each-nuget-package-area)
- [💟 Atc.Wpf](#-atcwpf)
- [Controls](#controls)
- [Misc](#misc)
- [💟 Atc.Wpf.Controls](#-atcwpfcontrols)
- [Controls](#controls-1)
- [Misc](#misc-1)
- [💟 Atc.Wpf.FontIcons](#-atcwpffonticons)
- [Misc](#misc-2)
- [💟 Atc.Wpf.Theming](#-atcwpftheming)
- [⚙️ Source Generators](#️-source-generators)
- [How to contribute](#how-to-contribute)

## Requirements

[.NET 9 - Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
Expand Down Expand Up @@ -72,7 +48,7 @@ The following example is taken from the ReplayCommandAsync which illustrates its
| Wpf.Theming - ImageButton ![Img](docs/images/lm-wpf-theming-imagebutton.png) | Wpf.Theming - ImageButton ![Img](docs/images/dm-wpf-theming-imagebutton.png) |
| Wpf.FontIcons - Viewer ![Img](docs/images/lm-wpf-fonicons-viewer.png) | Wpf.FontIcons - Viewer ![Img](docs/images/dm-wpf-fonicons-viewer.png) |

# 🚀 How to get started with atc-wpf
# 🚀 How to get started with Atc's WPF

First of all, include Nuget packages in the `.csproj` file like this:

Expand Down
8 changes: 4 additions & 4 deletions sample/Atc.Wpf.Sample/Atc.Wpf.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.552" />
<PackageReference Include="ControlzEx" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion sample/Atc.Wpf.Sample/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ public partial class MainWindow

private readonly TreeView[] sampleTreeViews;

public MainWindow(IMainWindowViewModel viewModel)
public MainWindow(
IMainWindowViewModel viewModel)
{
InitializeComponent();

Expand Down
25 changes: 15 additions & 10 deletions src/Atc.Wpf.Controls.Sample/SampleViewerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ namespace Atc.Wpf.Controls.Sample;

public sealed class SampleViewerViewModel : ViewModelBase
{
private const string Error = "Error";

public SampleViewerViewModel()
{
Messenger.Default.Register<SampleItemMessage>(this, SampleItemMessageHandler);
Expand Down Expand Up @@ -189,29 +191,29 @@ private void SetSelectedViewData(

if (sampleType is null)
{
_ = MessageBox.Show($"Can't find sample by path '{samplePath}'", "Error", MessageBoxButton.OK);
_ = MessageBox.Show($"Can't find sample by path '{samplePath}'", Error, MessageBoxButton.OK);
return;
}

if (Activator.CreateInstance(sampleType) is not UserControl instance)
{
MessageBox.Show($"Can't create instance of sample by path '{samplePath}'", "Error", MessageBoxButton.OK);
MessageBox.Show($"Can't create instance of sample by path '{samplePath}'", Error, MessageBoxButton.OK);
return;
}

var sampleTypeAssemblyLocation = new DirectoryInfo(Path.GetDirectoryName(sampleType.Assembly.Location)!);
var baseLocation = ExtractBasePath(sampleTypeAssemblyLocation);
if (baseLocation is null)
{
MessageBox.Show("Can't find sample by invalid base location", "Error", MessageBoxButton.OK);
MessageBox.Show("Can't find sample by invalid base location", Error, MessageBoxButton.OK);
return;
}

var classViewName = ExtractClassName(instance.ToString()!);
var sampleLocation = ExtractSamplePath(baseLocation, classViewName, sampleType);
if (sampleLocation is null)
{
MessageBox.Show("Can't find sample by invalid location", "Error", MessageBoxButton.OK);
MessageBox.Show("Can't find sample by invalid location", Error, MessageBoxButton.OK);
return;
}

Expand Down Expand Up @@ -257,8 +259,15 @@ private void LoadAndRenderMarkdownDocumentIfPossible(

var docSection = sampleLocation.Name.Replace("SamplesWpf", string.Empty, StringComparison.Ordinal);

var markdownFile = FindMarkdownFile(Path.Combine("docs", docSection, className)) ??
FindMarkdownFile(className + "_Readme");
var markdownFile = FindMarkdownFile(Path.Combine("docs", docSection, className));
if (markdownFile is null)
{
markdownFile = FindMarkdownFile(className + "_Readme");
}
else
{
StartOnMarkdownDocument = true;
}

if (markdownFile is null)
{
Expand Down Expand Up @@ -287,10 +296,6 @@ private void LoadAndRenderMarkdownDocumentIfPossible(

markdownFile ??= FindMarkdownFile(classViewName + "_Readme");
}
else
{
StartOnMarkdownDocument = true;
}

if (markdownFile is null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ namespace Atc.Wpf.Controls.Documents.TextFormatters.SourceCode.Format;
/// <summary>
/// Provides a base class for formatting most programming languages.
/// </summary>
[SuppressMessage("Security", "MA0009:Add regex evaluation timeout", Justification = "OK.")]
[SuppressMessage("Design", "MA0056:Do not call overridable members in constructor", Justification = "OK.")]
[SuppressMessage("Naming", "CA1711:Identifiers should not have incorrect suffix", Justification = "OK.")]
public abstract class Code : Source
Expand All @@ -15,10 +14,10 @@ public abstract class Code : Source
protected Code()
{
// generate the keyword and preprocessor regexes from the keyword lists
var r = new Regex(@"\w+|-\w+|#\w+|@@\w+|#(?:\\(?:s|w)(?:\*|\+)?\w+)+|@\\w\*+");
var r = new Regex(@"\w+|-\w+|#\w+|@@\w+|#(?:\\(?:s|w)(?:\*|\+)?\w+)+|@\\w\*+", RegexOptions.None, TimeSpan.FromSeconds(5));
var regKeyword = r.Replace(Keywords, @"(?<=^|\W)$0(?=\W)");
var regPreproc = r.Replace(Preprocessors, @"(?<=^|\s)$0(?=\s|$)");
r = new Regex(@" +");
r = new Regex(@" +", RegexOptions.None, TimeSpan.FromSeconds(5));
regKeyword = r.Replace(regKeyword, @"|");
regPreproc = r.Replace(regPreproc, @"|");

Expand Down Expand Up @@ -48,14 +47,14 @@ protected Code()
var caseInsensitive = CaseSensitive
? RegexOptions.None
: RegexOptions.IgnoreCase;
CodeRegex = new Regex(regAll.ToString(), RegexOptions.Singleline | caseInsensitive);
CodeRegex = new Regex(regAll.ToString(), RegexOptions.Singleline | caseInsensitive, TimeSpan.FromSeconds(5));
CodeParagraphGlobal = new List<Run>();
}

/// <summary>
/// Determines if the language is case sensitive.
/// Determines if the language is case-sensitive.
/// </summary>
/// <value><b>true</b> if the language is case sensitive, <b>false</b>
/// <value><b>true</b> if the language is case-sensitive, <b>false</b>
/// otherwise. The default is true.</value>
/// <remarks>
/// A case-insensitive language formatter must override this
Expand Down Expand Up @@ -135,7 +134,7 @@ protected override string MatchEval(Match match, ThemeMode themeMode)
CodeParagraphGlobal.Add(run);
}

return "::::::";
return FormattingMarker;
}

// string literal
Expand All @@ -150,7 +149,7 @@ protected override string MatchEval(Match match, ThemeMode themeMode)
};

CodeParagraphGlobal.Add(run);
return "::::::";
return FormattingMarker;
}

// preprocessor keyword
Expand All @@ -162,7 +161,7 @@ protected override string MatchEval(Match match, ThemeMode themeMode)
};

CodeParagraphGlobal.Add(run);
return "::::::";
return FormattingMarker;
}

// keyword
Expand All @@ -177,7 +176,7 @@ protected override string MatchEval(Match match, ThemeMode themeMode)
};

CodeParagraphGlobal.Add(run);
return "::::::";
return FormattingMarker;
}

return string.Empty;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ namespace Atc.Wpf.Controls.Documents.TextFormatters.SourceCode.Format;
/// </remarks>
public abstract class Source
{
public const string FormattingMarker = "::::::";

/// <summary>
/// Initializes a new instance of the <see cref="Source"/> class.
/// </summary>
Expand Down Expand Up @@ -65,8 +67,7 @@ protected Source()
/// <summary>
/// The regular expression used to capture language tokens.
/// </summary>
[SuppressMessage("Security", "MA0009:Add regex evaluation timeout", Justification = "OK.")]
protected Regex CodeRegex { get; set; } = new("^");
protected Regex CodeRegex { get; set; } = new("^", RegexOptions.None, TimeSpan.FromSeconds(5));

/// <summary>
/// This is a List of Run's that can be added later to the string of code.
Expand Down Expand Up @@ -102,7 +103,7 @@ private Paragraph FormatCodeHelper(string source, ThemeMode themeMode)
var codeParagraph = new Paragraph();
var sb = new StringBuilder(source);
source = CodeRegex.Replace(sb.ToString(), match => MatchEval(match, themeMode));
string[] characters = ["::::::"];
string[] characters = [FormattingMarker];

var split = source.Split(characters, StringSplitOptions.None);
var currentChunk = 0;
Expand Down
3 changes: 1 addition & 2 deletions src/Atc.Wpf/Controls/Media/W3cSvg/CssStyleParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ namespace Atc.Wpf.Controls.Media.W3cSvg;

internal static class CssStyleParser
{
[SuppressMessage("Security", "MA0009:Add regex evaluation timeout", Justification = "OK.")]
[SuppressMessage("Performance", "MA0023:Add RegexOptions.ExplicitCapture", Justification = "OK.")]
private static readonly Regex RxStyle = new("([\\.,<>a-zA-Z0-9: \\-#]*){([^}]*)}", RegexOptions.Compiled | RegexOptions.Singleline);
private static readonly Regex RxStyle = new("([\\.,<>a-zA-Z0-9: \\-#]*){([^}]*)}", RegexOptions.Compiled | RegexOptions.Singleline, TimeSpan.FromSeconds(5));

public static void ParseStyle(Svg svg, string style)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Atc.Wpf/Controls/Media/W3cSvg/Svg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ namespace Atc.Wpf.Controls.Media.W3cSvg;
/// <summary>
/// This is the class that reads and parses the XML file.
/// </summary>
[SuppressMessage("Maintainability", "S1144:Unused private types or members should be removed", Justification = "OK.")]
internal sealed class Svg
{
private List<Shape>? elements;
Expand Down Expand Up @@ -247,7 +248,6 @@ private void Load(XmlNode svgTag)
elements = Parse(svgTag);
}

[SuppressMessage("Security", "MA0009:Add regex evaluation timeout", Justification = "OK.")]
[SuppressMessage("Performance", "MA0078:Use 'Cast' instead of 'Select' to cast", Justification = "OK.")]
private void LoadStyles(XmlNode doc)
{
Expand All @@ -269,7 +269,7 @@ private void LoadStyles(XmlNode doc)

foreach (var node in cssUrlNodes)
{
var url = Regex.Match(node.Data, "href=\"(?<url>.*?)\"").Groups["url"].Value;
var url = Regex.Match(node.Data, "href=\"(?<url>.*?)\"", RegexOptions.None, TimeSpan.FromSeconds(5)).Groups["url"].Value;
var stream = ExternalFileLoader.LoadFile(url, Filename);
if (stream is null)
{
Expand Down
2 changes: 1 addition & 1 deletion test/Atc.Wpf.Controls.Tests/Atc.Wpf.Controls.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.552" />
<PackageReference Include="Atc.XUnit" Version="2.0.552" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Atc" Version="2.0.552" />
<PackageReference Include="Atc.XUnit" Version="2.0.552" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion test/Atc.Wpf.Tests/Atc.Wpf.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.552" />
<PackageReference Include="Atc.XUnit" Version="2.0.552" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion test/Atc.Wpf.Theming.Tests/Atc.Wpf.Theming.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.552" />
<PackageReference Include="Atc.XUnit" Version="2.0.552" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<PackageReference Include="CssParser" Version="1.3.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading