summaryrefslogtreecommitdiff
path: root/docs/xml/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2014-12-13 22:02:46 +0000
committerGraeme Geldenhuys <graemeg@gmail.com>2014-12-13 22:07:15 +0000
commit9de6b744a42653daec7f8499ab6855072f09f6a6 (patch)
tree1c07762bfe6e99d34b558c158a1bfc340e6a227f /docs/xml/corelib
parentd173baebc3d3c695ba90763d9a0e175770105650 (diff)
downloadfpGUI-9de6b744a42653daec7f8499ab6855072f09f6a6.tar.xz
docs: Correctly documentation about TfpgColor type
Diffstat (limited to 'docs/xml/corelib')
-rw-r--r--docs/xml/corelib/fpg_base.xml30
1 files changed, 15 insertions, 15 deletions
diff --git a/docs/xml/corelib/fpg_base.xml b/docs/xml/corelib/fpg_base.xml
index 2b60ae90..32d68ac4 100644
--- a/docs/xml/corelib/fpg_base.xml
+++ b/docs/xml/corelib/fpg_base.xml
@@ -23,30 +23,30 @@ of fpGUI. It also defines many types and constants used throughout the toolkit.
defined in this unit.
</p>
</descr>
- <!-- alias type Visibility: default -->
- <element name="TfpgCoord">
- <short>A custom type used to represent X and Y coordinates.</short>
- <descr>Internally TfpgCoord is actually a Integer type. We created a custom
+
+<element name="TfpgCoord">
+<short>A custom type used to represent X and Y coordinates.</short>
+<descr>Internally TfpgCoord is actually a Integer type. We created a custom
alias type for use in fpGUI in the event that we might want to change the
underlying type in the future. Example to floating points.
</descr>
- <seealso/>
- </element>
- <!-- alias type Visibility: default -->
- <element name="TfpgColor">
- <short>Represents a color in integer format.</short>
- <descr>
- <p>TfpgColor is always in RRGGBB (Red, Green, Blue) format, no matter the
+</element>
+
+<element name="TfpgColor">
+<short>Represents a color in integer format.</short>
+<descr>
+<p>TfpgColor is always in AARRGGBB (Alpha, Red, Green, Blue) format, no matter the
operating system.
</p>
- <p>The <var>fpg_base</var> unit also contains definitions of many useful color
+<p>The <var>fpg_base</var> unit also contains definitions of many useful color
constants. It defines the standard predefined Delphi colors (like clRed,
clMagenta etc.), the 140 web safe colors using the defacto standard names as
used by Netscape and Internet Explorer web browsers. As well as some internal
color constants used by many GUI components (like clText, clWindowBackground
-etc.).
-</p>
-</descr>
+etc.).</p></descr>
+<seealso>
+<link id="fpg_base.TRGBTriple">TRGBTriple</link>
+</seealso>
</element>
<element name="TRGBTriple">