private void resourceReplaceFrom() { var savedTitle = importPackagesDialog.Title; try { this.Enabled = false; importPackagesDialog.Title = "Replace Selected Resources from Package(s)"; DialogResult dr = importPackagesDialog.ShowDialog(); if (dr != DialogResult.OK) { return; } ImportBatch ib = new ImportBatch(importPackagesDialog.FileNames, ImportBatch.Mode.replaceFrom); dr = ib.ShowDialog(); if (dr != DialogResult.OK) { return; } importPackagesCommon(ib.Batch, importPackagesDialog.Title, DuplicateHandling.replace, ib.Compress, selection: browserWidget1.SelectedResources); } finally { this.Enabled = true; importPackagesDialog.Title = savedTitle; } }
void importSingle(string filename, string title) { if (CurrentPackage == null) { fileNew(); } if (new List <string>(asPkgExts).Contains(filename.Substring(filename.LastIndexOf('.')))) { ImportBatch ib = new ImportBatch(new string[] { filename, }, ImportBatch.Mode.package); DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) { return; } importPackagesCommon(new string[] { filename, }, title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames); } else { ResourceDetails ir = new ResourceDetails(/*20120820 CurrentPackage.Find(x => x.ResourceType == 0x0166038C) != null/**/ true, true); ir.Filename = filename; DialogResult dr = ir.ShowDialog(); if (dr != DialogResult.OK) { return; } importFile(ir.Filename, ir, ir.UseName, ir.AllowRename, ir.Compress, ir.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, true); } }
void importBatch(IList <myDataFormat> ldata) { ImportBatch ib = new ImportBatch(ldata); DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) { return; } List <myDataFormat> output = new List <myDataFormat>(); foreach (string b in ib.Batch) { foreach (myDataFormat data in ldata) { if (data.tgin == b) { output.Add(data); goto next; } } next : { } } if (output.Count == 0) { return; } if (output.Count == 1) { importSingle(output[0]); return; } try { foreach (myDataFormat data in output) { importStream(data, ib.UseNames, ib.Rename, ib.Compress, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, false); Application.DoEvents(); } } catch (Exception ex) { CopyableMessageBox.IssueException(ex, "Could not import all resources.\n", "Aborting import"); } }
private void resourceImportPackages() { try { this.Enabled = false; DialogResult dr = importPackagesDialog.ShowDialog(); if (dr != DialogResult.OK) return; ImportBatch ib = new ImportBatch(importPackagesDialog.FileNames, ImportBatch.Mode.package); dr = ib.ShowDialog(); if (dr != DialogResult.OK) return; importPackagesCommon(ib.Batch, importPackagesDialog.Title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames, rename: ib.Rename); } finally { this.Enabled = true; } }
private void resourceImportPackages() { try { this.Enabled = false; DialogResult dr = importPackagesDialog.ShowDialog(); if (dr != DialogResult.OK) { return; } ImportBatch ib = new ImportBatch(importPackagesDialog.FileNames, ImportBatch.Mode.package); dr = ib.ShowDialog(); if (dr != DialogResult.OK) { return; } importPackagesCommon(ib.Batch, importPackagesDialog.Title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames, rename: ib.Rename); } finally { this.Enabled = true; } }
void importBatch(string[] batch, string title) { if (CurrentPackage == null) { fileNew(); } List <string> foo = new List <string>(); foreach (string bar in batch) { if (Directory.Exists(bar)) { foo.AddRange(getFiles(bar)); } else if (File.Exists(bar)) { foo.Add(bar); } } batch = foo.ToArray(); ImportBatch ib = new ImportBatch(batch); ib.Text = title; DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) { return; } List <string> resList = new List <string>(); List <string> pkgList = new List <string>(); List <string> folders = new List <string>(); List <string> pkgExts = new List <string>(asPkgExts); foreach (string s in batch) { (pkgExts.Contains(s.Substring(s.LastIndexOf('.'))) ? pkgList : resList).Add(s); } try { if (pkgList.Count > 0) { importPackagesCommon(pkgList.ToArray(), title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames); } bool nmOK = true; foreach (string filename in resList) { nmOK = importFile(filename, filename, nmOK && ib.UseNames, ib.Rename, ib.Compress, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, false); Application.DoEvents(); } } catch (Exception ex) { CopyableMessageBox.IssueException(ex, "Could not import all resources - aborting.\n", title); } }
private void resourceReplaceFrom() { var savedTitle = importPackagesDialog.Title; try { this.Enabled = false; importPackagesDialog.Title = "Replace Selected Resources from Package(s)"; DialogResult dr = importPackagesDialog.ShowDialog(); if (dr != DialogResult.OK) return; ImportBatch ib = new ImportBatch(importPackagesDialog.FileNames, ImportBatch.Mode.replaceFrom); dr = ib.ShowDialog(); if (dr != DialogResult.OK) return; importPackagesCommon(ib.Batch, importPackagesDialog.Title, DuplicateHandling.replace, ib.Compress, selection: browserWidget1.SelectedResources); } finally { this.Enabled = true; importPackagesDialog.Title = savedTitle; } }
void importBatch(IList<myDataFormat> ldata) { ImportBatch ib = new ImportBatch(ldata); DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) return; List<myDataFormat> output = new List<myDataFormat>(); foreach (string b in ib.Batch) { foreach (myDataFormat data in ldata) if (data.tgin == b) { output.Add(data); goto next; } next: { } } if (output.Count == 0) return; if (output.Count == 1) { importSingle(output[0]); return; } try { foreach (myDataFormat data in output) { importStream(data, ib.UseNames, ib.Rename, ib.Compress, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, false); Application.DoEvents(); } } catch (Exception ex) { CopyableMessageBox.IssueException(ex, "Could not import all resources.\n", "Aborting import"); } }
void importBatch(string[] batch, string title) { if (CurrentPackage == null) fileNew(); List<string> foo = new List<string>(); foreach (string bar in batch) if (Directory.Exists(bar)) foo.AddRange(getFiles(bar)); else if (File.Exists(bar)) foo.Add(bar); batch = foo.ToArray(); ImportBatch ib = new ImportBatch(batch); ib.Text = title; DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) return; List<string> resList = new List<string>(); List<string> pkgList = new List<string>(); List<string> folders = new List<string>(); List<string> pkgExts = new List<string>(asPkgExts); foreach (string s in batch) (pkgExts.Contains(s.Substring(s.LastIndexOf('.'))) ? pkgList : resList).Add(s); try { if (pkgList.Count > 0) importPackagesCommon(pkgList.ToArray(), title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames); bool nmOK = true; foreach (string filename in resList) { nmOK = importFile(filename, filename, nmOK && ib.UseNames, ib.Rename, ib.Compress, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, false); Application.DoEvents(); } } catch (Exception ex) { CopyableMessageBox.IssueException(ex, "Could not import all resources - aborting.\n", title); } }
void importSingle(string filename, string title) { if (CurrentPackage == null) fileNew(); if (new List<string>(asPkgExts).Contains(filename.Substring(filename.LastIndexOf('.')))) { ImportBatch ib = new ImportBatch(new string[] { filename, }, ImportBatch.Mode.package); DialogResult dr = ib.ShowDialog(); if (dr != DialogResult.OK) return; importPackagesCommon(new string[] { filename, }, title, ib.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, ib.Compress, ib.UseNames); } else { ResourceDetails ir = new ResourceDetails(/*20120820 CurrentPackage.Find(x => x.ResourceType == 0x0166038C) != null/**/true, true); ir.Filename = filename; DialogResult dr = ir.ShowDialog(); if (dr != DialogResult.OK) return; importFile(ir.Filename, ir, ir.UseName, ir.AllowRename, ir.Compress, ir.Replace ? DuplicateHandling.replace : DuplicateHandling.reject, true); } }