General improvement of the title bar for Always-On-Top. (#634)
* Make sure TitleBar takes into account the AOT mode change * remove namespaces in cpp files * code linting * use macro for IsAlwaysOnTop and make IsAlwaysOnTop/DisplayNormalAlwaysOnTopOption read-only * Fix FontWeight
This commit is contained in:
parent
5b2d976e64
commit
eb24c085bc
@ -23,10 +23,11 @@ namespace CalculatorApp
|
|||||||
OBSERVABLE_PROPERTY_RW(DateCalculatorViewModel ^, DateCalcViewModel);
|
OBSERVABLE_PROPERTY_RW(DateCalculatorViewModel ^, DateCalcViewModel);
|
||||||
OBSERVABLE_PROPERTY_RW(UnitConverterViewModel ^, ConverterViewModel);
|
OBSERVABLE_PROPERTY_RW(UnitConverterViewModel ^, ConverterViewModel);
|
||||||
OBSERVABLE_PROPERTY_RW(CalculatorApp::Common::ViewMode, PreviousMode);
|
OBSERVABLE_PROPERTY_RW(CalculatorApp::Common::ViewMode, PreviousMode);
|
||||||
|
OBSERVABLE_PROPERTY_R(bool, IsAlwaysOnTop);
|
||||||
OBSERVABLE_NAMED_PROPERTY_RW(Platform::String ^, CategoryName);
|
OBSERVABLE_NAMED_PROPERTY_RW(Platform::String ^, CategoryName);
|
||||||
|
|
||||||
// Indicates whether calculator is currently in standard mode _and_ supports CompactOverlay _and_ is not in Always-on-Top mode
|
// Indicates whether calculator is currently in standard mode _and_ supports CompactOverlay _and_ is not in Always-on-Top mode
|
||||||
OBSERVABLE_PROPERTY_RW(bool, DisplayNormalAlwaysOnTopOption);
|
OBSERVABLE_PROPERTY_R(bool, DisplayNormalAlwaysOnTopOption);
|
||||||
|
|
||||||
COMMAND_FOR_METHOD(CopyCommand, ApplicationViewModel::OnCopyCommand);
|
COMMAND_FOR_METHOD(CopyCommand, ApplicationViewModel::OnCopyCommand);
|
||||||
COMMAND_FOR_METHOD(PasteCommand, ApplicationViewModel::OnPasteCommand);
|
COMMAND_FOR_METHOD(PasteCommand, ApplicationViewModel::OnPasteCommand);
|
||||||
@ -91,22 +92,6 @@ namespace CalculatorApp
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
property bool IsAlwaysOnTop
|
|
||||||
{
|
|
||||||
bool get()
|
|
||||||
{
|
|
||||||
return m_isAlwaysOnTop;
|
|
||||||
}
|
|
||||||
void set(bool value)
|
|
||||||
{
|
|
||||||
if (m_isAlwaysOnTop != value)
|
|
||||||
{
|
|
||||||
m_isAlwaysOnTop = value;
|
|
||||||
RaisePropertyChanged(L"IsAlwaysOnTop");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void ToggleAlwaysOnTop(float width, float height);
|
void ToggleAlwaysOnTop(float width, float height);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -123,8 +108,6 @@ namespace CalculatorApp
|
|||||||
Windows::Foundation::Collections::IObservableVector<CalculatorApp::Common::NavCategoryGroup ^> ^ m_categories;
|
Windows::Foundation::Collections::IObservableVector<CalculatorApp::Common::NavCategoryGroup ^> ^ m_categories;
|
||||||
Concurrency::task<void> HandleToggleAlwaysOnTop(float width, float height);
|
Concurrency::task<void> HandleToggleAlwaysOnTop(float width, float height);
|
||||||
void SetDisplayNormalAlwaysOnTopOption();
|
void SetDisplayNormalAlwaysOnTopOption();
|
||||||
|
|
||||||
bool m_isAlwaysOnTop;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -86,9 +86,9 @@
|
|||||||
Command="{x:Bind Model.PasteCommand}"/>
|
Command="{x:Bind Model.PasteCommand}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<local:TitleBar x:Name="CustomTitleBar" Grid.Row="0"
|
<local:TitleBar Grid.Row="0" IsAlwaysOnTopMode="{x:Bind Model.IsAlwaysOnTop, Mode=OneWay}"
|
||||||
ApplicationViewModel="{x:Bind Model}"/>
|
AlwaysOnTopClick="TitleBarAlwaysOnTopButtonClick"/>
|
||||||
|
|
||||||
<Grid Grid.Row="1">
|
<Grid Grid.Row="1">
|
||||||
<Border x:Name="CalcHolder">
|
<Border x:Name="CalcHolder">
|
||||||
<!-- PLACEHOLDER!!!! This is where the calculator goes when it is delay loaded -->
|
<!-- PLACEHOLDER!!!! This is where the calculator goes when it is delay loaded -->
|
||||||
|
@ -546,7 +546,13 @@ void MainPage::OnNavItemInvoked(MUXC::NavigationView ^ /*sender*/, _In_ MUXC::Na
|
|||||||
NavView->IsPaneOpen = false;
|
NavView->IsPaneOpen = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainPage::AlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e)
|
void MainPage::TitleBarAlwaysOnTopButtonClick(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ /*e*/)
|
||||||
|
{
|
||||||
|
auto bounds = Window::Current->Bounds;
|
||||||
|
Model->ToggleAlwaysOnTop(bounds.Width, bounds.Height);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainPage::AlwaysOnTopButtonClick(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ /*e*/)
|
||||||
{
|
{
|
||||||
Model->ToggleAlwaysOnTop(0, 0);
|
Model->ToggleAlwaysOnTop(0, 0);
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,7 @@ public
|
|||||||
void OnAboutFlyoutOpened(_In_ Platform::Object ^ sender, _In_ Platform::Object ^ e);
|
void OnAboutFlyoutOpened(_In_ Platform::Object ^ sender, _In_ Platform::Object ^ e);
|
||||||
void OnAboutFlyoutClosed(_In_ Platform::Object ^ sender, _In_ Platform::Object ^ e);
|
void OnAboutFlyoutClosed(_In_ Platform::Object ^ sender, _In_ Platform::Object ^ e);
|
||||||
void AlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
void AlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
||||||
|
void TitleBarAlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
||||||
|
|
||||||
Microsoft::UI::Xaml::Controls::NavigationViewItemHeader ^ CreateNavViewHeaderFromGroup(CalculatorApp::Common::NavCategoryGroup ^ group);
|
Microsoft::UI::Xaml::Controls::NavigationViewItemHeader ^ CreateNavViewHeaderFromGroup(CalculatorApp::Common::NavCategoryGroup ^ group);
|
||||||
Microsoft::UI::Xaml::Controls::NavigationViewItem ^ CreateNavViewItemFromCategory(CalculatorApp::Common::NavCategory ^ category);
|
Microsoft::UI::Xaml::Controls::NavigationViewItem ^ CreateNavViewItemFromCategory(CalculatorApp::Common::NavCategory ^ category);
|
||||||
|
@ -3,11 +3,7 @@
|
|||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:converters="using:CalculatorApp.Converters"
|
|
||||||
mc:Ignorable="d">
|
mc:Ignorable="d">
|
||||||
<UserControl.Resources>
|
|
||||||
<converters:BooleanToVisibilityNegationConverter x:Key="BooleanToVisibilityNegationConverter"/>
|
|
||||||
</UserControl.Resources>
|
|
||||||
<Grid x:Name="LayoutRoot"
|
<Grid x:Name="LayoutRoot"
|
||||||
Height="32"
|
Height="32"
|
||||||
HorizontalAlignment="Stretch">
|
HorizontalAlignment="Stretch">
|
||||||
@ -20,37 +16,44 @@
|
|||||||
</VisualState.Setters>
|
</VisualState.Setters>
|
||||||
</VisualState>
|
</VisualState>
|
||||||
</VisualStateGroup>
|
</VisualStateGroup>
|
||||||
|
<VisualStateGroup x:Name="AOTStates">
|
||||||
|
<VisualState x:Name="AOTNormalState"/>
|
||||||
|
<VisualState x:Name="AOTMiniState">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Target="AppName.Visibility" Value="Collapsed"/>
|
||||||
|
<Setter Target="ExitAlwaysOnTopButton.Visibility" Value="Visible"/>
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
</VisualStateManager.VisualStateGroups>
|
</VisualStateManager.VisualStateGroups>
|
||||||
<Grid x:Name="BackgroundElement"
|
<Grid x:Name="BackgroundElement"
|
||||||
Background="Transparent"
|
Height="32"
|
||||||
Height="32">
|
Background="Transparent">
|
||||||
<TextBlock x:Name="AppName"
|
<TextBlock x:Name="AppName"
|
||||||
x:Uid="AppName"
|
x:Uid="AppName"
|
||||||
Margin="12,0,12,0"
|
Margin="12,0,12,0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Foreground="{ThemeResource TitleBarForegroundBaseHighBrush}"
|
Foreground="{ThemeResource TitleBarForegroundBaseHighBrush}"
|
||||||
FontSize="12"
|
FontSize="12"
|
||||||
TextAlignment="Left"
|
TextAlignment="Left"
|
||||||
TextTrimming="CharacterEllipsis"
|
TextTrimming="CharacterEllipsis"/>
|
||||||
Visibility="{x:Bind ApplicationViewModel.IsAlwaysOnTop, Converter={StaticResource BooleanToVisibilityNegationConverter}, Mode=OneWay}"/>
|
|
||||||
</Grid>
|
</Grid>
|
||||||
<Button x:Name="AoTAlwaysOnTopButton"
|
<Button x:Name="ExitAlwaysOnTopButton"
|
||||||
x:Uid="ExitAlwaysOnTopButton"
|
x:Uid="ExitAlwaysOnTopButton"
|
||||||
Grid.Row="0"
|
|
||||||
FontFamily="{StaticResource CalculatorFontFamily}"
|
|
||||||
Style="{ThemeResource CommandBarFlyoutEllipsisButtonStyle}"
|
|
||||||
Content=""
|
|
||||||
Click="AlwaysOnTopButtonClick"
|
|
||||||
Width="46"
|
Width="46"
|
||||||
Height="32"
|
Height="Auto"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
HorizontalContentAlignment="Center"
|
HorizontalContentAlignment="Center"
|
||||||
|
Style="{ThemeResource CommandBarFlyoutEllipsisButtonStyle}"
|
||||||
Background="Transparent"
|
Background="Transparent"
|
||||||
FontWeight="Thin"
|
FontFamily="{StaticResource CalculatorFontFamily}"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
AllowFocusWhenDisabled="False"
|
FontWeight="Thin"
|
||||||
Visibility="{x:Bind ApplicationViewModel.IsAlwaysOnTop, Mode=OneWay}"
|
x:Load="False"
|
||||||
AutomationProperties.AutomationId="AoTAlwaysOnTopButton"/>
|
AutomationProperties.AutomationId="ExitAlwaysOnTopButton"
|
||||||
|
Click="AlwaysOnTopButton_Click"
|
||||||
|
Content=""
|
||||||
|
Visibility="Collapsed"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
|
@ -22,7 +22,7 @@ using namespace Concurrency;
|
|||||||
|
|
||||||
namespace CalculatorApp
|
namespace CalculatorApp
|
||||||
{
|
{
|
||||||
DEPENDENCY_PROPERTY_INITIALIZATION(TitleBar, ApplicationViewModel);
|
DEPENDENCY_PROPERTY_INITIALIZATION(TitleBar, IsAlwaysOnTopMode);
|
||||||
|
|
||||||
TitleBar::TitleBar()
|
TitleBar::TitleBar()
|
||||||
: m_coreTitleBar(CoreApplication::GetCurrentView()->TitleBar)
|
: m_coreTitleBar(CoreApplication::GetCurrentView()->TitleBar)
|
||||||
@ -40,7 +40,7 @@ namespace CalculatorApp
|
|||||||
AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"AppName");
|
AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"AppName");
|
||||||
#else
|
#else
|
||||||
AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"DevAppName");
|
AppName->Text = AppResourceProvider::GetInstance().GetResourceString(L"DevAppName");
|
||||||
#endif //IS_STORE_BUILD
|
#endif // IS_STORE_BUILD
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleBar::OnLoaded(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ /*e*/)
|
void TitleBar::OnLoaded(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ /*e*/)
|
||||||
@ -82,10 +82,9 @@ namespace CalculatorApp
|
|||||||
m_windowActivatedToken.Value = 0;
|
m_windowActivatedToken.Value = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void TitleBar::SetTitleBarVisibility()
|
void TitleBar::SetTitleBarVisibility()
|
||||||
{
|
{
|
||||||
this->LayoutRoot->Visibility = m_coreTitleBar->IsVisible || ApplicationViewModel->IsAlwaysOnTop ? ::Visibility::Visible : ::Visibility::Collapsed;
|
this->LayoutRoot->Visibility = m_coreTitleBar->IsVisible || IsAlwaysOnTopMode ? ::Visibility::Visible : ::Visibility::Collapsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleBar::SetTitleBarPadding()
|
void TitleBar::SetTitleBarPadding()
|
||||||
@ -173,9 +172,14 @@ namespace CalculatorApp
|
|||||||
this, e->WindowActivationState == CoreWindowActivationState::Deactivated ? WindowNotFocused->Name : WindowFocused->Name, false);
|
this, e->WindowActivationState == CoreWindowActivationState::Deactivated ? WindowNotFocused->Name : WindowFocused->Name, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TitleBar::AlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e)
|
void TitleBar::OnIsAlwaysOnTopModePropertyChanged(bool /*oldValue*/, bool newValue)
|
||||||
{
|
{
|
||||||
auto bounds = Window::Current->Bounds;
|
SetTitleBarVisibility();
|
||||||
ApplicationViewModel->ToggleAlwaysOnTop(bounds.Width, bounds.Height);
|
VisualStateManager::GoToState(this, newValue ? "AOTMiniState" : "AOTNormalState", false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void TitleBar::AlwaysOnTopButton_Click(_In_ Object ^ /*sender*/, _In_ RoutedEventArgs ^ e)
|
||||||
|
{
|
||||||
|
AlwaysOnTopClick(this, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,8 +20,9 @@ public
|
|||||||
TitleBar();
|
TitleBar();
|
||||||
|
|
||||||
DEPENDENCY_PROPERTY_OWNER(TitleBar);
|
DEPENDENCY_PROPERTY_OWNER(TitleBar);
|
||||||
DEPENDENCY_PROPERTY(ViewModel::ApplicationViewModel ^, ApplicationViewModel);
|
DEPENDENCY_PROPERTY_WITH_CALLBACK(bool, IsAlwaysOnTopMode);
|
||||||
|
|
||||||
|
event Windows::UI::Xaml::RoutedEventHandler ^ AlwaysOnTopClick;
|
||||||
private:
|
private:
|
||||||
void OnLoaded(_In_ Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
void OnLoaded(_In_ Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
||||||
void OnUnloaded(_In_ Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
void OnUnloaded(_In_ Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
||||||
@ -33,6 +34,7 @@ public
|
|||||||
void ColorValuesChanged(_In_ Windows::UI::ViewManagement::UISettings ^ sender, _In_ Platform::Object ^ e);
|
void ColorValuesChanged(_In_ Windows::UI::ViewManagement::UISettings ^ sender, _In_ Platform::Object ^ e);
|
||||||
void OnHighContrastChanged(Windows::UI::ViewManagement::AccessibilitySettings ^ sender, Platform::Object ^ args);
|
void OnHighContrastChanged(Windows::UI::ViewManagement::AccessibilitySettings ^ sender, Platform::Object ^ args);
|
||||||
void OnWindowActivated(Platform::Object ^ sender, Windows::UI::Core::WindowActivatedEventArgs ^ e);
|
void OnWindowActivated(Platform::Object ^ sender, Windows::UI::Core::WindowActivatedEventArgs ^ e);
|
||||||
|
void OnIsAlwaysOnTopModePropertyChanged(bool oldValue, bool newValue);
|
||||||
|
|
||||||
Platform::Agile<Windows::ApplicationModel::Core::CoreApplicationViewTitleBar ^> m_coreTitleBar;
|
Platform::Agile<Windows::ApplicationModel::Core::CoreApplicationViewTitleBar ^> m_coreTitleBar;
|
||||||
Windows::Foundation::EventRegistrationToken m_layoutChangedToken;
|
Windows::Foundation::EventRegistrationToken m_layoutChangedToken;
|
||||||
@ -42,6 +44,6 @@ public
|
|||||||
Windows::Foundation::EventRegistrationToken m_accessibilitySettingsToken;
|
Windows::Foundation::EventRegistrationToken m_accessibilitySettingsToken;
|
||||||
Windows::UI::ViewManagement::UISettings ^ m_uiSettings;
|
Windows::UI::ViewManagement::UISettings ^ m_uiSettings;
|
||||||
Windows::UI::ViewManagement::AccessibilitySettings ^ m_accessibilitySettings;
|
Windows::UI::ViewManagement::AccessibilitySettings ^ m_accessibilitySettings;
|
||||||
void AlwaysOnTopButtonClick(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
void AlwaysOnTopButton_Click(Platform::Object ^ sender, Windows::UI::Xaml::RoutedEventArgs ^ e);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user