mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-01 00:23:35 +00:00
02e8c66da4
Several refactoring tasks where made: - Removed the old Widget::id field (JID). - Renamed Widget::get/setName to get/setId. - Moved load_widget_from_xmlfile() to app::load_widget and WidgetLoader class. - Removed jhook structure & jwidget_add_hook function. Hooks were replaced subclassing widgets. - Added InitThemeEvent class and Widget::onInitTheme member function.
24 lines
809 B
XML
24 lines
809 B
XML
<!-- ASEPRITE -->
|
|
<!-- Copyright (C) 2001-2012 by David Capello -->
|
|
<gui>
|
|
<window text="Duplicate Sprite" id="duplicate_sprite">
|
|
<box vertical="true">
|
|
<box horizontal="true" expansive="true">
|
|
<box vertical="true" homogeneous="true">
|
|
<label text="Duplicate:" />
|
|
<label text="As:" />
|
|
</box>
|
|
<box vertical="true" homogeneous="true" expansive="true">
|
|
<label text="" id="src_name" />
|
|
<entry maxsize="256" id="dst_name" magnet="true" />
|
|
</box>
|
|
</box>
|
|
<check text="Duplicate merged layers only" id="flatten" />
|
|
<box horizontal="true" homogeneous="true">
|
|
<button text="&OK" closewindow="true" id="ok" magnet="true" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</gui>
|