Add Feature Tab in Settings. (Still WIP)

This commit is contained in:
Yeechan Lu
2014-03-28 22:42:28 +08:00
parent 70950b8267
commit 4512854c2a
16 changed files with 265 additions and 43 deletions

View File

@@ -121,6 +121,21 @@ namespace Wox.Plugin.System
Regex reg = new Regex(@"(?i)\\[uU]([0-9a-f]{4})");
return reg.Replace(dataStr, m => ((char)Convert.ToInt32(m.Groups[1].Value, 16)).ToString());
}
public override string Name
{
get { return "Bookmarks"; }
}
public override string IcoPath
{
get { return @"Images\bookmark.png"; }
}
public override string Description
{
get { return base.Description; }
}
}
public class Bookmark : IEquatable<Bookmark>, IEqualityComparer<Bookmark>