mirror of
https://github.com/wagesj45/butterflow-ui.git
synced 2024-11-14 05:43:33 -06:00
Fleshing out bindings and values
This commit is contained in:
parent
d5f58560fd
commit
7fde16539f
3 changed files with 50 additions and 18 deletions
|
@ -46,26 +46,26 @@
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.PlaybackRateLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.PlaybackRateLabel}">
|
||||||
<StackPanel Orientation="Vertical">
|
<StackPanel Orientation="Vertical">
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._2xLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._2xLabel}" Tag="2x" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._3xLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._3xLabel}" Tag="3x" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._4xLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._4xLabel}" Tag="4x" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._24fpsLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._24fpsLabel}" Tag="24"/>
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._30fpsLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._30fpsLabel}" Tag="30" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._60fpsLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._60fpsLabel}" Tag="60" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization._120fpsLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="">
|
||||||
<RadioButton GroupName="PlaybackRate" />
|
<RadioButton GroupName="PlaybackRate" Checked="PlaybackRateRadioButton_Checked" Content="{x:Static loc:Localization._120fpsLabel}" Tag="120" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.CustomPlaybackRateLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.CustomPlaybackRateLabel}">
|
||||||
<TextBox Text="{Binding OptionsConfiguration.PlaybackRate, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}" />
|
<TextBox Text="{Binding OptionsConfiguration.PlaybackRate, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
|
@ -73,10 +73,10 @@
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.KeepAudioLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.KeepAudioLabel}">
|
||||||
<CheckBox />
|
<CheckBox IsChecked="{Binding OptionsConfiguration.KeepAudio, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.LosslessLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.LosslessLabel}">
|
||||||
<CheckBox />
|
<CheckBox IsChecked="{Binding OptionsConfiguration.LosslessQuality, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.ResolutionLabel}">
|
<butterflow_ui:ButterflowOption LabelValue="{x:Static loc:Localization.ResolutionLabel}">
|
||||||
<Grid>
|
<Grid>
|
||||||
|
@ -85,10 +85,10 @@
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<butterflow_ui:ButterflowOption Grid.Column="0" LabelValue="{x:Static loc:Localization.WidthLabel}">
|
<butterflow_ui:ButterflowOption Grid.Column="0" LabelValue="{x:Static loc:Localization.WidthLabel}">
|
||||||
<TextBox Name="txtWidth" />
|
<TextBox Text="{Binding OptionsConfiguration.Width, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
<butterflow_ui:ButterflowOption Grid.Column="1" LabelValue="{x:Static loc:Localization.HeightLabel}">
|
<butterflow_ui:ButterflowOption Grid.Column="1" LabelValue="{x:Static loc:Localization.HeightLabel}">
|
||||||
<TextBox Name="txtHeight" Text="" />
|
<TextBox Text="{Binding OptionsConfiguration.Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}}" />
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
</Grid>
|
</Grid>
|
||||||
</butterflow_ui:ButterflowOption>
|
</butterflow_ui:ButterflowOption>
|
||||||
|
|
|
@ -23,6 +23,8 @@ namespace butterflow_ui
|
||||||
{
|
{
|
||||||
#region Properties
|
#region Properties
|
||||||
|
|
||||||
|
/// <summary> Gets or sets the butyterflow options configuration. </summary>
|
||||||
|
/// <value> The options configuration. </value>
|
||||||
public OptionsConfiguration OptionsConfiguration { get; set; } = new OptionsConfiguration();
|
public OptionsConfiguration OptionsConfiguration { get; set; } = new OptionsConfiguration();
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -49,5 +51,19 @@ namespace butterflow_ui
|
||||||
mediaPreview.Source = new Uri(ofd.FileName);
|
mediaPreview.Source = new Uri(ofd.FileName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary> Event handler. Called by PlaybackRate radio buttons for checked events. </summary>
|
||||||
|
/// <param name="sender"> Source of the event. </param>
|
||||||
|
/// <param name="e"> Routed event information. </param>
|
||||||
|
private void PlaybackRateRadioButton_Checked(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var typedSender = (RadioButton)sender;
|
||||||
|
|
||||||
|
if(typedSender != null)
|
||||||
|
{
|
||||||
|
var tag = typedSender.Tag.ToString();
|
||||||
|
this.OptionsConfiguration.PlaybackRate = tag;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@ namespace butterflow_ui
|
||||||
private bool keepAudio;
|
private bool keepAudio;
|
||||||
private int width;
|
private int width;
|
||||||
private int height;
|
private int height;
|
||||||
|
private bool losslessQuality;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
@ -91,6 +92,21 @@ namespace butterflow_ui
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary> Gets or sets a value indicating whether the result is rendered in lossless quality. </summary>
|
||||||
|
/// <value> True if lossless quality is selected, false if not. </value>
|
||||||
|
public bool LosslessQuality
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this.losslessQuality;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
this.losslessQuality = value;
|
||||||
|
OnPropertyChanged("LosslessQuality");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Methods
|
#region Methods
|
||||||
|
|
Loading…
Reference in a new issue