| 257 | } |
| 258 | |
| 259 | void CSequenceInstrumentEditPanel::TranslateMML(const CStringW &String) const |
| 260 | { |
| 261 | // Takes a string and translates it into a sequence |
| 262 | m_pParser->ParseSequence(conv::to_utf8(String)); // // // |
| 263 | |
| 264 | // Update editor |
| 265 | if (m_pSequenceEditor != nullptr) |
| 266 | m_pSequenceEditor->RedrawWindow(); |
| 267 | |
| 268 | // Register a document change |
| 269 | GetDocument()->ModifyIrreversible(); // // // |
| 270 | } |
| 271 | |
| 272 | void CSequenceInstrumentEditPanel::OnRClickInstSettings(NMHDR* pNMHDR, LRESULT* pResult) |
| 273 | { |
nothing calls this directly
no test coverage detected