| 128 | | |
|---|
| 129 | | |
|---|
| 130 | | |
|---|
| 131 | | # HoverColor = property(_getHoverColor, _setHoverColor, None, |
|---|
| 132 | | # _("Color of the link when the mouse passes over it. (str or tuple)")) |
|---|
| 133 | | # |
|---|
| 134 | | # HoverUnderline = property(_getHoverUnderline, _setHoverUnderline, None, |
|---|
| 135 | | # _("Is the link underlined when the mouse passes over it? (bool)")) |
|---|
| 136 | | # |
|---|
| 137 | | # LinkColor = property(_getLinkColor, _setLinkColor, None, |
|---|
| 138 | | # _("Normal (unvisited) link text color. (str or tuple)")) |
|---|
| 139 | | # |
|---|
| 140 | | # LinkUnderline = property(_getLinkUnderline, _setLinkUnderline, None, |
|---|
| 141 | | # _("Is the link underlined in the normal state? (bool)")) |
|---|
| 142 | | # |
|---|
| 143 | | # ShowHover = property(_getShowHover, _setShowHover, None, |
|---|
| 144 | | # _("Does the link show the hover effect? (bool)")) |
|---|
| 145 | | # |
|---|
| 146 | | # URL = property(_getURL, _setURL, None, |
|---|
| 147 | | # _("URL for this link (str)")) |
|---|
| 148 | | # |
|---|
| 149 | | # Visited = property(_getVisited, _setVisited, None, |
|---|
| 150 | | # _("Has this link been visited? (bool)")) |
|---|
| 151 | | # |
|---|
| 152 | | # VisitedColor = property(_getVisitedColor, _setVisitedColor, None, |
|---|
| 153 | | # _("Color of visited links (str or tuple)")) |
|---|
| 154 | | # |
|---|
| 155 | | # VisitedUnderline = property(_getVisitedUnderline, _setVisitedUnderline, None, |
|---|
| 156 | | # _("Is the link underlined in the visited state? (bool)")) |
|---|
| 157 | | # |
|---|