mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
* remove functions which mages cannot interpret and add in functions which mages can * set validResult when the result is explicitly created to differentiate it form an empty CalculateResult * Add condition to check that the input is not ending with a binary operation * add tests for all the cases * use valid result while calculating hash as well * add test for e is valid within regex * removed i from regex * remove valid result to use decimal? instead * remove duplicate rand and exp
66 lines
2.0 KiB
C#
66 lines
2.0 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Globalization;
|
|
using System.Runtime.InteropServices;
|
|
using System.Threading;
|
|
using System.Windows;
|
|
using Wox.Plugin;
|
|
|
|
namespace Microsoft.Plugin.Calculator
|
|
{
|
|
public static class ResultHelper
|
|
{
|
|
public static Result CreateResult(CalculateResult result, string iconPath)
|
|
{
|
|
return CreateResult(result.RoundedResult, iconPath);
|
|
}
|
|
|
|
public static Result CreateResult(decimal? roundedResult, string iconPath)
|
|
{
|
|
// Return null when the expression is not a valid calculator query.
|
|
if (roundedResult == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return new Result
|
|
{
|
|
Title = roundedResult?.ToString(CultureInfo.CurrentCulture),
|
|
IcoPath = iconPath,
|
|
Score = 300,
|
|
SubTitle = Properties.Resources.wox_plugin_calculator_copy_number_to_clipboard,
|
|
Action = c => Action(roundedResult),
|
|
};
|
|
}
|
|
|
|
public static bool Action(decimal? roundedResult)
|
|
{
|
|
var ret = false;
|
|
|
|
if (roundedResult != null)
|
|
{
|
|
var thread = new Thread(() =>
|
|
{
|
|
try
|
|
{
|
|
Clipboard.SetText(roundedResult?.ToString(CultureInfo.CurrentUICulture.NumberFormat));
|
|
ret = true;
|
|
}
|
|
catch (ExternalException)
|
|
{
|
|
MessageBox.Show(Properties.Resources.wox_plugin_calculator_copy_failed);
|
|
}
|
|
});
|
|
|
|
thread.SetApartmentState(ApartmentState.STA);
|
|
thread.Start();
|
|
thread.Join();
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
}
|
|
}
|