| 94 | constexpr int iColSize = 10; |
| 95 | |
| 96 | wxString ThemeFilePrefix( teThemeType id ) |
| 97 | { |
| 98 | auto strings = wxSplit(id.GET(), L'-'); |
| 99 | wxString result; |
| 100 | for (auto &string : strings) |
| 101 | result += string.Capitalize(); |
| 102 | return result; |
| 103 | } |
| 104 | |
| 105 | //! Has the side-effect of ensuring existence of the directory |
| 106 | FilePath ThemeSubdir(const FilePath &themeDir, Identifier id) |