mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +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.
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<!-- ASEPRITE -->
|
|
<!-- Copyright (C) 2001-2012 by David Capello -->
|
|
<gui>
|
|
<window text="Sprite Properties" id="sprite_properties">
|
|
<box vertical="true">
|
|
<box horizontal="true">
|
|
<grid columns="2" expansive="true">
|
|
|
|
<label text="File name:" />
|
|
<entry text="" id="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" />
|
|
|
|
<label text="Type:" />
|
|
<label text="" id="type" />
|
|
|
|
<label text="Size:" />
|
|
<label text="" id="size" />
|
|
|
|
<label text="Frames:" />
|
|
<label text="" id="frames" />
|
|
|
|
<label text="Transparent Color:" />
|
|
<box horizontal="true" id="box_transparent" tooltip="Palette entry used as transparent color in each layer (only for indexed images)." />
|
|
</grid>
|
|
</box>
|
|
<separator horizontal="true" />
|
|
<box horizontal="true">
|
|
<box horizontal="true" expansive="true" />
|
|
<button text="&OK" closewindow="true" id="ok" magnet="true" width="60" />
|
|
<button text="&Cancel" closewindow="true" id="cancel" width="60" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</gui>
|