2021-10-25 21:40:19 +08:00
|
|
|
import "ExplorerItem.idl";
|
|
|
|
import "PatternSnippet.idl";
|
2022-05-11 22:38:12 +08:00
|
|
|
import "UIUpdates.idl";
|
2021-10-25 21:40:19 +08:00
|
|
|
|
2022-05-11 22:38:12 +08:00
|
|
|
namespace PowerRenameUI
|
2021-10-25 21:40:19 +08:00
|
|
|
{
|
2022-05-11 22:38:12 +08:00
|
|
|
[default_interface] runtimeclass MainWindow : Microsoft.UI.Xaml.Window
|
2021-10-25 21:40:19 +08:00
|
|
|
{
|
|
|
|
MainWindow();
|
2022-05-11 22:38:12 +08:00
|
|
|
|
2021-10-25 21:40:19 +08:00
|
|
|
Windows.Foundation.Collections.IObservableVector<String> SearchMRU { get; };
|
|
|
|
Windows.Foundation.Collections.IObservableVector<String> ReplaceMRU { get; };
|
|
|
|
|
|
|
|
Windows.Foundation.Collections.IObservableVector<ExplorerItem> ExplorerItems { get; };
|
|
|
|
Windows.Foundation.Collections.IObservableVector<PatternSnippet> SearchRegExShortcuts { get; };
|
|
|
|
Windows.Foundation.Collections.IObservableVector<PatternSnippet> DateTimeShortcuts { get; };
|
|
|
|
|
2022-05-11 22:38:12 +08:00
|
|
|
UIUpdates UIUpdatesItem { get; };
|
2021-10-25 21:40:19 +08:00
|
|
|
|
2021-11-17 17:57:22 +08:00
|
|
|
void AddExplorerItem(Int32 id, String original, String renamed, Int32 type, UInt32 depth, Boolean checked);
|
2021-10-25 21:40:19 +08:00
|
|
|
void UpdateExplorerItem(Int32 id, String newName);
|
|
|
|
void UpdateRenamedExplorerItem(Int32 id, String newOriginalName);
|
|
|
|
void AppendSearchMRU(String value);
|
|
|
|
void AppendReplaceMRU(String value);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|