aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Debugger/UI/DebuggerWidget.cs
diff options
context:
space:
mode:
authorMary <me@thog.eu>2020-08-30 19:06:05 +0200
committerGitHub <noreply@github.com>2020-08-30 19:06:05 +0200
commit4f3ae6f62ca5858c2b74eba5a15bad5dff580349 (patch)
tree1ab0427f411d530b253abc73bb6ef97b64a3a6d6 /Ryujinx.Debugger/UI/DebuggerWidget.cs
parentb9398f1f3a13612a0bc3e64205cdb7eca3f48d4d (diff)
Remove the Ryujinx.Debugger project (#1506)
This project wasn't really used by anyone and isn't worth mantaining. This commit remove the profiler entirely from Ryujinx and remove the associated CI tasks.
Diffstat (limited to 'Ryujinx.Debugger/UI/DebuggerWidget.cs')
-rw-r--r--Ryujinx.Debugger/UI/DebuggerWidget.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/Ryujinx.Debugger/UI/DebuggerWidget.cs b/Ryujinx.Debugger/UI/DebuggerWidget.cs
deleted file mode 100644
index 1eb45735..00000000
--- a/Ryujinx.Debugger/UI/DebuggerWidget.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using Gtk;
-using System;
-using GUI = Gtk.Builder.ObjectAttribute;
-
-namespace Ryujinx.Debugger.UI
-{
- public class DebuggerWidget : Box
- {
- public event EventHandler DebuggerEnabled;
- public event EventHandler DebuggerDisabled;
-
-#pragma warning disable CS0649
- [GUI] Notebook _widgetNotebook;
-#pragma warning restore CS0649
-
- public DebuggerWidget() : this(new Builder("Ryujinx.Debugger.UI.DebuggerWidget.glade")) { }
-
- public DebuggerWidget(Builder builder) : base(builder.GetObject("_debuggerBox").Handle)
- {
- builder.Autoconnect(this);
-
- LoadProfiler();
- }
-
- public void LoadProfiler()
- {
- ProfilerWidget widget = new ProfilerWidget();
-
- widget.RegisterParentDebugger(this);
-
- _widgetNotebook.AppendPage(widget, new Label("Profiler"));
- }
-
- public void Enable()
- {
- DebuggerEnabled.Invoke(this, null);
- }
-
- public void Disable()
- {
- DebuggerDisabled.Invoke(this, null);
- }
- }
-}