Project

General

Profile

unexist.dev

subtle

Assorted tidbits and projects

Gravity » History » Version 23

Anonymous, 05/14/2011 12:07 AM

1 23
h1. Gravity\015\012\015\012{{>toc}}\015\012\015\012[[subtle]] uses a configureable grid system for window placement and the window slots inside of this grid are called [[gravity]].\015\012\015\012h2. Values\015\012\015\012[[Gravity|Gravities]] are percentage values of the used [[screen]] and work [[view]]-wise for assigned [[tagging|tag]]. They consist of four values:\015\012\015\012* *X* for placement in X direction\015\012* *Y* for placement in Y direction\015\012* *WIDTH* for window width\015\012* *HEIGHT* for window height\015\012\015\012Each value is a percentage value of the screen width and height, that ensures that the same [[gravity|gravities]] work on any [[screen]].\015\012\015\012h2. Examples\015\012\015\012h3. Center\015\012\015\012<pre><code class="ruby">gravity :center, [ 25, 25, 50, 50 ]</code></pre>\015\012\015\012\015\012<pre>+---------+\015\012|         |\015\012| +-----+ |\015\012| |     | |\015\012| +-----+ |\015\012|         |\015\012+---------+</pre>\015\012\015\012h3. Top left\015\012\015\012<pre><code class="ruby">gravity :center, [ 0, 0, 50, 50 ]</code></pre>\015\012\015\012<pre>+----+----+\015\012|    |    |\015\012|    |    |\015\012+----+    |\015\012|         |\015\012|         |\015\012+---------+</pre>\015\012\015\012h3. Bottom\015\012\015\012<pre><code class="ruby">gravity :center, [ 0, 0, 50, 50 ]</code></pre>\015\012\015\012<pre>+---------+\015\012|         |\015\012|         |\015\012+---------+\015\012|         |\015\012|         |\015\012+---------+</pre>\015\012