|
8 | 8 | xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
|
9 | 9 | xmlns:utils="clr-namespace:CurvaLauncher.Utilities"
|
10 | 10 | xmlns:models="clr-namespace:CurvaLauncher.Models"
|
| 11 | + xmlns:models_imr="clr-namespace:CurvaLauncher.Models.ImmediateResults" |
11 | 12 | xmlns:ws="https://schemas.elecho.dev/wpfsuite"
|
12 | 13 | xmlns:tb="http://www.hardcodet.net/taskbar"
|
13 | 14 | xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
30 | 31 | Deactivated="WindowDeactivated">
|
31 | 32 |
|
32 | 33 | <Window.InputBindings>
|
33 |
| - <KeyBinding Key="Esc" Command="{x:Static local:App.CloseLauncherCommand}"/> |
| 34 | + <KeyBinding Key="Esc" Command="{Binding ViewModel.EscapeCommand}"/> |
34 | 35 | <KeyBinding Key="Up" Command="{Binding ViewModel.SelectPrevCommand}"/>
|
35 | 36 | <KeyBinding Key="Down" Command="{Binding ViewModel.SelectNextCommand}"/>
|
36 | 37 | <KeyBinding Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/>
|
|
41 | 42 |
|
42 | 43 | <Window.Resources>
|
43 | 44 | <BooleanToVisibilityConverter x:Key="bool2visibility"/>
|
| 45 | + <ws:BindingProxy x:Key="AppConfigProxy" |
| 46 | + Data="{Binding AppConfig}"/> |
| 47 | + <ws:BindingProxy x:Key="ViewModelProxy" |
| 48 | + Data="{Binding ViewModel}"/> |
44 | 49 | </Window.Resources>
|
45 | 50 |
|
46 | 51 | <Grid>
|
|
52 | 57 | <ColumnDefinition Width="Auto"/>
|
53 | 58 | </Grid.ColumnDefinitions>
|
54 | 59 |
|
55 |
| - <ui:TextBox Name="QueryBox" |
56 |
| - Text="{Binding ViewModel.QueryText,UpdateSourceTrigger=PropertyChanged}" |
57 |
| - FontSize="{DynamicResource QueryBoxTextSize}" |
58 |
| - FocusVisualStyle="{x:Null}" |
59 |
| - ClearButtonEnabled="True" |
60 |
| - PlaceholderText="Hello CurvaLauncher" |
61 |
| - PreviewKeyDown="QueryBox_PreviewKeyDown"> |
62 |
| - <ui:TextBox.InputBindings> |
63 |
| - <KeyBinding Key="Up" Command="{Binding ViewModel.SelectPrevCommand}"/> |
64 |
| - <KeyBinding Key="Down" Command="{Binding ViewModel.SelectNextCommand}"/> |
65 |
| - <KeyBinding Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/> |
66 |
| - </ui:TextBox.InputBindings> |
67 |
| - <ui:TextBox.ContextMenu> |
68 |
| - <ContextMenu FontSize="14" HasDropShadow="True" |
69 |
| - BorderBrush="#80777777"> |
70 |
| - <ui:MenuItem Header="{DynamicResource StrCut}" Command="ApplicationCommands.Cut"/> |
71 |
| - <ui:MenuItem Header="{DynamicResource StrCopy}" Command="ApplicationCommands.Copy"/> |
72 |
| - <ui:MenuItem Header="{DynamicResource StrPaste}" Command="ApplicationCommands.Paste"/> |
73 |
| - <Separator/> |
74 |
| - <ui:MenuItem Header="{DynamicResource StrSettings}" Command="{x:Static local:App.ShowLauncherSettingsCommand}"/> |
75 |
| - <ui:MenuItem Header="{DynamicResource StrExit}" Command="{x:Static local:App.ShutdownCommand}"/> |
76 |
| - </ContextMenu> |
77 |
| - </ui:TextBox.ContextMenu> |
78 |
| - <behaviors:Interaction.Triggers> |
79 |
| - <behaviors:EventTrigger EventName="TextChanged"> |
80 |
| - <behaviors:InvokeCommandAction Command="{Binding ViewModel.QueryCommand}"/> |
81 |
| - </behaviors:EventTrigger> |
82 |
| - </behaviors:Interaction.Triggers> |
83 |
| - </ui:TextBox> |
| 60 | + <Grid> |
| 61 | + <Grid.ColumnDefinitions> |
| 62 | + <ColumnDefinition Width="Auto"/> |
| 63 | + <ColumnDefinition/> |
| 64 | + </Grid.ColumnDefinitions> |
| 65 | + |
| 66 | + <ui:Button Content="<" |
| 67 | + VerticalAlignment="Stretch" |
| 68 | + Width="{Binding RelativeSource={RelativeSource Self},Path=ActualHeight}" |
| 69 | + Margin="0 0 4 0" |
| 70 | + FontSize="20" |
| 71 | + FontWeight="Bold" |
| 72 | + Visibility="{Binding ViewModel.ShowImmediateResults,Converter={StaticResource bool2visibility}}" |
| 73 | + Command="{Binding ViewModel.EscapeCommand}"/> |
| 74 | + |
| 75 | + <ui:TextBox Name="QueryBox" |
| 76 | + Grid.Column="1" |
| 77 | + Text="{Binding ViewModel.QueryText,UpdateSourceTrigger=PropertyChanged}" |
| 78 | + FontSize="{DynamicResource QueryBoxTextSize}" |
| 79 | + FocusVisualStyle="{x:Null}" |
| 80 | + ClearButtonEnabled="True" |
| 81 | + PlaceholderText="Hello CurvaLauncher" |
| 82 | + PreviewKeyDown="QueryBox_PreviewKeyDown"> |
| 83 | + <ui:TextBox.InputBindings> |
| 84 | + <KeyBinding Key="Up" Command="{Binding ViewModel.SelectPrevCommand}"/> |
| 85 | + <KeyBinding Key="Down" Command="{Binding ViewModel.SelectNextCommand}"/> |
| 86 | + <KeyBinding Key="Return" Command="{Binding ViewModel.InvokeSelectedCommand}"/> |
| 87 | + </ui:TextBox.InputBindings> |
| 88 | + <ui:TextBox.ContextMenu> |
| 89 | + <ContextMenu FontSize="14" HasDropShadow="True" |
| 90 | + BorderBrush="#80777777"> |
| 91 | + <ui:MenuItem Header="{DynamicResource StrCut}" Command="ApplicationCommands.Cut"/> |
| 92 | + <ui:MenuItem Header="{DynamicResource StrCopy}" Command="ApplicationCommands.Copy"/> |
| 93 | + <ui:MenuItem Header="{DynamicResource StrPaste}" Command="ApplicationCommands.Paste"/> |
| 94 | + <Separator/> |
| 95 | + <ui:MenuItem Header="{DynamicResource StrSettings}" Command="{x:Static local:App.ShowLauncherSettingsCommand}"/> |
| 96 | + <ui:MenuItem Header="{DynamicResource StrExit}" Command="{x:Static local:App.ShutdownCommand}"/> |
| 97 | + </ContextMenu> |
| 98 | + </ui:TextBox.ContextMenu> |
| 99 | + <behaviors:Interaction.Triggers> |
| 100 | + <behaviors:EventTrigger EventName="TextChanged"> |
| 101 | + <behaviors:InvokeCommandAction Command="{Binding ViewModel.QueryCommand}"/> |
| 102 | + </behaviors:EventTrigger> |
| 103 | + </behaviors:Interaction.Triggers> |
| 104 | + </ui:TextBox> |
| 105 | + </Grid> |
84 | 106 |
|
85 | 107 | <ui:ProgressRing Grid.Column="1" Margin="7 0 0 0" IsIndeterminate="True">
|
86 | 108 | <ui:ProgressRing.Style>
|
|
89 | 111 | <Style.Triggers>
|
90 | 112 | <MultiDataTrigger>
|
91 | 113 | <MultiDataTrigger.Conditions>
|
92 |
| - <Condition Binding="{Binding ViewModel.HasQueryResult}" Value="True"/> |
93 |
| - <Condition Binding="{Binding ViewModel.SelectedQueryResult.InvokeCommand.IsRunning}" Value="True"/> |
| 114 | + <Condition Binding="{Binding ViewModel.ShowQueryResult}" Value="True"/> |
| 115 | + <Condition Binding="{Binding ViewModel.InvokeCommand.IsRunning}" Value="True"/> |
94 | 116 | </MultiDataTrigger.Conditions>
|
95 | 117 | <MultiDataTrigger.Setters>
|
96 | 118 | <Setter Property="Visibility" Value="Visible"/>
|
|
104 | 126 | </ui:ProgressRing.LayoutTransform>
|
105 | 127 | </ui:ProgressRing>
|
106 | 128 | </Grid>
|
107 |
| - <ws:ConditionalControl Condition="{Binding ViewModel.HasQueryResult}"> |
| 129 | + |
| 130 | + <ws:ConditionalControl Condition="{Binding ViewModel.ShowQueryResult}"> |
108 | 131 | <ListView Name="resultBox" Margin="0 5 0 0" MinHeight="0"
|
109 | 132 | Height="Auto"
|
110 | 133 | MaxHeight="{Binding AppConfig.LauncherResultViewHeight}"
|
|
122 | 145 | <ListView.ItemTemplate>
|
123 | 146 | <DataTemplate DataType="models:QueryResultModel">
|
124 | 147 | <Border Padding="{DynamicResource QueryResultPaddingThickness}">
|
125 |
| - <Border.Resources> |
126 |
| - <ws:BindingProxy x:Key="Proxy" Data="{Binding}"/> |
127 |
| - </Border.Resources> |
128 |
| - <Button Command="{Binding InvokeCommand}"> |
129 |
| - <Button.Template> |
130 |
| - <ControlTemplate TargetType="Button"> |
131 |
| - <ContentPresenter Content="{TemplateBinding Content}"/> |
132 |
| - </ControlTemplate> |
133 |
| - </Button.Template> |
134 |
| - |
135 |
| - <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> |
136 |
| - <Grid.ColumnDefinitions> |
137 |
| - <ColumnDefinition Width="Auto"/> |
138 |
| - <ColumnDefinition Width="8"/> |
139 |
| - <ColumnDefinition/> |
140 |
| - </Grid.ColumnDefinitions> |
| 148 | + <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> |
| 149 | + <Grid.ColumnDefinitions> |
| 150 | + <ColumnDefinition Width="Auto"/> |
| 151 | + <ColumnDefinition Width="8"/> |
| 152 | + <ColumnDefinition/> |
| 153 | + </Grid.ColumnDefinitions> |
141 | 154 |
|
142 |
| - <Border Width="{DynamicResource QueryResultIconSize}" |
143 |
| - Height="{DynamicResource QueryResultIconSize}" |
144 |
| - CornerRadius="{DynamicResource QueryResultIconCornerRadius}"> |
145 |
| - <Border.Background> |
146 |
| - <ImageBrush Stretch="Uniform" |
147 |
| - ImageSource="{Binding Source={StaticResource Proxy}, Path=Data.Icon}"/> |
148 |
| - </Border.Background> |
149 |
| - </Border> |
| 155 | + <Border Width="{DynamicResource QueryResultIconSize}" |
| 156 | + Height="{DynamicResource QueryResultIconSize}" |
| 157 | + CornerRadius="{DynamicResource QueryResultIconCornerRadius}"> |
| 158 | + <Border.Background> |
| 159 | + <ImageBrush Stretch="Uniform" |
| 160 | + ImageSource="{Binding Icon}"/> |
| 161 | + </Border.Background> |
| 162 | + </Border> |
150 | 163 |
|
151 |
| - <Grid Grid.Column="2"> |
152 |
| - <Grid.RowDefinitions> |
153 |
| - <RowDefinition/> |
154 |
| - <RowDefinition/> |
155 |
| - </Grid.RowDefinitions> |
156 |
| - <TextBlock Text="{Binding Title}" |
157 |
| - FontSize="{DynamicResource QueryResultTitleTextSize}" |
158 |
| - Foreground="{DynamicResource TextFillColorPrimaryBrush}"/> |
159 |
| - <TextBlock Grid.Row="1" |
160 |
| - TextTrimming="WordEllipsis" |
161 |
| - Text="{Binding Description}" |
162 |
| - FontSize="{DynamicResource QueryResultDescriptionTextSize}" |
163 |
| - Foreground="{DynamicResource TextFillColorSecondaryBrush}"/> |
164 |
| - </Grid> |
| 164 | + <Grid Grid.Column="2"> |
| 165 | + <Grid.RowDefinitions> |
| 166 | + <RowDefinition/> |
| 167 | + <RowDefinition/> |
| 168 | + </Grid.RowDefinitions> |
| 169 | + <TextBlock Text="{Binding Title}" |
| 170 | + FontSize="{DynamicResource QueryResultTitleTextSize}" |
| 171 | + Foreground="{DynamicResource TextFillColorPrimaryBrush}"/> |
| 172 | + <TextBlock Grid.Row="1" |
| 173 | + TextTrimming="WordEllipsis" |
| 174 | + Text="{Binding Description}" |
| 175 | + FontSize="{DynamicResource QueryResultDescriptionTextSize}" |
| 176 | + Foreground="{DynamicResource TextFillColorSecondaryBrush}"/> |
165 | 177 | </Grid>
|
166 |
| - </Button> |
| 178 | + </Grid> |
167 | 179 | </Border>
|
168 | 180 | </DataTemplate>
|
169 | 181 | </ListView.ItemTemplate>
|
170 | 182 | <ListView.ItemContainerStyle>
|
171 | 183 | <Style TargetType="{x:Type ListViewItem}" BasedOn="{StaticResource {x:Type ListViewItem}}">
|
172 | 184 | <Setter Property="BorderThickness" Value="0" />
|
173 | 185 | <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
| 186 | + <EventSetter Event="PreviewMouseDown" |
| 187 | + Handler="ResultBoxItemMouseDown"/> |
174 | 188 | </Style>
|
175 | 189 | </ListView.ItemContainerStyle>
|
176 | 190 | </ListView>
|
177 | 191 | </ws:ConditionalControl>
|
| 192 | + |
| 193 | + <ContentControl Visibility="{Binding ViewModel.ShowImmediateResults,Converter={StaticResource bool2visibility}}" |
| 194 | + Content="{Binding ViewModel.CurrentImmediateResult}"> |
| 195 | + <ContentControl.Resources> |
| 196 | + <DataTemplate DataType="{x:Type models_imr:DocumentResult}"> |
| 197 | + <FlowDocumentScrollViewer Document="{Binding Document}" |
| 198 | + MinHeight="{Binding Source={StaticResource AppConfigProxy},Path=Data.LauncherResultViewHeight}"> |
| 199 | + |
| 200 | + </FlowDocumentScrollViewer> |
| 201 | + </DataTemplate> |
| 202 | + </ContentControl.Resources> |
| 203 | + </ContentControl> |
178 | 204 | </StackPanel>
|
179 | 205 | </Border>
|
180 | 206 |
|
|
0 commit comments