mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +00:00
df0104734f
Fixed some bugs in the GUI system. Added tabs, and removed the list-menu.
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2005, 2007 by David A. Capello -->
|
|
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
|
|
<window text="Draw Text" name="drawtext_window">
|
|
<box vertical>
|
|
<box horizontal>
|
|
<box vertical homogeneous>
|
|
<label text="Font:" />
|
|
<label text="Size:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<button text="" name="font" />
|
|
<entry maxsize=8 name="size"/>
|
|
</box>
|
|
</box>
|
|
<!-- <label text="Fixed Size:" /> -->
|
|
<!-- <view expansive> -->
|
|
<!-- <listbox /> -->
|
|
<!-- </view> -->
|
|
<separator horizontal />
|
|
<box horizontal>
|
|
<box vertical homogeneous>
|
|
<label text="Text:" />
|
|
<label text="Color:" />
|
|
</box>
|
|
<box vertical homogeneous expansive name="color_box">
|
|
<entry maxsize=256 name="text" expansive />
|
|
</box>
|
|
</box>
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="ok" magnetic />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</window>
|