mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
moved GUI project to a subdirectory.
This commit is contained in:
155
GUI/CreateArchive.xaml.cs
Normal file
155
GUI/CreateArchive.xaml.cs
Normal file
@@ -0,0 +1,155 @@
|
||||
/// Game Resource browser
|
||||
//
|
||||
// Copyright (C) 2014 by morkt
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System.IO;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Linq;
|
||||
using Microsoft.Win32;
|
||||
using GARbro.GUI.Strings;
|
||||
using GameRes;
|
||||
|
||||
namespace GARbro.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for CreateArchive.xaml
|
||||
/// </summary>
|
||||
public partial class CreateArchiveDialog : Window
|
||||
{
|
||||
public CreateArchiveDialog (string initial_name = "")
|
||||
{
|
||||
InitializeComponent ();
|
||||
|
||||
if (!string.IsNullOrEmpty (initial_name))
|
||||
{
|
||||
var format = this.ArchiveFormat.SelectedItem as ArchiveFormat;
|
||||
if (null != format)
|
||||
initial_name = Path.ChangeExtension (initial_name, format.Extensions.FirstOrDefault());
|
||||
}
|
||||
ArchiveName.Text = initial_name;
|
||||
}
|
||||
|
||||
private readonly IEnumerable<ArchiveFormat> m_formats = FormatCatalog.Instance.ArcFormats.Where (f => f.CanCreate);
|
||||
|
||||
public IEnumerable<ArchiveFormat> ArcFormats { get { return m_formats; } }
|
||||
|
||||
public ResourceOptions ArchiveOptions { get; private set; }
|
||||
|
||||
void Button_Click (object sender, RoutedEventArgs e)
|
||||
{
|
||||
string arc_name = Path.GetFullPath (ArchiveName.Text);
|
||||
if (File.Exists (arc_name))
|
||||
{
|
||||
string text = string.Format (guiStrings.MsgOverwrite, arc_name);
|
||||
var rc = MessageBox.Show (this, text, guiStrings.TextConfirmOverwrite, MessageBoxButton.YesNo,
|
||||
MessageBoxImage.Question);
|
||||
if (MessageBoxResult.Yes != rc)
|
||||
return;
|
||||
}
|
||||
var format = this.ArchiveFormat.SelectedItem as ArchiveFormat;
|
||||
if (null != format)
|
||||
{
|
||||
ArchiveOptions = format.GetOptions (OptionsWidget.Content);
|
||||
}
|
||||
DialogResult = true;
|
||||
}
|
||||
|
||||
void BrowseExec (object sender, ExecutedRoutedEventArgs e)
|
||||
{
|
||||
string file = ChooseFile (guiStrings.TextChooseArchive, ArchiveName.Text);
|
||||
if (!string.IsNullOrEmpty (file))
|
||||
ArchiveName.Text = file;
|
||||
}
|
||||
|
||||
string GetFilters ()
|
||||
{
|
||||
var filters = new StringBuilder();
|
||||
|
||||
var format = this.ArchiveFormat.SelectedItem as ArchiveFormat;
|
||||
if (null != format)
|
||||
{
|
||||
var patterns = format.Extensions.Select (ext => "*."+ext);
|
||||
filters.Append (format.Description);
|
||||
filters.Append (" (");
|
||||
filters.Append (string.Join (", ", patterns));
|
||||
filters.Append (")|");
|
||||
filters.Append (string.Join (";", patterns));
|
||||
}
|
||||
|
||||
if (filters.Length > 0)
|
||||
filters.Append ('|');
|
||||
filters.Append (string.Format ("{0} (*.*)|*.*", guiStrings.TextAllFiles));
|
||||
return filters.ToString();
|
||||
}
|
||||
|
||||
public string ChooseFile (string title, string initial)
|
||||
{
|
||||
string dir = ".";
|
||||
if (!string.IsNullOrEmpty (initial))
|
||||
{
|
||||
var parent = Directory.GetParent (initial);
|
||||
if (null != parent)
|
||||
dir = parent.FullName;
|
||||
}
|
||||
dir = Path.GetFullPath (dir);
|
||||
var dlg = new OpenFileDialog {
|
||||
AddExtension = true,
|
||||
CheckFileExists = false,
|
||||
CheckPathExists = true,
|
||||
FileName = initial,
|
||||
Filter = GetFilters(),
|
||||
InitialDirectory = dir,
|
||||
Multiselect = false,
|
||||
Title = guiStrings.TextChooseArchive,
|
||||
};
|
||||
return dlg.ShowDialog (this).Value ? dlg.FileName : null;
|
||||
}
|
||||
|
||||
void OnFormatSelect (object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
var format = this.ArchiveFormat.SelectedItem as ArchiveFormat;
|
||||
object widget = null;
|
||||
if (null != format)
|
||||
{
|
||||
widget = format.GetCreationWidget();
|
||||
if (!string.IsNullOrEmpty (ArchiveName.Text))
|
||||
ArchiveName.Text = Path.ChangeExtension (ArchiveName.Text, format.Extensions.FirstOrDefault());
|
||||
}
|
||||
OptionsWidget.Content = widget;
|
||||
OptionsWidget.Visibility = null != widget ? Visibility.Visible : Visibility.Hidden;
|
||||
}
|
||||
|
||||
void CanExecuteAlways (object sender, CanExecuteRoutedEventArgs e)
|
||||
{
|
||||
e.CanExecute = true;
|
||||
}
|
||||
|
||||
private void ArchiveName_TextChanged (object sender, RoutedEventArgs e)
|
||||
{
|
||||
this.ButtonOk.IsEnabled = ArchiveName.Text.Length > 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user