mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-24 03:10:32 +00:00
25 lines
625 B
C#
25 lines
625 B
C#
using Gtk;
|
|
using System;
|
|
using System.Reflection;
|
|
using GUI = Gtk.Builder.ObjectAttribute;
|
|
|
|
|
|
namespace Ryujinx.UI.UI.Debugging
|
|
{
|
|
public class Debugger : Gtk.Window
|
|
{
|
|
[GUI] Notebook DebuggerNotebook;
|
|
|
|
public Debugger() : this(new Builder("Debugger.glade")) { }
|
|
|
|
public Debugger(Builder builder) : base(builder.GetObject("Debugger").Handle)
|
|
{
|
|
builder.Autoconnect(this);
|
|
|
|
//Add Pages
|
|
Label LogLabel = new Label("Log");
|
|
LogPage LogPage = new LogPage();
|
|
DebuggerNotebook.AppendPage(LogPage.Widget, LogLabel);
|
|
}
|
|
}
|
|
}
|