aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/Widgets/ProfileDialog.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx/UI/Widgets/ProfileDialog.cs')
-rw-r--r--src/Ryujinx/UI/Widgets/ProfileDialog.cs57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/Ryujinx/UI/Widgets/ProfileDialog.cs b/src/Ryujinx/UI/Widgets/ProfileDialog.cs
new file mode 100644
index 00000000..f8aa6345
--- /dev/null
+++ b/src/Ryujinx/UI/Widgets/ProfileDialog.cs
@@ -0,0 +1,57 @@
+using Gtk;
+using Ryujinx.UI.Common.Configuration;
+using System;
+using System.Reflection;
+using GUI = Gtk.Builder.ObjectAttribute;
+
+namespace Ryujinx.UI.Widgets
+{
+ public class ProfileDialog : Dialog
+ {
+ public string FileName { get; private set; }
+
+#pragma warning disable CS0649, IDE0044 // Field is never assigned to, Add readonly modifier
+ [GUI] Entry _profileEntry;
+ [GUI] Label _errorMessage;
+#pragma warning restore CS0649, IDE0044
+
+ public ProfileDialog() : this(new Builder("Ryujinx.UI.Widgets.ProfileDialog.glade")) { }
+
+ private ProfileDialog(Builder builder) : base(builder.GetRawOwnedObject("_profileDialog"))
+ {
+ builder.Autoconnect(this);
+ Icon = new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.UI.Common.Resources.Logo_Ryujinx.png");
+ }
+
+ private void OkToggle_Activated(object sender, EventArgs args)
+ {
+ ((ToggleButton)sender).SetStateFlags(StateFlags.Normal, true);
+
+ bool validFileName = true;
+
+ foreach (char invalidChar in System.IO.Path.GetInvalidFileNameChars())
+ {
+ if (_profileEntry.Text.Contains(invalidChar))
+ {
+ validFileName = false;
+ }
+ }
+
+ if (validFileName && !string.IsNullOrEmpty(_profileEntry.Text))
+ {
+ FileName = $"{_profileEntry.Text}.json";
+
+ Respond(ResponseType.Ok);
+ }
+ else
+ {
+ _errorMessage.Text = "The file name contains invalid characters. Please try again.";
+ }
+ }
+
+ private void CancelToggle_Activated(object sender, EventArgs args)
+ {
+ Respond(ResponseType.Cancel);
+ }
+ }
+}