2016-05-22 12:30:38 +08:00
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using Wox.Plugin;
|
|
|
|
|
using Wox.Core.Resource;
|
|
|
|
|
using Wox.Infrastructure.Image;
|
|
|
|
|
|
|
|
|
|
namespace Wox.ViewModel
|
|
|
|
|
{
|
2016-05-24 05:08:13 +08:00
|
|
|
|
public class PluginViewModel : BaseModel
|
2016-05-22 12:30:38 +08:00
|
|
|
|
{
|
|
|
|
|
public PluginPair PluginPair { get; set; }
|
|
|
|
|
public PluginMetadata Metadata { get; set; }
|
|
|
|
|
public IPlugin Plugin { get; set; }
|
|
|
|
|
|
|
|
|
|
private readonly Internationalization _translator = InternationalizationManager.Instance;
|
|
|
|
|
|
|
|
|
|
public ImageSource Image => ImageLoader.Load(Metadata.IcoPath);
|
|
|
|
|
public Visibility ActionKeywordsVisibility => Metadata.ActionKeywords.Count > 1 ? Visibility.Collapsed : Visibility.Visible;
|
|
|
|
|
public string InitilizaTime => string.Format(_translator.GetTranslation("plugin_init_time"), Metadata.InitTime);
|
|
|
|
|
public string QueryTime => string.Format(_translator.GetTranslation("plugin_query_time"), Metadata.AvgQueryTime);
|
|
|
|
|
public string ActionKeywordsText
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var text = string.Join(Query.ActionKeywordSeperater, Metadata.ActionKeywords);
|
|
|
|
|
return text;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|