| 343 | } |
| 344 | |
| 345 | void MainToolbar::AddStringToToolbar(ToolbarButton button) |
| 346 | { |
| 347 | TCHAR szText[64]; |
| 348 | |
| 349 | /* The string must be double NULL-terminated. */ |
| 350 | GetToolbarButtonText(button, szText, SIZEOF_ARRAY(szText)); |
| 351 | szText[lstrlen(szText) + 1] = '\0'; |
| 352 | |
| 353 | int index = static_cast<int>(SendMessage(m_hwnd, TB_ADDSTRING, NULL, reinterpret_cast<LPARAM>(szText))); |
| 354 | |
| 355 | m_toolbarStringMap.insert(std::make_pair(button, index)); |
| 356 | } |
| 357 | |
| 358 | void MainToolbar::GetToolbarButtonText(ToolbarButton button, TCHAR *szText, int bufSize) const |
| 359 | { |