mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<!-- Aseprite -->
|
|
<!-- Copyright (C) 2021 by Igara Studio S.A. -->
|
|
<gui>
|
|
<window id="debugger" text="@.title">
|
|
<vbox childspacing="0">
|
|
<hbox>
|
|
<buttonset columns="4" id="control">
|
|
<item icon="debug_continue" style="debugger_button" tooltip="@.continue" tooltip_dir="bottom" />
|
|
<item icon="debug_step_into" style="debugger_button" tooltip="@.step_into" tooltip_dir="bottom" />
|
|
<item icon="debug_step_over" style="debugger_button" tooltip="@.step_over" tooltip_dir="bottom" />
|
|
<item icon="debug_step_out" style="debugger_button" tooltip="@.step_out" tooltip_dir="bottom" />
|
|
</buttonset>
|
|
<buttonset columns="1" id="breakpoint">
|
|
<item icon="debug_breakpoint" tooltip="@.toggle_breakpoint" tooltip_dir="bottom" />
|
|
</buttonset>
|
|
</hbox>
|
|
<splitter id="main_area" horizontal="true" noborders="true" childspacing="2" expansive="true">
|
|
<view id="source_placeholder" />
|
|
<splitter vertical="true" noborders="true" childspacing="2" expansive="true">
|
|
<vbox id="stack_part">
|
|
<separator text="@.stacktrace" horizontal="true" />
|
|
<view id="stack_placeholder" expansive="true" />
|
|
</vbox>
|
|
<vbox id="output_part">
|
|
<hbox>
|
|
<buttonset id="output_buttons" columns="2">
|
|
<item text="@.console" />
|
|
<item text="@.locals" />
|
|
</buttonset>
|
|
</hbox>
|
|
<view id="console_view" expansive="true">
|
|
<textbox id="console" />
|
|
</view>
|
|
<view id="locals_view" expansive="true">
|
|
<listbox id="locals" expansive="true" />
|
|
</view>
|
|
<vbox id="eval_placeholder" noborders="true" />
|
|
</vbox>
|
|
</splitter>
|
|
</splitter>
|
|
</vbox>
|
|
</window>
|
|
</gui>
|