| 6 | namespace winrt::FastCopy::implementation |
| 7 | { |
| 8 | struct CopyDialog : CopyDialogT<CopyDialog> |
| 9 | { |
| 10 | CopyDialog(); |
| 11 | |
| 12 | winrt::FastCopy::RobocopyViewModel ViewModel(); |
| 13 | void ProgressBar_Loaded(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e); |
| 14 | void HyperlinkButton_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e); |
| 15 | void PauseButton_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e); |
| 16 | void CheckBox_Checked(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e); |
| 17 | void MainPanel_SizeChanged(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::SizeChangedEventArgs const& e); |
| 18 | |
| 19 | /** |
| 20 | * . |
| 21 | */ |
| 22 | void ShowGraphButton_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Microsoft::UI::Xaml::RoutedEventArgs const& e); |
| 23 | |
| 24 | void ShowMenu(winrt::hstring path, winrt::Microsoft::UI::Xaml::Controls::MenuFlyout flyout); |
| 25 | private: |
| 26 | winrt::FastCopy::DependentValue m_height; |
| 27 | winrt::Windows::Graphics::SizeInt32 m_originalWindowSize; |
| 28 | bool m_showSpeedGraph = false; |
| 29 | winrt::event_token m_speedUpdateRevoker; |
| 30 | public: |
| 31 | void MenuFlyout_Opening(winrt::Windows::Foundation::IInspectable const& sender, winrt::Windows::Foundation::IInspectable const& e); |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | namespace winrt::FastCopy::factory_implementation |
nothing calls this directly
no outgoing calls
no test coverage detected