<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to font</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/font/</link><description>Recent changes to font</description><atom:link href="https://sourceforge.net/p/maxguistylesheet/wiki/font/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 15 Oct 2013 10:17:03 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/maxguistylesheet/wiki/font/feed" rel="self" type="application/rss+xml"/><item><title>font modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/font/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -1,4 +1,5 @@
-[&amp;lt;BACK](Home)
+[&amp;lt;-BACK](Home)
+- - -
 **FONTS ARE CURRENTLY NOT IMPLEMENTED**

 Due to an issue obtaining the current font for a gadget there is no way to make a change to the font without completely replacing it.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 10:17:03 -0000</pubDate><guid>https://sourceforge.net7216d5fdfba822650127daf7783015eda2335d47</guid></item><item><title>font modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/font/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -0,0 +1,6 @@
+[&amp;lt;BACK](Home)
+**FONTS ARE CURRENTLY NOT IMPLEMENTED**
+
+Due to an issue obtaining the current font for a gadget there is no way to make a change to the font without completely replacing it.
+
+There are a couple of test versions that implement it to various degrees and it will be released as soon as it is stable.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 10:14:58 -0000</pubDate><guid>https://sourceforge.net991928cb5712ce60668be9988bbf787661686fb8</guid></item><item><title>StyleIndex modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/StyleIndex/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,193 +0,0 @@
-
-Syntax
-A Style is created from two parts, a Selector and a declaration group.
-
-A selector identifies the element within the page that you wish to style and the declaration group is the style that will be deployed. A declaration group is contains in brackets "{}".
-
-Each declaration consists of a property and it's value and there can be several declarations in a declaration group separated by a semicolon.
-
-The example below will style all Text Fields and consists of three declarations: border, background colour and text colour.
-
-textfield {border:solid;background-color:#33ffff;color:#000000;}
-Comments
-Comments within a stylesheet are lines beginning with a forwardslash "/" for example:
-
-//Default Text Field Style
-textfield {border:solid;background-color:#33ffff;color:#000000;}
-
-##########################################################
-#summary One-sentence summary of this page.
-#sidebar StylesheetIndex
-
-=Selectors=
-
-Selectors identify the element that is to be styled and can comprise of a _Element_, an object _Name_ or an object _Extra_. Additionally styles can be assigned at _Platform_ level if required.
-
-||{{{*}}}||Default style applied to all objects||
-||{{{}}}||Style applied to all objects of an element||
-||{{{~}}}||Style applied to platform (windows,, mac or linux)||
-||{{{#}}}||Style applied to object with unique name||
-||{{{.}}}||Style applied to all objects with this "Extra" name||
-
-==Element==
-An element is the object type of a MaxGUI gadget equivalent to the value returned by gadgetClass().
-
-All the standard elements and any that are created in the future are supported simply by including their gadgetClass. The standard ones are:
-
- * button
- * combobox
- * desktop
- * htmlview
- * label
- * listbox
- * menuitem
- * node
- * panel
- * progbar
- * slider
- * tabber
- * textarea
- * textfield
- * toolbar
- * treeview
- * window
-
-==Platform==
-
-As of Version 1.0 there are three platforms defined, _Linux_, _Mac_ and _Windows_. These can be identified in your stylesheet prefixed with the Tilde character.
-
-Platform selectors can be used in the following ways:
-{{{
-~windows#name
-~windows#name.extra
-~windows.extra
-textfield~windows {}
-textfield~windows#name {}
-textfield~windows#name.extra {}
-}}}
-
-==Name==
-
-Name is identified in the selector by use of a hash sigh "#" and represents the unique gadget.name property of a !MaxGui gadget.
-
-==Extra==
-
-Extra is identified in the selector by use of a period "." and represents a string of the gadget.extra property of a !MaxGui gadget.
-
-#summary One-sentence summary of this page.
-#sidebar StylesheetIndex
-
-= Stylesheet =
-
-[StyleIndex]
-
-
-
-==Selectors==
-||{{{*}}}||Default style applied to all objects||
-||{{{}}}||Style applied to all objects of an element||
-||{{{~}}}||Style applied to platform (windows,, mac or linux)||
-||{{{#}}}||Style applied to object with unique name||
-||{{{.}}}||Style applied to all objects with this "Extra" name||
-
-Selectors must be applied in order to enable them, however they do not all need to be included. For example the following selectors are all valid:
-{{{
-* {}
-textarea~linux {}
-textarea#username {}
-#username.central {}
-}}}
-
-==Plaforms==
-*linux
-*mac
-*windows
-
-==Element types==
-Element types are MaxGui Gadgetclass() types. These can be extended simply by including them in your stylesheet.
-*desktop
-*window
-*button
-*panel
-*textfield
-*textarea
-*combobox
-*listbox
-*toolbar
-*tabber
-*treeview
-*htmlview
-*label
-*slider
-*progbar
-*menuitem
-*node
-
-==Styles==
-===background-color:===
-||{{{"#"}}}||Standard Red-Green-Blue format||
-||{{{"#"}}}||Shorthand 3-digit Reg-Green-Blue||
-||{{{WINDOWBG}}}||Operating system Window Background colour||
-||{{{GADGETBG}}}||Operating system Gadget Background colour||
-||{{{GADGETFG}}}||Operating system Gadget Foreground colour||
-||{{{SELECTIONBG}}}||Operating system Selection Background colour||
-||{{{LINKFG}}}||Operating system Link Foreground colour||
-
-*Example:*
-{{{
-textfield {
-  background-color:#3333ff;
-}
-}}}
-
-===border:===
-This is Windows Only and uses grables SetGadgetBorder() function
-||none||Default||
-||threed||Three-d border||
-||solid||Solid line||
-
-*Example:*
-{{{
-textfield {
-  border:#solid;
-}
-}}}
-
-===color:===
-Sets the Foreground (Text) colour of an element
-   "#" 
-   "#"
-   WINDOWBG
-   GADGETBG
-   GADGETFG
-   SELECTIONBG
-   LINKFG 
-
-===enabled===
-   "true"      (default)
-   "false"
-
-===height===
-   (px)
-
-===left===
-   (px)
-===opacity===
-   A number from 0.0 to 1.0 (Default)
-===posiiton===
-Set gadget layout, each value can be CENTER,ALIGN,RELATIVE
-   
-   bottom&gt;,&lt;leftright&gt;
-   ,,,
-===top===
-   (px)
-===visibility===
-   "visible"   (default)
-   "hidden"
-===width===
-   (px)
-
-===bottom===
-   (px)
-===right===
-   (px)
&lt;/leftright&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 10:11:46 -0000</pubDate><guid>https://sourceforge.nete9b91a5b203945489c650f00729f5eb0ec40af05</guid></item><item><title>StyleIndex modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/StyleIndex/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,4 +1,3 @@
-

 Syntax
 A Style is created from two parts, a Selector and a declaration group.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 08:49:50 -0000</pubDate><guid>https://sourceforge.netc1ee99d8c3b1414d66d731843b5682fbe2da38d0</guid></item><item><title>StyleIndex modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/StyleIndex/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,49 +1,4 @@
-#summary One-sentence summary of this page.

- * [Download]
- * [Installation]
-
-==Basics==
- * [Stylesheet Stylesheet Syntax]
- * [Selectors]
- * [HowTo How to use it]
-
-==Styling==
- * [Border] - Windows ONLY
- * [Text]
-
-==Advanced==
- * [Display]
- * [Positioning]
- * [Align]
- * [Opacity]
-
-==Examples==
- * Examples
-
-==References==
- * [Reference]
- * [Selectors]
- * [Fonts]
- * [Colors]
- * [ColorValues Color Values]
- * [ColorNames Color Names]
- * [ColorHEX Color HEX]
-
-==Developer==
- * [About]
- * [ChangeLog Change Log]
-
-
-
-################################################
-Installation
-Currently this project is an Include, but later it will become a module.
-
-Details
-Copy the downloaded files to maxgui.stylesheet folder within your project folder and include the following in your project to use it.
-
-include "maxgui.stylesheet\stylesheet.bmx"

 Syntax
 A Style is created from two parts, a Selector and a declaration group.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 08:17:22 -0000</pubDate><guid>https://sourceforge.netd0411a1c17dbcc1790cacbe4eb9bfc40f6af1116</guid></item><item><title>StyleIndex modified by Si Dunford</title><link>https://sourceforge.net/p/maxguistylesheet/wiki/StyleIndex/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="summary-one-sentence-summary-of-this-page"&gt;summary One-sentence summary of this page.&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;[Download]&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;[Installation]&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;==Basics==&lt;br /&gt;
 * &lt;span&gt;[Stylesheet Stylesheet Syntax]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Selectors]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[HowTo How to use it]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;==Styling==&lt;br /&gt;
 * &lt;span&gt;[Border]&lt;/span&gt; - Windows ONLY&lt;br /&gt;
 * &lt;span&gt;[Text]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;==Advanced==&lt;br /&gt;
 * &lt;span&gt;[Display]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Positioning]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Align]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Opacity]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;==Examples==&lt;br /&gt;
 * Examples&lt;/p&gt;
&lt;p&gt;==References==&lt;br /&gt;
 * &lt;span&gt;[Reference]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Selectors]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Fonts]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[Colors]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[ColorValues Color Values]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[ColorNames Color Names]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[ColorHEX Color HEX]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;==Developer==&lt;br /&gt;
 * &lt;span&gt;[About]&lt;/span&gt;&lt;br /&gt;
 * &lt;span&gt;[ChangeLog Change Log]&lt;/span&gt;&lt;/p&gt;
&lt;h6&gt;&lt;/h6&gt;
&lt;p&gt;Installation&lt;br /&gt;
Currently this project is an Include, but later it will become a module.&lt;/p&gt;
&lt;p&gt;Details&lt;br /&gt;
Copy the downloaded files to maxgui.stylesheet folder within your project folder and include the following in your project to use it.&lt;/p&gt;
&lt;p&gt;include "maxgui.stylesheet\stylesheet.bmx"&lt;/p&gt;
&lt;p&gt;Syntax&lt;br /&gt;
A Style is created from two parts, a Selector and a declaration group.&lt;/p&gt;
&lt;p&gt;A selector identifies the element within the page that you wish to style and the declaration group is the style that will be deployed. A declaration group is contains in brackets "{}".&lt;/p&gt;
&lt;p&gt;Each declaration consists of a property and it's value and there can be several declarations in a declaration group separated by a semicolon.&lt;/p&gt;
&lt;p&gt;The example below will style all Text Fields and consists of three declarations: border, background colour and text colour.&lt;/p&gt;
&lt;p&gt;textfield {border:solid;background-color:#33ffff;color:#000000;}&lt;br /&gt;
Comments&lt;br /&gt;
Comments within a stylesheet are lines beginning with a forwardslash "/" for example:&lt;/p&gt;
&lt;p&gt;//Default Text Field Style&lt;br /&gt;
textfield {border:solid;background-color:#33ffff;color:#000000;}&lt;/p&gt;
&lt;h6&gt;&lt;/h6&gt;
&lt;h1 id="summary-one-sentence-summary-of-this-page_1"&gt;summary One-sentence summary of this page.&lt;/h1&gt;
&lt;h1 id="sidebar-stylesheetindex"&gt;sidebar StylesheetIndex&lt;/h1&gt;
&lt;p&gt;=Selectors=&lt;/p&gt;
&lt;p&gt;Selectors identify the element that is to be styled and can comprise of a &lt;em&gt;Element&lt;/em&gt;, an object &lt;em&gt;Name&lt;/em&gt; or an object &lt;em&gt;Extra&lt;/em&gt;. Additionally styles can be assigned at &lt;em&gt;Platform&lt;/em&gt; level if required.&lt;/p&gt;
&lt;p&gt;||{{{*}}}||Default style applied to all objects||&lt;br /&gt;
||{{{}}}||Style applied to all objects of an element||&lt;br /&gt;
||{{{~}}}||Style applied to platform (windows,, mac or linux)||&lt;br /&gt;
||{{{#}}}||Style applied to object with unique name||&lt;br /&gt;
||{{{.}}}||Style applied to all objects with this "Extra" name||&lt;/p&gt;
&lt;p&gt;==Element==&lt;br /&gt;
An element is the object type of a MaxGUI gadget equivalent to the value returned by gadgetClass().&lt;/p&gt;
&lt;p&gt;All the standard elements and any that are created in the future are supported simply by including their gadgetClass. The standard ones are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;button&lt;/li&gt;
&lt;li&gt;combobox&lt;/li&gt;
&lt;li&gt;desktop&lt;/li&gt;
&lt;li&gt;htmlview&lt;/li&gt;
&lt;li&gt;label&lt;/li&gt;
&lt;li&gt;listbox&lt;/li&gt;
&lt;li&gt;menuitem&lt;/li&gt;
&lt;li&gt;node&lt;/li&gt;
&lt;li&gt;panel&lt;/li&gt;
&lt;li&gt;progbar&lt;/li&gt;
&lt;li&gt;slider&lt;/li&gt;
&lt;li&gt;tabber&lt;/li&gt;
&lt;li&gt;textarea&lt;/li&gt;
&lt;li&gt;textfield&lt;/li&gt;
&lt;li&gt;toolbar&lt;/li&gt;
&lt;li&gt;treeview&lt;/li&gt;
&lt;li&gt;window&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;==Platform==&lt;/p&gt;
&lt;p&gt;As of Version 1.0 there are three platforms defined, &lt;em&gt;Linux&lt;/em&gt;, &lt;em&gt;Mac&lt;/em&gt; and &lt;em&gt;Windows&lt;/em&gt;. These can be identified in your stylesheet prefixed with the Tilde character.&lt;/p&gt;
&lt;p&gt;Platform selectors can be used in the following ways:&lt;br /&gt;
{{{&lt;br /&gt;
~windows#name&lt;br /&gt;
~windows#name.extra&lt;br /&gt;
~windows.extra&lt;br /&gt;
textfield~windows {}&lt;br /&gt;
textfield~windows#name {}&lt;br /&gt;
textfield~windows#name.extra {}&lt;br /&gt;
}}}&lt;/p&gt;
&lt;p&gt;==Name==&lt;/p&gt;
&lt;p&gt;Name is identified in the selector by use of a hash sigh "#" and represents the unique gadget.name property of a !MaxGui gadget.&lt;/p&gt;
&lt;p&gt;==Extra==&lt;/p&gt;
&lt;p&gt;Extra is identified in the selector by use of a period "." and represents a string of the gadget.extra property of a !MaxGui gadget.&lt;/p&gt;
&lt;h1 id="summary-one-sentence-summary-of-this-page_2"&gt;summary One-sentence summary of this page.&lt;/h1&gt;
&lt;h1 id="sidebar-stylesheetindex_1"&gt;sidebar StylesheetIndex&lt;/h1&gt;
&lt;p&gt;= Stylesheet =&lt;/p&gt;
&lt;p&gt;&lt;a class="alink" href="/p/maxguistylesheet/wiki/StyleIndex/"&gt;[StyleIndex]&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;==Selectors==&lt;br /&gt;
||{{{*}}}||Default style applied to all objects||&lt;br /&gt;
||{{{}}}||Style applied to all objects of an element||&lt;br /&gt;
||{{{~}}}||Style applied to platform (windows,, mac or linux)||&lt;br /&gt;
||{{{#}}}||Style applied to object with unique name||&lt;br /&gt;
||{{{.}}}||Style applied to all objects with this "Extra" name||&lt;/p&gt;
&lt;p&gt;Selectors must be applied in order to enable them, however they do not all need to be included. For example the following selectors are all valid:&lt;br /&gt;
{{{&lt;br /&gt;
* {}&lt;br /&gt;
textarea~linux {}&lt;br /&gt;
textarea#username {}&lt;/p&gt;
&lt;h1 id="usernamecentral"&gt;username.central {}&lt;/h1&gt;
&lt;p&gt;}}}&lt;/p&gt;
&lt;p&gt;==Plaforms==&lt;br /&gt;
&lt;em&gt;linux&lt;br /&gt;
&lt;/em&gt;mac&lt;br /&gt;
*windows&lt;/p&gt;
&lt;p&gt;==Element types==&lt;br /&gt;
Element types are MaxGui Gadgetclass() types. These can be extended simply by including them in your stylesheet.&lt;br /&gt;
&lt;em&gt;desktop&lt;br /&gt;
&lt;/em&gt;window&lt;br /&gt;
&lt;em&gt;button&lt;br /&gt;
&lt;/em&gt;panel&lt;br /&gt;
&lt;em&gt;textfield&lt;br /&gt;
&lt;/em&gt;textarea&lt;br /&gt;
&lt;em&gt;combobox&lt;br /&gt;
&lt;/em&gt;listbox&lt;br /&gt;
&lt;em&gt;toolbar&lt;br /&gt;
&lt;/em&gt;tabber&lt;br /&gt;
&lt;em&gt;treeview&lt;br /&gt;
&lt;/em&gt;htmlview&lt;br /&gt;
&lt;em&gt;label&lt;br /&gt;
&lt;/em&gt;slider&lt;br /&gt;
&lt;em&gt;progbar&lt;br /&gt;
&lt;/em&gt;menuitem&lt;br /&gt;
*node&lt;/p&gt;
&lt;p&gt;==Styles==&lt;br /&gt;
===background-color:===&lt;br /&gt;
||{{{"#"}}}||Standard Red-Green-Blue format||&lt;br /&gt;
||{{{"#"}}}||Shorthand 3-digit Reg-Green-Blue||&lt;br /&gt;
||{{{WINDOWBG}}}||Operating system Window Background colour||&lt;br /&gt;
||{{{GADGETBG}}}||Operating system Gadget Background colour||&lt;br /&gt;
||{{{GADGETFG}}}||Operating system Gadget Foreground colour||&lt;br /&gt;
||{{{SELECTIONBG}}}||Operating system Selection Background colour||&lt;br /&gt;
||{{{LINKFG}}}||Operating system Link Foreground colour||&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Example:&lt;/em&gt;&lt;br /&gt;
{{{&lt;br /&gt;
textfield {&lt;br /&gt;
  background-color:#3333ff;&lt;br /&gt;
}&lt;br /&gt;
}}}&lt;/p&gt;
&lt;p&gt;===border:===&lt;br /&gt;
This is Windows Only and uses grables SetGadgetBorder() function&lt;br /&gt;
||none||Default||&lt;br /&gt;
||threed||Three-d border||&lt;br /&gt;
||solid||Solid line||&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Example:&lt;/em&gt;&lt;br /&gt;
{{{&lt;br /&gt;
textfield {&lt;br /&gt;
  border:#solid;&lt;br /&gt;
}&lt;br /&gt;
}}}&lt;/p&gt;
&lt;p&gt;===color:===&lt;br /&gt;
Sets the Foreground (Text) colour of an element&lt;br /&gt;
    "#" &lt;br /&gt;
    "#"&lt;br /&gt;
    WINDOWBG&lt;br /&gt;
    GADGETBG&lt;br /&gt;
    GADGETFG&lt;br /&gt;
    SELECTIONBG&lt;br /&gt;
    LINKFG &lt;/p&gt;
&lt;p&gt;===enabled===&lt;br /&gt;
    "true"      (default)&lt;br /&gt;
    "false"&lt;/p&gt;
&lt;p&gt;===height===&lt;br /&gt;
    (px)&lt;/p&gt;
&lt;p&gt;===left===&lt;br /&gt;
    (px)&lt;br /&gt;
===opacity===&lt;br /&gt;
    A number from 0.0 to 1.0 (Default)&lt;br /&gt;
===posiiton===&lt;br /&gt;
Set gadget layout, each value can be CENTER,ALIGN,RELATIVE&lt;br /&gt;
&lt;br /&gt;
    bottom&gt;,&lt;leftright&gt;&lt;br /&gt;
    ,,,&lt;br /&gt;
===top===&lt;br /&gt;
    (px)&lt;br /&gt;
===visibility===&lt;br /&gt;
    "visible"   (default)&lt;br /&gt;
    "hidden"&lt;br /&gt;
===width===&lt;br /&gt;
    (px)&lt;/leftright&gt;&lt;/p&gt;
&lt;p&gt;===bottom===&lt;br /&gt;
    (px)&lt;br /&gt;
===right===&lt;br /&gt;
    (px)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Si Dunford</dc:creator><pubDate>Tue, 15 Oct 2013 07:48:18 -0000</pubDate><guid>https://sourceforge.net86e9eb2dedc81c7a568d26cb97b93b02cc2b4600</guid></item></channel></rss>