File: cube.xml

package info (click to toggle)
wayfire 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,764 kB
  • sloc: cpp: 52,464; xml: 2,987; ansic: 699; makefile: 161
file content (126 lines) | stat: -rw-r--r-- 3,825 bytes parent folder | download | duplicates (2)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0"?>
<wayfire>
	<plugin name="cube">
		<_short>Cube</_short>
		<_long>A plugin to show the current workspace row as a cube.</_long>
		<category>Desktop</category>
		<!-- Bindings -->
		<group>
			<_short>Bindings</_short>
			<_long>Sets the cube bindings.</_long>
			<option name="activate" type="activator">
				<_short>Activate</_short>
				<_long>Activates the cube with the specified button.</_long>
				<default>&lt;ctrl&gt; &lt;alt&gt; BTN_LEFT</default>
			</option>
			<option name="rotate_left" type="activator">
				<_short>Rotate left</_short>
				<_long>Rotates left with the specified activator.</_long>
				<default>none</default>
			</option>
			<option name="rotate_right" type="activator">
				<_short>Rotate right</_short>
				<_long>Rotates right with the specified activator.</_long>
				<default>none</default>
			</option>
		</group>
		<!-- Effects -->
		<option name="deform" type="int">
			<_short>Deformation</_short>
			<_long>Specifies the deformation to be used.</_long>
			<default>0</default>
			<min>0</min>
			<max>2</max>
			<desc>
				<value>0</value>
				<_name>None</_name>
			</desc>
			<desc>
				<value>1</value>
				<_name>Cylinder</_name>
			</desc>
			<desc>
				<value>2</value>
				<_name>Star</_name>
			</desc>
		</option>
		<option name="light" type="bool">
			<_short>Use lighting</_short>
			<_long>Specifies whether to use lighting.</_long>
			<default>true</default>
		</option>
		<!-- Zoom -->
		<option name="zoom" type="double">
			<_short>Zoom</_short>
			<_long>Sets the level of zoom out.  Setting the value to **0.0** means to not zoom out.</_long>
			<default>0.1</default>
			<precision>0.01</precision>
		</option>
		<option name="initial_animation" type="animation">
			<_short>Duration</_short>
			<_long>Sets the initial animation duration in milliseconds.</_long>
			<default>350ms</default>
		</option>
		<!-- Velocity -->
		<option name="speed_zoom" type="double">
			<_short>Zoom speed</_short>
			<_long>Sets the speed factor for zooming.</_long>
			<default>0.07</default>
			<precision>0.01</precision>
		</option>
		<option name="speed_spin_horiz" type="double">
			<_short>Horizontal spin speed</_short>
			<_long>Sets the velocity of horizontal spinning.</_long>
			<default>0.02</default>
			<precision>0.01</precision>
		</option>
		<option name="speed_spin_vert" type="double">
			<_short>Vertical spin speed</_short>
			<_long>Sets the velocity of vertical spinning.</_long>
			<default>0.02</default>
			<precision>0.01</precision>
		</option>
		<!-- Background -->
		<option name="background_mode" type="string">
			<_short>Background mode</_short>
			<_long>Sets the background mode.</_long>
			<default>simple</default>
			<desc>
				<value>simple</value>
				<_name>Simple</_name>
			</desc>
			<desc>
				<value>skydome</value>
				<_name>Skydome</_name>
			</desc>
			<desc>
				<value>cubemap</value>
				<_name>Cubemap</_name>
			</desc>
		</option>
		<option name="background" type="color">
			<_short>Background color</_short>
			<_long>Sets the background color for the simple background mode.</_long>
			<default>0.1 0.1 0.1 1.0</default>
		</option>
		<!-- Skydome -->
		<option name="skydome_mirror" type="bool">
			<_short>Skydome mirror</_short>
			<_long>Specifies whether to mirror skydome.</_long>
			<default>true</default>
		</option>
		<option name="skydome_texture" type="string">
			<_short>Skydome texture</_short>
			<_long>Loads the specified texture for the skydome background mode.</_long>
			<hint>file</hint>
			<default></default>
		</option>
		<!-- Cubemap -->
		<option name="cubemap_image" type="string">
			<_short>Cubemap image</_short>
			<_long>Loads the specified image for the cubemap background mode.</_long>
			<hint>file</hint>
			<default></default>
		</option>
	</plugin>
</wayfire>