| 171 | } |
| 172 | |
| 173 | static const String getNativeKeyMapping() |
| 174 | { |
| 175 | String ret; |
| 176 | for (int i=0; i<1024; i++) |
| 177 | { |
| 178 | if (KeyPress(i).isValid()) |
| 179 | { |
| 180 | if (! KeyPress(i).getTextDescription().startsWith("#") && KeyPress(i).getTextDescription().isNotEmpty()) |
| 181 | ret << i << ": " << KeyPress(i).getTextDescriptionWithIcons() << "\n"; |
| 182 | } |
| 183 | } |
| 184 | return (ret); |
| 185 | } |
| 186 | |
| 187 | LGlobalFunctions::LGlobalFunctions() |
| 188 | { |
nothing calls this directly
no test coverage detected