mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
Remove template selector
This commit is contained in:
@@ -2,15 +2,17 @@
|
||||
#include "ExplorerItem.h"
|
||||
#include "ExplorerItem.g.cpp"
|
||||
|
||||
namespace {
|
||||
const wchar_t fileImagePath[] = L"ms-appx:///Assets/file.png";
|
||||
const wchar_t folderImagePath[] = L"ms-appx:///Assets/folder.png";
|
||||
}
|
||||
|
||||
namespace winrt::PowerRenameUILib::implementation
|
||||
{
|
||||
ExplorerItem::ExplorerItem(int32_t id, hstring const& original, hstring const& renamed, int32_t type, uint32_t depth, bool checked) :
|
||||
m_id{ id }, m_idStr{ std::to_wstring(id) }, m_original{ original }, m_renamed{ renamed }, m_type{ type }, m_indentation{ depth * 20 }, m_checked{ checked }
|
||||
m_id{ id }, m_idStr{ std::to_wstring(id) }, m_original{ original }, m_renamed{ renamed }, m_type{ type }, m_depth{ depth }, m_checked{ checked }
|
||||
{
|
||||
if (m_type == static_cast<UINT>(ExplorerItemType::Folder))
|
||||
{
|
||||
m_children = winrt::single_threaded_observable_vector<PowerRenameUILib::ExplorerItem>();
|
||||
}
|
||||
m_imagePath = (m_type == static_cast<UINT>(ExplorerItemType::Folder)) ? folderImagePath : fileImagePath;
|
||||
}
|
||||
|
||||
int32_t ExplorerItem::Id()
|
||||
@@ -52,7 +54,12 @@ namespace winrt::PowerRenameUILib::implementation
|
||||
}
|
||||
|
||||
double ExplorerItem::Indentation() {
|
||||
return m_indentation;
|
||||
return static_cast<double>(m_depth) * 25;
|
||||
}
|
||||
|
||||
hstring ExplorerItem::ImagePath()
|
||||
{
|
||||
return m_imagePath;
|
||||
}
|
||||
|
||||
int32_t ExplorerItem::Type()
|
||||
@@ -83,20 +90,6 @@ namespace winrt::PowerRenameUILib::implementation
|
||||
}
|
||||
}
|
||||
|
||||
winrt::Windows::Foundation::Collections::IObservableVector<winrt::PowerRenameUILib::ExplorerItem> ExplorerItem::Children()
|
||||
{
|
||||
return m_children;
|
||||
}
|
||||
|
||||
void ExplorerItem::Children(Windows::Foundation::Collections::IObservableVector<PowerRenameUILib::ExplorerItem> const& value)
|
||||
{
|
||||
if (m_children != value)
|
||||
{
|
||||
m_children = value;
|
||||
m_propertyChanged(*this, Windows::UI::Xaml::Data::PropertyChangedEventArgs{ L"Children" });
|
||||
}
|
||||
}
|
||||
|
||||
winrt::event_token ExplorerItem::PropertyChanged(winrt::Windows::UI::Xaml::Data::PropertyChangedEventHandler const& handler)
|
||||
{
|
||||
return m_propertyChanged.add(handler);
|
||||
|
||||
@@ -21,6 +21,7 @@ namespace winrt::PowerRenameUILib::implementation
|
||||
hstring Renamed();
|
||||
void Renamed(hstring const& value);
|
||||
double Indentation();
|
||||
hstring ImagePath();
|
||||
int32_t Type();
|
||||
void Type(int32_t value);
|
||||
bool Checked();
|
||||
@@ -35,7 +36,8 @@ namespace winrt::PowerRenameUILib::implementation
|
||||
hstring m_idStr;
|
||||
winrt::hstring m_original;
|
||||
winrt::hstring m_renamed;
|
||||
uint32_t m_indentation;
|
||||
uint32_t m_depth;
|
||||
hstring m_imagePath;
|
||||
winrt::Windows::Foundation::Collections::IObservableVector<PowerRenameUILib::ExplorerItem> m_children;
|
||||
int32_t m_type;
|
||||
bool m_checked;
|
||||
|
||||
@@ -8,8 +8,8 @@ namespace PowerRenameUILib
|
||||
String Original;
|
||||
String Renamed;
|
||||
Double Indentation { get; };
|
||||
String ImagePath { get; };
|
||||
Int32 Type;
|
||||
Boolean Checked;
|
||||
Windows.Foundation.Collections.IObservableVector<ExplorerItem> Children;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
#include "pch.h"
|
||||
#include "ExplorerItemTemplateSelector.h"
|
||||
#include "ExplorerItemTemplateSelector.g.cpp"
|
||||
|
||||
namespace winrt::PowerRenameUILib::implementation
|
||||
{
|
||||
Windows::UI::Xaml::DataTemplate ExplorerItemTemplateSelector::SelectTemplateCore(IInspectable const& item)
|
||||
{
|
||||
ExplorerItem explorerItem = (ExplorerItem&)item;
|
||||
return explorerItem.Type() == 0 ? m_folderTemplate : m_fileTemplate;
|
||||
}
|
||||
|
||||
Windows::UI::Xaml::DataTemplate ExplorerItemTemplateSelector::SelectTemplateCore(IInspectable const&, Windows::UI::Xaml::DependencyObject const&)
|
||||
{
|
||||
return Windows::UI::Xaml::DataTemplate();
|
||||
}
|
||||
|
||||
winrt::Windows::UI::Xaml::DataTemplate ExplorerItemTemplateSelector::FolderTemplate()
|
||||
{
|
||||
return m_folderTemplate;
|
||||
}
|
||||
|
||||
void ExplorerItemTemplateSelector::FolderTemplate(winrt::Windows::UI::Xaml::DataTemplate const& value)
|
||||
{
|
||||
m_folderTemplate = value;
|
||||
}
|
||||
|
||||
winrt::Windows::UI::Xaml::DataTemplate ExplorerItemTemplateSelector::FileTemplate()
|
||||
{
|
||||
return m_fileTemplate;
|
||||
}
|
||||
|
||||
void ExplorerItemTemplateSelector::FileTemplate(winrt::Windows::UI::Xaml::DataTemplate const& value)
|
||||
{
|
||||
m_fileTemplate = value;
|
||||
}
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
#pragma once
|
||||
#include "ExplorerItemTemplateSelector.g.h"
|
||||
|
||||
namespace winrt::PowerRenameUILib::implementation
|
||||
{
|
||||
struct ExplorerItemTemplateSelector : ExplorerItemTemplateSelectorT<ExplorerItemTemplateSelector>
|
||||
{
|
||||
ExplorerItemTemplateSelector() = default;
|
||||
|
||||
Windows::UI::Xaml::DataTemplate SelectTemplateCore(IInspectable const&);
|
||||
Windows::UI::Xaml::DataTemplate SelectTemplateCore(IInspectable const&, Windows::UI::Xaml::DependencyObject const&);
|
||||
|
||||
winrt::Windows::UI::Xaml::DataTemplate FolderTemplate();
|
||||
void FolderTemplate(winrt::Windows::UI::Xaml::DataTemplate const& value);
|
||||
winrt::Windows::UI::Xaml::DataTemplate FileTemplate();
|
||||
void FileTemplate(winrt::Windows::UI::Xaml::DataTemplate const& value);
|
||||
|
||||
private:
|
||||
Windows::UI::Xaml::DataTemplate m_folderTemplate{ nullptr };
|
||||
Windows::UI::Xaml::DataTemplate m_fileTemplate{ nullptr };
|
||||
};
|
||||
}
|
||||
namespace winrt::PowerRenameUILib::factory_implementation
|
||||
{
|
||||
struct ExplorerItemTemplateSelector : ExplorerItemTemplateSelectorT<ExplorerItemTemplateSelector, implementation::ExplorerItemTemplateSelector>
|
||||
{
|
||||
};
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
namespace PowerRenameUILib
|
||||
{
|
||||
[bindable]
|
||||
[default_interface] runtimeclass ExplorerItemTemplateSelector : Windows.UI.Xaml.Controls.DataTemplateSelector
|
||||
{
|
||||
ExplorerItemTemplateSelector();
|
||||
|
||||
Windows.UI.Xaml.DataTemplate FolderTemplate;
|
||||
Windows.UI.Xaml.DataTemplate FileTemplate;
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,6 @@
|
||||
#include "MainWindow.g.h"
|
||||
#include "PatternSnippet.h"
|
||||
#include "ExplorerItem.h"
|
||||
#include "ExplorerItemTemplateSelector.h"
|
||||
|
||||
namespace winrt::PowerRenameUILib::implementation
|
||||
{
|
||||
|
||||
@@ -1,93 +1,5 @@
|
||||
<UserControl x:Class="PowerRenameUILib.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:PowerRenameUILib" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:controls="using:Microsoft.UI.Xaml.Controls" xmlns:muxc="using:Microsoft.UI.Xaml.Controls" controls:BackdropMaterial.ApplyToRootOrPageBackground="True" xmlns:animatedVisuals="using:Microsoft.UI.Xaml.Controls.AnimatedVisuals" mc:Ignorable="d">
|
||||
|
||||
<UserControl.Resources>
|
||||
|
||||
<local:ExplorerItemTemplateSelector x:Key="ExplorerItemTemplateSelector" FolderTemplate="{StaticResource FolderTemplate}" FileTemplate="{StaticResource FileTemplate}" />
|
||||
<!--<local:ExplorerItemTemplateSelector x:Key="RenamedExplorerItemTemplateSelector" FolderTemplate="{StaticResource RenamedFolderTemplate}" FileTemplate="{StaticResource RenamedFileTemplate}" />-->
|
||||
|
||||
<DataTemplate x:Key="FileTemplate" x:DataType="local:ExplorerItem">
|
||||
<Grid Height="24" Margin="0,4,0,0">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Orientation="Horizontal" Grid.Column="0">
|
||||
<StackPanel MinWidth="{x:Bind Indentation}"/>
|
||||
<CheckBox TabIndex="0"
|
||||
MinWidth="36"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
Checked="Checked_ids"
|
||||
IsTabStop="True"
|
||||
Unchecked="Checked_ids"
|
||||
Content=""
|
||||
Name="{x:Bind IdStr}"
|
||||
AutomationProperties.Name="{x:Bind Original}"
|
||||
AutomationProperties.HelpText="{x:Bind Renamed}"
|
||||
IsChecked="{x:Bind Checked, Mode=TwoWay}" />
|
||||
<Image Width="16" Source="ms-appx:///Assets/file.png" HorizontalAlignment="Left" />
|
||||
<TextBlock Margin="20,0,0,0"
|
||||
Text="{x:Bind Original, Mode=OneWay}"
|
||||
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12" />
|
||||
</StackPanel>
|
||||
<TextBlock Text="{x:Bind Renamed, Mode=OneWay}" Grid.Column="1" FontWeight="Bold" VerticalAlignment="Center" FontSize="14" />
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
|
||||
<DataTemplate x:Key="FolderTemplate" x:DataType="local:ExplorerItem">
|
||||
<Grid Margin="0,4,0,0">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Orientation="Horizontal" Grid.Column="0">
|
||||
<StackPanel MinWidth="{x:Bind Indentation}"/>
|
||||
<CheckBox TabIndex="0"
|
||||
IsTabStop="True"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
Grid.Row="0"
|
||||
MinWidth="36"
|
||||
Grid.Column="0"
|
||||
Checked="Checked_ids"
|
||||
Unchecked="Checked_ids"
|
||||
Content=""
|
||||
Name="{x:Bind IdStr}"
|
||||
AutomationProperties.Name="{x:Bind Original}"
|
||||
AutomationProperties.HelpText="{x:Bind Renamed}"
|
||||
IsChecked="{x:Bind Checked, Mode=TwoWay}" />
|
||||
<Image Width="16" Source="ms-appx:///Assets/folder.png" HorizontalAlignment="Left" Grid.Column="1" />
|
||||
<TextBlock Text="{x:Bind Original, Mode=OneWay}" Margin="20,0,0,0" Foreground="{ThemeResource TextFillColorSecondaryBrush}" VerticalAlignment="Center" FontSize="12" Grid.Column="2" />
|
||||
</StackPanel>
|
||||
<TextBlock Text="{x:Bind Renamed, Mode=OneWay}" Grid.Column="1" FontWeight="Bold" VerticalAlignment="Center" FontSize="14" />
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
|
||||
<!--<DataTemplate x:Key="RenamedFileTemplate" x:DataType="local:ExplorerItem">
|
||||
<Grid Height="24" Margin="0,4,0,0">
|
||||
<TextBlock Text="{x:Bind Renamed, Mode=OneWay}" FontWeight="SemiBold" VerticalAlignment="Center" FontSize="14" />
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
<DataTemplate x:Key="RenamedFolderTemplate" x:DataType="local:ExplorerItem">
|
||||
<Grid Margin="0,4,0,0">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="24" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<TextBlock Text="{x:Bind Renamed, Mode=OneWay}" FontWeight="Bold" VerticalAlignment="Center" FontSize="14" />
|
||||
<ListView IsTabStop="false" Margin="-12,0,0,0" SelectionMode="None" IsItemClickEnabled="False" ItemsSource="{x:Bind Children}" Grid.Row="1" ItemTemplateSelector="{StaticResource RenamedExplorerItemTemplateSelector}">
|
||||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="ListViewItem">
|
||||
<Setter Property="IsTabStop" Value="False" />
|
||||
</Style>
|
||||
</ListView.ItemContainerStyle>
|
||||
</ListView>
|
||||
</Grid>
|
||||
</DataTemplate>-->
|
||||
</UserControl.Resources>
|
||||
|
||||
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Padding="20">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="0" /> <!-- 48 if we need to draw the title bar ourself -->
|
||||
@@ -129,35 +41,52 @@
|
||||
|
||||
<Rectangle Height="1" Grid.ColumnSpan="5" Fill="{ThemeResource CardStrokeColorDefaultBrush}" HorizontalAlignment="Stretch" VerticalAlignment="Bottom" />
|
||||
<ListView IsTabStop="false"
|
||||
SelectionMode="None"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
IsItemClickEnabled="False"
|
||||
Grid.ColumnSpan="6"
|
||||
ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}"
|
||||
Margin="4,0,0,0"
|
||||
Grid.Row="1"
|
||||
ItemTemplateSelector="{StaticResource ExplorerItemTemplateSelector}">
|
||||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="ListViewItem">
|
||||
<Setter Property="IsTabStop" Value="False" />
|
||||
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
||||
</Style>
|
||||
</ListView.ItemContainerStyle>
|
||||
</ListView>
|
||||
<!--<controls:ItemsRepeater ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}"
|
||||
Margin="16,0,0,0"
|
||||
ItemTemplate="{StaticResource ExplorerItemTemplateSelector}" />-->
|
||||
<!--<ListView Grid.Column="1" IsTabStop="false" SelectionMode="None" IsItemClickEnabled="False" ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}" ItemTemplateSelector="{StaticResource RenamedExplorerItemTemplateSelector}">
|
||||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="ListViewItem">
|
||||
<Setter Property="IsTabStop" Value="False" />
|
||||
</Style>
|
||||
</ListView.ItemContainerStyle>
|
||||
</ListView>-->
|
||||
<!--<controls:ItemsRepeater ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}"
|
||||
Grid.Column="1"
|
||||
ItemTemplate="{StaticResource RenamedExplorerItemTemplateSelector}" />-->
|
||||
|
||||
SelectionMode="None"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
IsItemClickEnabled="False"
|
||||
Grid.ColumnSpan="6"
|
||||
ItemsSource="{x:Bind ExplorerItems, Mode=OneWay}"
|
||||
Margin="4,0,0,0"
|
||||
Grid.Row="1">
|
||||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="ListViewItem">
|
||||
<Setter Property="IsTabStop" Value="False" />
|
||||
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
||||
</Style>
|
||||
</ListView.ItemContainerStyle>
|
||||
<ListView.ItemTemplate>
|
||||
<DataTemplate x:Name="ExplorerItemTemplate" x:DataType="local:ExplorerItem">
|
||||
<Grid Height="24" Margin="0,4,0,0">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Orientation="Horizontal" Grid.Column="0">
|
||||
<StackPanel MinWidth="{x:Bind Indentation}"/>
|
||||
<CheckBox TabIndex="0"
|
||||
MinWidth="36"
|
||||
XYFocusKeyboardNavigation="Enabled"
|
||||
Checked="Checked_ids"
|
||||
IsTabStop="True"
|
||||
Unchecked="Checked_ids"
|
||||
Content=""
|
||||
Name="{x:Bind IdStr}"
|
||||
AutomationProperties.Name="{x:Bind Original}"
|
||||
AutomationProperties.HelpText="{x:Bind Renamed}"
|
||||
IsChecked="{x:Bind Checked, Mode=TwoWay}" />
|
||||
<Image Width="16" Source="{x:Bind ImagePath}" HorizontalAlignment="Left" />
|
||||
<TextBlock Margin="20,0,0,0"
|
||||
Text="{x:Bind Original, Mode=OneWay}"
|
||||
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12" />
|
||||
</StackPanel>
|
||||
<TextBlock Text="{x:Bind Renamed, Mode=OneWay}" Grid.Column="1" FontWeight="Bold" VerticalAlignment="Center" FontSize="14" />
|
||||
</Grid>
|
||||
</DataTemplate>
|
||||
</ListView.ItemTemplate>
|
||||
</ListView>
|
||||
</Grid>
|
||||
|
||||
<Grid Grid.Column="0" Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}">
|
||||
|
||||
@@ -54,7 +54,8 @@
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings"></ImportGroup>
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
@@ -108,7 +109,6 @@
|
||||
<ItemGroup>
|
||||
<ClInclude Include="app.base.h" />
|
||||
<ClInclude Include="ExplorerItem.h" />
|
||||
<ClInclude Include="ExplorerItemTemplateSelector.h" />
|
||||
<ClInclude Include="MainWindow.h">
|
||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
@@ -146,7 +146,6 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ExplorerItem.cpp" />
|
||||
<ClCompile Include="ExplorerItemTemplateSelector.cpp" />
|
||||
<ClCompile Include="MainWindow.cpp">
|
||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
@@ -166,7 +165,6 @@
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Midl>
|
||||
<Midl Include="ExplorerItem.idl" />
|
||||
<Midl Include="ExplorerItemTemplateSelector.idl" />
|
||||
<Midl Include="MainWindow.idl">
|
||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
|
||||
Reference in New Issue
Block a user