File: options.xml

package info (click to toggle)
aseprite 1.0.5%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,504 kB
  • ctags: 18,296
  • sloc: cpp: 84,144; ansic: 49,119; xml: 1,971; objc: 1,211; asm: 117; makefile: 45
file content (103 lines) | stat: -rw-r--r-- 4,090 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!-- Aseprite -->
<!-- Copyright (C) 2001-2014 by David Capello -->
<gui>
  <window id="options" text="Options">
  <vbox>
    <hbox>
      <view maxsize="true">
        <listbox id="section_listbox">
          <listitem text="General" value="section_general" />
          <listitem text="Editor" value="section_editor" />
          <listitem text="Grid &amp;&amp; Background" value="section_grid" />
          <listitem text="Undo" value="section_undo" />
          <listitem text="Experimental" value="section_experimental" />
        </listbox>
      </view>

      <panel id="panel">
        <vbox id="section_general">
          <separator text="General" horizontal="true" />
          <hbox>
            <label text="Screen Scale:" />
            <combobox id="screen_scale" />
          </hbox>
          <check text="Show timeline automatically" id="autotimeline" tooltip="Show the timeline automatically&#10;when a new frame or layer is added." />
          <separator horizontal="true" />
          <link id="locate_file" text="Locate Configuration File" />
          <link id="locate_crash_folder" text="Locate Crash Folder" />
        </vbox>

        <!-- Editor -->
        <vbox id="section_editor">
          <separator text="Editor" horizontal="true" />
          <check text="Zoom with Scroll Wheel" id="wheel_zoom" />
          <check text="Show scroll-bars in sprite editor" id="show_scrollbars" tooltip="Show scroll-bars in all sprite editors." />
          <hbox>
            <label text="Right-click:" />
            <combobox id="right_click_behavior" expansive="true" />
          </hbox>
          <hbox>
            <label text="Cursor Color:" />
            <box id="cursor_color_box" /><!-- custom widget -->
          </hbox>
        </vbox>

        <!-- Grid & background -->
        <vbox id="section_grid">
          <separator text="Grid" horizontal="true" />
          <grid columns="2">
            <label text="Grid Color:" />
            <box id="grid_color_box" /><!-- custom widget -->

            <label text="Pixel Grid:" />
            <box id="pixel_grid_color_box" /><!-- custom widget -->
          </grid>

          <separator text="Checked Background" horizontal="true" />
          <box horizontal="true">
            <label text="Size:" />
            <combobox id="checked_bg_size" expansive="true" />
          </box>
          <check text="Apply Zoom" id="checked_bg_zoom" />
          <grid columns="2">
            <label text="Color 1" />
            <box horizontal="true" id="checked_bg_color1_box" />
            <label text="Color 2" />
            <box horizontal="true" id="checked_bg_color2_box" />
          </grid>
          <button id="checked_bg_reset" text="Reset" />
        </vbox>

        <!-- Undo -->
        <vbox id="section_undo">
          <separator text="Undo" horizontal="true" />
          <box horizontal="true">
            <label text="Undo Limit:" />
            <entry id="undo_size_limit" maxsize="4" tooltip="Limit of memory to be used&#10;for undo information per sprite.&#10;Specified in megabytes." />
            <label text="MB" />
          </box>

          <box horizontal="true">
            <check id="undo_goto_modified" text="Go to modified frame/layer" tooltip="When it's enabled each time you undo/redo&#10;the current frame &amp; layer will be modified&#10;to focus the undid/redid change." />
          </box>
        </vbox>

        <!-- Experimental -->
        <vbox id="section_experimental">
          <separator text="User Interface" horizontal="true" />
          <check id="native_cursor" text="Use native mouse cursor" />
        </vbox>

      </panel>
    </hbox>
    <separator horizontal="true" />
    <hbox>
      <boxfiller />
      <hbox homogeneous="true">
        <button text="&amp;OK" closewindow="true" id="button_ok" magnet="true" width="60" />
        <button text="&amp;Cancel" closewindow="true" />
      </hbox>
    </hbox>
  </vbox>
  </window>
</gui>