summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2015-03-18 08:36:24 +0000
committerGraeme Geldenhuys <graemeg@gmail.com>2015-03-18 10:39:40 +0000
commitdf9cb36458f781c55dad14351a224ea84bf90ebe (patch)
tree3aab5a9a036542f84980fa8dc991ed62d38f7c5e
parentd72f3b73f6f55e77eb69cdf55b5771edaa1d0b15 (diff)
downloadfpGUI-df9cb36458f781c55dad14351a224ea84bf90ebe.tar.xz
documentation for newly added methods in fpgApplication
-rw-r--r--docs/xml/corelib/fpg_main.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/docs/xml/corelib/fpg_main.xml b/docs/xml/corelib/fpg_main.xml
index e3945fed..654cd763 100644
--- a/docs/xml/corelib/fpg_main.xml
+++ b/docs/xml/corelib/fpg_main.xml
@@ -29,7 +29,7 @@
</element>
<element name="fpgColorToRGB">
<short>Convert a color to the RGB values of that color</short>
- <descr><printshort id="fpgColorToRGB"/>. Not all <link id="fpg_base.TfpgColor">TfpgColor</link> values are in RGB format.
+ <descr><printshort id="fpgColorToRGB"/>. Not all <link id="fpg_base.TfpgColor">TfpgColor</link> values are in RGB format.
For example, you get "named" colors too (eg: clWindowBackground), which
is simply an index value, but later translated to a real RGB value via the theming system.</descr>
</element>
@@ -91,6 +91,20 @@ planned.</p></descr>
<short>fake</short>
</element>
+<element name="TfpgApplication.GetFormByClassName">
+<short>Finds a form instance by its ClassName property</short>
+<descr><printshort id="TfpgApplication.GetFormByClassName"/>. This only works if the form has
+been created with <var>fpgApplication.CreateForm()</var>. If no form is found, then nil is
+returned.</descr>
+</element>
+
+<element name="TfpgApplication.GetFormByName">
+<short>Finds a form instance by its Name property</short>
+<descr><printshort id="TfpgApplication.GetFormByName"/>. This only works if the form has
+been created with <var>fpgApplication.CreateForm()</var>. If no form is found, then nil is
+returned.</descr>
+</element>
+
<element name="TfpgTimer">
<short>A timer component for fpGUI applications</short>