[MSPAINT] Introduce Ctrl+Plus / Ctrl+Minus (#5717)

- Add Ctrl+Plus and Ctrl+Minus accelerators.
- Add IDM_CTRL_PLUS and IDM_CTRL_MINUS
  commands.
- Stretch the selection area on IDM_CTRL_PLUS
  and IDM_CTRL_MINUS actions.
CORE-19094
This commit is contained in:
Katayama Hirofumi MZ 2023-09-23 09:26:11 +09:00 committed by GitHub
parent bbb33a6ed5
commit ed9973f876
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 193 additions and 14 deletions

View file

@ -248,3 +248,8 @@ void ToolsModel::selectAll()
OnMouseMove(TRUE, imageModel.GetWidth(), imageModel.GetHeight());
OnButtonUp(TRUE, imageModel.GetWidth(), imageModel.GetHeight());
}
void ToolsModel::SpecialTweak(BOOL bMinus)
{
m_pToolObject->OnSpecialTweak(bMinus);
}