mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
[PowerRename] Show UI info if item cannot be renamed (#19934)
* PowerRename cleanup * Extract ExplorerItem as a UserControl * Add VisualStateManager * UI fixes * Implement error UI logic Highlight items that couldn't be renamed and add error message flyout * Update src/modules/powerrename/lib/PowerRenameManager.cpp Address PR comment Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update src/modules/powerrename/lib/PowerRenameManager.cpp Address PR comment Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Folder max path is 247 * Implement State() properly Co-authored-by: Niels Laute <niels.laute@live.nl> Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com>
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "winrt/Microsoft.UI.Xaml.h"
|
||||
#include "winrt/Microsoft.UI.Xaml.Markup.h"
|
||||
#include "winrt/Microsoft.UI.Xaml.Interop.h"
|
||||
#include "winrt/Microsoft.UI.Xaml.Controls.Primitives.h"
|
||||
#include "ExplorerItem.g.h"
|
||||
#include "PowerRenameInterfaces.h"
|
||||
|
||||
namespace winrt::PowerRenameUI::implementation
|
||||
{
|
||||
@@ -10,7 +16,7 @@ namespace winrt::PowerRenameUI::implementation
|
||||
Folder = 0,
|
||||
File = 1
|
||||
};
|
||||
|
||||
|
||||
ExplorerItem() = default;
|
||||
|
||||
ExplorerItem(int32_t id, hstring const& original, hstring const& renamed, int32_t type, uint32_t depth, bool checked);
|
||||
@@ -26,12 +32,14 @@ namespace winrt::PowerRenameUI::implementation
|
||||
void Type(int32_t value);
|
||||
bool Checked();
|
||||
void Checked(bool value);
|
||||
Microsoft::UI::Xaml::Visibility Highlight();
|
||||
Windows::Foundation::Collections::IObservableVector<PowerRenameUI::ExplorerItem> Children();
|
||||
winrt::event_token PropertyChanged(Microsoft::UI::Xaml::Data::PropertyChangedEventHandler const& handler);
|
||||
int32_t State();
|
||||
void State(int32_t value);
|
||||
winrt::event_token PropertyChanged(winrt::Microsoft::UI::Xaml::Data::PropertyChangedEventHandler const& handler);
|
||||
void PropertyChanged(winrt::event_token const& token) noexcept;
|
||||
|
||||
|
||||
private:
|
||||
std::wstring StateToErrorMessage();
|
||||
|
||||
int32_t m_id;
|
||||
hstring m_idStr;
|
||||
winrt::hstring m_original;
|
||||
@@ -40,10 +48,12 @@ namespace winrt::PowerRenameUI::implementation
|
||||
hstring m_imagePath;
|
||||
int32_t m_type;
|
||||
bool m_checked;
|
||||
Microsoft::UI::Xaml::Visibility m_highlight;
|
||||
PowerRenameItemRenameStatus m_state;
|
||||
winrt::event<Microsoft::UI::Xaml::Data::PropertyChangedEventHandler> m_propertyChanged;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
namespace winrt::PowerRenameUI::factory_implementation
|
||||
{
|
||||
struct ExplorerItem : ExplorerItemT<ExplorerItem, implementation::ExplorerItem>
|
||||
|
||||
Reference in New Issue
Block a user