@@ -14,7 +14,7 @@ namespace winrt::TerminalApp::implementation
14
14
15
15
void UpdateSettings (const winrt::Microsoft::Terminal::Settings::Model::CascadiaSettings& settings);
16
16
17
- winrt::Windows::Foundation::Size MinSize ();
17
+ winrt::Windows::Foundation::Size MinimumSize ();
18
18
void Focus (winrt::Windows::UI::Xaml::FocusState reason = winrt::Windows::UI::Xaml::FocusState::Programmatic);
19
19
void Close ();
20
20
winrt::Microsoft::Terminal::Settings::Model::NewTerminalArgs GetNewTerminalArgs (const bool asContent) const ;
@@ -27,14 +27,14 @@ namespace winrt::TerminalApp::implementation
27
27
Windows::Foundation::IReference<winrt::Windows::UI::Color> TabColor () const noexcept { return nullptr ; }
28
28
winrt::Windows::UI::Xaml::Media::Brush BackgroundBrush ();
29
29
30
- til::typed_event<> CloseRequested;
31
- til::typed_event<winrt::Windows::Foundation::IInspectable, winrt::TerminalApp::BellEventArgs> BellRequested;
32
- til::typed_event<> TitleChanged;
33
- til::typed_event<> TabColorChanged;
34
- til::typed_event<> TaskbarProgressChanged;
35
30
til::typed_event<> ConnectionStateChanged;
36
- til::typed_event<> ReadOnlyChanged;
37
- til::typed_event<> FocusRequested;
31
+ til::typed_event<IPaneContent> CloseRequested;
32
+ til::typed_event<IPaneContent, winrt::TerminalApp::BellEventArgs> BellRequested;
33
+ til::typed_event<IPaneContent> TitleChanged;
34
+ til::typed_event<IPaneContent> TabColorChanged;
35
+ til::typed_event<IPaneContent> TaskbarProgressChanged;
36
+ til::typed_event<IPaneContent> ReadOnlyChanged;
37
+ til::typed_event<IPaneContent> FocusRequested;
38
38
39
39
private:
40
40
winrt::Windows::UI::Xaml::Controls::Grid _root{ nullptr };
0 commit comments