aseprite/data/widgets/cel_properties.xml
David Capello 02e8c66da4 Remove signals and hooks in GUI code.
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.
2012-06-15 23:37:59 -03:00

27 lines
861 B
XML

<!-- ASEPRITE -->
<!-- Copyright (C) 2001-2012 by David Capello -->
<gui>
<window text="Cel Properties" id="cel_properties">
<grid columns="2">
<label text="Frame:" />
<label id="frame" />
<label text="Position: " />
<label id="pos" readonly="true" tooltip="X axis, Y axis" />
<label text="Dimension:" />
<label id="size" readonly="true" tooltip="Width x Height (Memory size)" />
<label text="Opacity:" />
<slider min="0" max="255" id="opacity" cell_align="horizontal" width="128" />
<separator horizontal="true" cell_hspan="2" />
<box horizontal="true" homogeneous="true" cell_hspan="2" cell_align="right">
<button text="&amp;OK" closewindow="true" id="ok" magnet="true" minwidth="60" />
<button text="&amp;Cancel" closewindow="true" />
</box>
</grid>
</window>
</gui>