mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 17:12:56 -05:00
55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Histacom2.Engine
|
|
{
|
|
public static class FileDialogBoxManager
|
|
{
|
|
public static bool IsInOpenDialog = false;
|
|
public static bool IsInSaveDialog = false;
|
|
public static string OnlyViewExtension = "";
|
|
|
|
public static void ActivateOpenFileDialog(string ExtensionToView)
|
|
{
|
|
IsInOpenDialog = true;
|
|
IsInSaveDialog = false;
|
|
OnlyViewExtension = ExtensionToView;
|
|
}
|
|
|
|
public static void ActivateSaveFileDialog(string ExtensionToView)
|
|
{
|
|
IsInOpenDialog = false;
|
|
IsInSaveDialog = true;
|
|
OnlyViewExtension = ExtensionToView;
|
|
}
|
|
|
|
public static string ReadTextFile(string path)
|
|
{
|
|
try
|
|
{
|
|
return File.ReadAllText(path);
|
|
} catch {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
public static void SaveRtfDocument(RichTextBox tbox, string path)
|
|
{
|
|
int fileBytes = 0;
|
|
tbox.SaveFile(path);
|
|
fileBytes = File.ReadAllText(path).Length;
|
|
|
|
THFileInfo info = new THFileInfo();
|
|
info.Name = Path.GetFileName(path);
|
|
info.FileIcon = 20;
|
|
info.ByteSize = fileBytes;
|
|
SaveSystem.CurrentSave.BytesLeft -= fileBytes;
|
|
SaveSystem.UpdateDirectoryInfo(new FileInfo(path).Directory.FullName, info);
|
|
}
|
|
}
|
|
}
|