mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
43 lines
1,018 B
C#
43 lines
1,018 B
C#
|
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;
|
|||
|
|
|||
|
[GUI] Notebook _widgetNotebook;
|
|||
|
|
|||
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|