mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
bb4faca1d1
This new ui::Style should finally replace the old app::skin::SkinStyle class. At this moment both implementations are working to avoid an huge refactor in just one commit. - Added new ui::Style property in ui::Widget. - Removed old code to set the button "bevel" (removed app::setup_bevels() functions). - Removed setup_look() function and Left/RightButtonLooks. - Removed check_button_new() function. - Removed ui::Theme::paintButton/ComboBoxButton() functions.
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<!-- Aseprite -->
|
|
<!-- Copyright (C) 2001-2017 by David Capello -->
|
|
<gui>
|
|
<window id="file_selector" text="">
|
|
<vbox id="main">
|
|
<box horizontal="true">
|
|
<box horizontal="true" noborders="true">
|
|
<button text="" id="go_back_button" style="go_back_button" tooltip="@.go_back_button_tooltip" />
|
|
<button text="" id="go_forward_button" style="go_forward_button" tooltip="@.go_forward_button_tooltip" />
|
|
</box>
|
|
<button text="" id="go_up_button" style="go_up_button" tooltip="@.go_up_button_tooltip" />
|
|
<button text="" id="new_folder_button" style="new_folder_button" tooltip="@.new_folder_button_tooltip" />
|
|
<combobox id="location" expansive="true" />
|
|
</box>
|
|
<vbox id="file_view_placeholder" expansive="true" />
|
|
<grid columns="2">
|
|
<label text="@.file_name" />
|
|
<box id="file_name_placeholder" cell_align="horizontal" />
|
|
|
|
<label text="@.file_type" />
|
|
<hbox cell_align="horizontal">
|
|
<combobox id="file_type" minwidth="70" />
|
|
<vbox>
|
|
<boxfiller />
|
|
<link id="extra_options" text="" />
|
|
<boxfiller />
|
|
</vbox>
|
|
<boxfiller />
|
|
<box horizontal="true" homogeneous="true">
|
|
<button text="@general.ok" closewindow="true" id="ok" magnet="true" width="60" />
|
|
<button text="@general.cancel" closewindow="true" id="cancel" />
|
|
</box>
|
|
</hbox>
|
|
</grid>
|
|
</vbox>
|
|
</window>
|
|
</gui>
|