mirror of https://github.com/odrling/Aegisub
More fixes to hotkeys, consequently use Cmd instead of Ctrl on Mac, changed some default hotkeys on Mac to avoid clashes with system hotkeys and better follow Apple HIG.
Originally committed to SVN as r1579.
This commit is contained in:
parent
808f56d294
commit
acc2d3753f
|
@ -2000,7 +2000,11 @@ void AudioDisplay::OnUpdateTimer(wxTimerEvent &event) {
|
||||||
// Key down
|
// Key down
|
||||||
void AudioDisplay::OnKeyDown(wxKeyEvent &event) {
|
void AudioDisplay::OnKeyDown(wxKeyEvent &event) {
|
||||||
int key = event.GetKeyCode();
|
int key = event.GetKeyCode();
|
||||||
|
#ifdef __APPLE__
|
||||||
|
Hotkeys.SetPressed(key,event.m_metaDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#else
|
||||||
Hotkeys.SetPressed(key,event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
Hotkeys.SetPressed(key,event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Accept
|
// Accept
|
||||||
if (Hotkeys.IsPressed(_T("Audio Commit"))) {
|
if (Hotkeys.IsPressed(_T("Audio Commit"))) {
|
||||||
|
|
|
@ -1048,7 +1048,11 @@ void CaptureKey::OnKeyDown(wxKeyEvent &event) {
|
||||||
parent->key->keycode = keycode;
|
parent->key->keycode = keycode;
|
||||||
int mod = 0;
|
int mod = 0;
|
||||||
if (event.m_altDown) mod |= wxACCEL_ALT;
|
if (event.m_altDown) mod |= wxACCEL_ALT;
|
||||||
|
#ifdef __APPLE__
|
||||||
|
if (event.m_metaDown) mod |= wxACCEL_CTRL;
|
||||||
|
#else
|
||||||
if (event.m_controlDown) mod |= wxACCEL_CTRL;
|
if (event.m_controlDown) mod |= wxACCEL_CTRL;
|
||||||
|
#endif
|
||||||
if (event.m_shiftDown) mod |= wxACCEL_SHIFT;
|
if (event.m_shiftDown) mod |= wxACCEL_SHIFT;
|
||||||
parent->key->flags = mod;
|
parent->key->flags = mod;
|
||||||
parent->EndModal(0);
|
parent->EndModal(0);
|
||||||
|
|
|
@ -337,10 +337,18 @@ END_EVENT_TABLE()
|
||||||
// Key pressed
|
// Key pressed
|
||||||
void StyleEditBox::OnKeyDown(wxKeyEvent &event) {
|
void StyleEditBox::OnKeyDown(wxKeyEvent &event) {
|
||||||
//int keycode = event.GetKeyCode();
|
//int keycode = event.GetKeyCode();
|
||||||
|
#ifdef __APPLE__
|
||||||
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_metaDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#else
|
||||||
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Backspace
|
// Backspace
|
||||||
|
#ifdef __APPLE__
|
||||||
|
if (event.GetKeyCode() == WXK_BACK && !event.m_metaDown && !event.m_altDown && !event.m_shiftDown) {
|
||||||
|
#else
|
||||||
if (event.GetKeyCode() == WXK_BACK && !event.m_controlDown && !event.m_altDown && !event.m_shiftDown) {
|
if (event.GetKeyCode() == WXK_BACK && !event.m_controlDown && !event.m_altDown && !event.m_shiftDown) {
|
||||||
|
#endif
|
||||||
long from,to;
|
long from,to;
|
||||||
GetSelection(&from,&to);
|
GetSelection(&from,&to);
|
||||||
if (from > 0) SetSelection(from-1,to);
|
if (from > 0) SetSelection(from-1,to);
|
||||||
|
|
|
@ -272,7 +272,11 @@ void DialogTranslationEvent::OnTransBoxKey(wxKeyEvent &event) { control->OnTrans
|
||||||
/////////////////////
|
/////////////////////
|
||||||
// Key pressed event
|
// Key pressed event
|
||||||
void DialogTranslation::OnTransBoxKey(wxKeyEvent &event) {
|
void DialogTranslation::OnTransBoxKey(wxKeyEvent &event) {
|
||||||
|
#ifdef __APPLE__
|
||||||
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_metaDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#else
|
||||||
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Previous
|
// Previous
|
||||||
if (Hotkeys.IsPressed(_T("Translation Assistant Prev"))) {
|
if (Hotkeys.IsPressed(_T("Translation Assistant Prev"))) {
|
||||||
|
|
|
@ -157,6 +157,7 @@ wxString HotkeyType::GetKeyName(int keycode) {
|
||||||
// Fill map
|
// Fill map
|
||||||
void HotkeyType::FillMap() {
|
void HotkeyType::FillMap() {
|
||||||
if (keyName.empty()) {
|
if (keyName.empty()) {
|
||||||
|
keyName[WXK_BACK] = _T("Backspace");
|
||||||
keyName[WXK_SPACE] = _T("Space");
|
keyName[WXK_SPACE] = _T("Space");
|
||||||
keyName[WXK_RETURN] = _T("Enter");
|
keyName[WXK_RETURN] = _T("Enter");
|
||||||
keyName[WXK_TAB] = _T("Tab");
|
keyName[WXK_TAB] = _T("Tab");
|
||||||
|
@ -316,24 +317,43 @@ void HotkeyManager::LoadDefaults() {
|
||||||
SetHotkey(_("New subtitles"),_T("Ctrl-N"));
|
SetHotkey(_("New subtitles"),_T("Ctrl-N"));
|
||||||
SetHotkey(_("Open subtitles"),_T("Ctrl-O"));
|
SetHotkey(_("Open subtitles"),_T("Ctrl-O"));
|
||||||
SetHotkey(_("Save subtitles"),_T("Ctrl-S"));
|
SetHotkey(_("Save subtitles"),_T("Ctrl-S"));
|
||||||
|
#ifdef __APPLE__
|
||||||
|
SetHotkey(_("Exit"),_T("Ctrl-Q"));
|
||||||
|
SetHotkey(_("Help"),_T("Ctrl-?"));
|
||||||
|
SetHotkey(_("Options"),_T("Ctrl-,"));
|
||||||
|
#else
|
||||||
SetHotkey(_("Exit"),_T("Alt-F4"));
|
SetHotkey(_("Exit"),_T("Alt-F4"));
|
||||||
SetHotkey(_("Help"),_T("F1"));
|
SetHotkey(_("Help"),_T("F1"));
|
||||||
SetHotkey(_("Options"),_T("Alt-O"));
|
SetHotkey(_("Options"),_T("Alt-O"));
|
||||||
|
#endif
|
||||||
|
|
||||||
SetHotkey(_("Edit Box Commit"),_T("Ctrl-Enter"));
|
SetHotkey(_("Edit Box Commit"),_T("Ctrl-Enter"));
|
||||||
SetHotkey(_("Undo"),_T("Ctrl-Z"));
|
SetHotkey(_("Undo"),_T("Ctrl-Z"));
|
||||||
|
#ifdef __APPLE__
|
||||||
|
SetHotkey(_("Redo"),_T("Ctrl-Shift-Z"));
|
||||||
|
#else
|
||||||
SetHotkey(_("Redo"),_T("Ctrl-Y"));
|
SetHotkey(_("Redo"),_T("Ctrl-Y"));
|
||||||
|
#endif
|
||||||
SetHotkey(_("Shift Times"),_T("Ctrl-I"));
|
SetHotkey(_("Shift Times"),_T("Ctrl-I"));
|
||||||
SetHotkey(_("Find"),_T("Ctrl-F"));
|
SetHotkey(_("Find"),_T("Ctrl-F"));
|
||||||
|
#ifdef __APPLE__
|
||||||
|
SetHotkey(_("Find Next"),_T("Ctrl-G"));
|
||||||
|
SetHotkey(_("Replace"),_T("Ctrl-Shift-F")); // non-standard?
|
||||||
|
#else
|
||||||
SetHotkey(_("Find Next"),_T("F3"));
|
SetHotkey(_("Find Next"),_T("F3"));
|
||||||
SetHotkey(_("Replace"),_T("Ctrl-H"));
|
SetHotkey(_("Replace"),_T("Ctrl-H"));
|
||||||
|
#endif
|
||||||
SetHotkey(_("Select Lines"),_T(""));
|
SetHotkey(_("Select Lines"),_T(""));
|
||||||
SetHotkey(_("Copy"),_T("Ctrl-C"));
|
SetHotkey(_("Copy"),_T("Ctrl-C"));
|
||||||
SetHotkey(_("Cut"),_T("Ctrl-X"));
|
SetHotkey(_("Cut"),_T("Ctrl-X"));
|
||||||
SetHotkey(_("Paste"),_T("Ctrl-V"));
|
SetHotkey(_("Paste"),_T("Ctrl-V"));
|
||||||
SetHotkey(_("Paste Over"),_T("Ctrl-Shift-V"));
|
SetHotkey(_("Paste Over"),_T("Ctrl-Shift-V"));
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
SetHotkey(_("Video Jump"),_T("Ctrl-J"));
|
||||||
|
#else
|
||||||
SetHotkey(_("Video Jump"),_T("Ctrl-G"));
|
SetHotkey(_("Video Jump"),_T("Ctrl-G"));
|
||||||
|
#endif
|
||||||
SetHotkey(_("Jump Video to Start"),_T("Ctrl-1"));
|
SetHotkey(_("Jump Video to Start"),_T("Ctrl-1"));
|
||||||
SetHotkey(_("Jump Video to End"),_T("Ctrl-2"));
|
SetHotkey(_("Jump Video to End"),_T("Ctrl-2"));
|
||||||
SetHotkey(_("Set Start to Video"),_T("Ctrl-3"));
|
SetHotkey(_("Set Start to Video"),_T("Ctrl-3"));
|
||||||
|
@ -356,7 +376,11 @@ void HotkeyManager::LoadDefaults() {
|
||||||
|
|
||||||
SetHotkey(_("Grid move row down"),_T("Alt-Down"));
|
SetHotkey(_("Grid move row down"),_T("Alt-Down"));
|
||||||
SetHotkey(_("Grid move row up"),_T("Alt-Up"));
|
SetHotkey(_("Grid move row up"),_T("Alt-Up"));
|
||||||
|
#ifdef __APPLE__
|
||||||
|
SetHotkey(_("Grid delete rows"),_T("Ctrl-Backspace"));
|
||||||
|
#else
|
||||||
SetHotkey(_("Grid delete rows"),_T("Ctrl-Delete"));
|
SetHotkey(_("Grid delete rows"),_T("Ctrl-Delete"));
|
||||||
|
#endif
|
||||||
SetHotkey(_("Grid duplicate rows"),_T(""));
|
SetHotkey(_("Grid duplicate rows"),_T(""));
|
||||||
SetHotkey(_("Grid duplicate and shift one frame"),_T("Ctrl-D"));
|
SetHotkey(_("Grid duplicate and shift one frame"),_T("Ctrl-D"));
|
||||||
|
|
||||||
|
|
|
@ -1296,11 +1296,10 @@ void SubsEditBox::OnButtonStrikeout(wxCommandEvent &event) {
|
||||||
//////////
|
//////////
|
||||||
// Commit
|
// Commit
|
||||||
void SubsEditBox::OnButtonCommit(wxCommandEvent &event) {
|
void SubsEditBox::OnButtonCommit(wxCommandEvent &event) {
|
||||||
Commit(wxGetMouseState().
|
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
CmdDown());
|
Commit(wxGetMouseState().CmdDown());
|
||||||
#else
|
#else
|
||||||
ControlDown());
|
Commit(wxGetMouseState().ControlDown());
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -226,7 +226,11 @@ void SubtitlesGrid::OnShowColMenu(wxCommandEvent &event) {
|
||||||
// Process keyboard events
|
// Process keyboard events
|
||||||
void SubtitlesGrid::OnKeyDown(wxKeyEvent &event) {
|
void SubtitlesGrid::OnKeyDown(wxKeyEvent &event) {
|
||||||
// Get key
|
// Get key
|
||||||
|
#ifdef __APPLE__
|
||||||
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_metaDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#else
|
||||||
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
Hotkeys.SetPressed(event.GetKeyCode(),event.m_controlDown,event.m_altDown,event.m_shiftDown);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Get selection
|
// Get selection
|
||||||
bool continuous = false;
|
bool continuous = false;
|
||||||
|
|
Loading…
Reference in New Issue