INTERACT FORUM

Windows => Third Party Plug-ins, Programs, and Skins => Topic started by: leezer3 on December 21, 2010, 06:56:23 pm

Title: New Theatre View Skin- Oxygen
Post by: leezer3 on December 21, 2010, 06:56:23 pm
Introduction
Oxygen is a Theatre View skin, which I've heavily based upon the Oxygen theme for KDE, and from which most of the icons have been taken.

Something I've noticed about practically all the skins to dates, is that they're all too similar, with no icons on the main menu or anything else. This is a small step towards rectifying that :)
(http://i54.tinypic.com/2ufrdvp.jpg)

Please read these notes before downloading or installing this skin, it's a little different, and may require some work to customise it to your requirements :)

Code: [Select]
<Item Bitmap="Pictures\Example.png" Location="Example" Rect="40,25,70,65" Alpha="70" Alignment="3" />
Title: Re: New Theatre View Skin- Oxygen
Post by: JimH on December 21, 2010, 07:34:47 pm
Thanks, Leezer.
Title: Re: New Theatre View Skin- Oxygen
Post by: rick.ca on December 21, 2010, 09:29:21 pm
Thanks, Leezer.

Quote
Rect="40,25,70,65"

For those unfamiliar, Rect="X1, Y1, X2, Y2" defines a rectangle on the display by reference to it's upper left and lower right corners, where both the width and height of the display are measured on a scale of 100. The image will be stretched to fit the specified rectangle.

This is for a "standard" 4:3 display...Because the images are square, 70-40:65-25 = 30:40 = 3:4. For displays with a different aspect, these need to be changed. For 16:10, it might be "40,25,65,65," as 65-40:65-25 = 25:40 = 10:16. Or to generalize, multiply the image aspect by the inverse of the display aspect to determine the required aspect of the position rectangle. :P