using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; namespace SourceGit.UI { /// /// Fetch dialog. /// public partial class Fetch : UserControl { private Git.Repository repo = null; /// /// Constructor. /// /// Opened repository /// Prefer selected remote. public Fetch(Git.Repository opened, string preferRemote) { repo = opened; InitializeComponent(); Task.Run(() => { var remotes = repo.Remotes(); Dispatcher.Invoke(() => { combRemotes.ItemsSource = remotes; if (preferRemote != null) { combRemotes.SelectedIndex = remotes.FindIndex(r => r.Name == preferRemote); chkFetchAll.IsChecked = false; } else { combRemotes.SelectedIndex = 0; chkFetchAll.IsChecked = true; } }); }); } /// /// Show fetch dialog. /// /// /// public static void Show(Git.Repository repo, string preferRemote = null) { PopupManager.Show(new Fetch(repo, preferRemote)); } /// /// Start fetch /// /// /// private async void Start(object sender, RoutedEventArgs e) { bool prune = chkPrune.IsChecked == true; PopupManager.Lock(); if (chkFetchAll.IsChecked == true) { await Task.Run(() => repo.Fetch(null, prune, PopupManager.UpdateStatus)); } else { var remote = combRemotes.SelectedItem as Git.Remote; await Task.Run(() => repo.Fetch(remote, prune, PopupManager.UpdateStatus)); } PopupManager.Close(true); } /// /// Cancel. /// /// /// private void Cancel(object sender, RoutedEventArgs e) { PopupManager.Close(); } } }