* Get the biggest height of the help text(s), if the width is at least \a maxw. Help text gets wrapped if needed. * @param maxw Maximal width of a line help text. * @return Biggest height needed to display any help text of this node (and its descendants). */
| 164 | * @return Biggest height needed to display any help text of this node (and its descendants). |
| 165 | */ |
| 166 | uint SettingEntry::GetMaxHelpHeight(int maxw) |
| 167 | { |
| 168 | return GetStringHeight(this->setting->GetHelp(), maxw); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Checks whether an entry shall be made visible based on the restriction mode. |
no test coverage detected