| 742 | } |
| 743 | |
| 744 | std::string LabelFNTMultiLineAlignment::getItemString(ax::MenuItemFont* item) |
| 745 | { |
| 746 | std::string str; |
| 747 | |
| 748 | switch (item->getTag()) |
| 749 | { |
| 750 | case LongSentences: |
| 751 | str = LongSentencesExample; |
| 752 | break; |
| 753 | case LineBreaks: |
| 754 | str = LineBreaksExample; |
| 755 | break; |
| 756 | case Mixed: |
| 757 | str = MixedExample; |
| 758 | break; |
| 759 | |
| 760 | default: |
| 761 | break; |
| 762 | } |
| 763 | |
| 764 | return str; |
| 765 | } |
| 766 | |
| 767 | void LabelFNTMultiLineAlignment::stringChanged(ax::Object* sender) |
| 768 | { |
no test coverage detected