summaryrefslogtreecommitdiff
path: root/doc/classes/LinkButton.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/LinkButton.xml')
-rw-r--r--doc/classes/LinkButton.xml42
1 files changed, 6 insertions, 36 deletions
diff --git a/doc/classes/LinkButton.xml b/doc/classes/LinkButton.xml
index d13a0d7be6..82b3a90180 100644
--- a/doc/classes/LinkButton.xml
+++ b/doc/classes/LinkButton.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<class name="LinkButton" inherits="BaseButton" category="Core" version="3.0-alpha">
+<class name="LinkButton" inherits="BaseButton" category="Core" version="3.0-beta">
<brief_description>
Simple button used to represent a link to some resource
</brief_description>
@@ -11,38 +11,6 @@
<demos>
</demos>
<methods>
- <method name="get_text" qualifiers="const">
- <return type="String">
- </return>
- <description>
- Returns the text of the button.
- </description>
- </method>
- <method name="get_underline_mode" qualifiers="const">
- <return type="int" enum="LinkButton.UnderlineMode">
- </return>
- <description>
- Returns the underline mode for this button.
- </description>
- </method>
- <method name="set_text">
- <return type="void">
- </return>
- <argument index="0" name="text" type="String">
- </argument>
- <description>
- Sets the text of the button.
- </description>
- </method>
- <method name="set_underline_mode">
- <return type="void">
- </return>
- <argument index="0" name="underline_mode" type="int" enum="LinkButton.UnderlineMode">
- </argument>
- <description>
- Sets the underline mode for this button, the argument must be one of the [code]LinkButton[/code] constants (see constants section).
- </description>
- </method>
</methods>
<members>
<member name="text" type="String" setter="set_text" getter="get_text">
@@ -51,17 +19,19 @@
</member>
</members>
<constants>
- <constant name="UNDERLINE_MODE_ALWAYS" value="0">
+ <constant name="UNDERLINE_MODE_ALWAYS" value="0" enum="UnderlineMode">
The LinkButton will always show an underline at the bottom of its text
</constant>
- <constant name="UNDERLINE_MODE_ON_HOVER" value="1">
+ <constant name="UNDERLINE_MODE_ON_HOVER" value="1" enum="UnderlineMode">
The LinkButton will show an underline at the bottom of its text when the mouse cursor is over it.
</constant>
- <constant name="UNDERLINE_MODE_NEVER" value="2">
+ <constant name="UNDERLINE_MODE_NEVER" value="2" enum="UnderlineMode">
The LinkButton will never show an underline at the bottom of its text.
</constant>
</constants>
<theme_items>
+ <theme_item name="focus" type="StyleBox">
+ </theme_item>
<theme_item name="font" type="Font">
</theme_item>
<theme_item name="font_color" type="Color">