Home
last modified time | relevance | path

Searched refs:hotKeyIndex (Results 1 – 6 of 6) sorted by relevance

/dports/cad/ldview/ldview-4.4/QT/
H A DPreferences.cpp1490 hotKeyIndex = getCurrentHotKey(); in doHotkeyPreferenceSet()
1492 if (hotKeyIndex == -1) in doHotkeyPreferenceSet()
1494 hotKeyIndex++; in doHotkeyPreferenceSet()
1496 else if (hotKeyIndex == 0) in doHotkeyPreferenceSet()
1498 hotKeyIndex = 10; in doHotkeyPreferenceSet()
1506 lst, hotKeyIndex, false, &ok); in doHotkeyPreferenceSet()
1509 hotKeyIndex = lst.indexOf(res); in doHotkeyPreferenceSet()
1510 if(hotKeyIndex != -1) in doHotkeyPreferenceSet()
1547 void Preferences::performHotKey(int hotKeyIndex) in performHotKey() argument
1549 char *hotKeyPrefSetName = getHotKey(hotKeyIndex); in performHotKey()
[all …]
H A DPreferences.h230 int hotKeyIndex; variable
/dports/cad/ldview/ldview-4.4/
H A DLDViewPreferences.h118 bool performHotKey(int hotKeyIndex);
329 int hotKeyIndex; variable
H A DLDViewPreferences.cpp2390 if (hotKeyIndex > 0) in saveCurrentHotKey()
2395 sprintf(key, "%s/Key%d", HOT_KEYS_KEY, hotKeyIndex % 10); in saveCurrentHotKey()
2402 hotKeyIndex = getCurrentHotKey(); in doPrefSetHotKey()
2404 if (hotKeyIndex == -1) in doPrefSetHotKey()
2406 hotKeyIndex++; in doPrefSetHotKey()
2408 else if (hotKeyIndex == 0) in doPrefSetHotKey()
2410 hotKeyIndex = 10; in doPrefSetHotKey()
2415 if (hotKeyIndex != CB_ERR) in doPrefSetHotKey()
2487 hotKeyIndex = CUIDialog::comboGetCurSel(hDlg, IDC_HOTKEY_COMBO); in doOtherClick()
4050 CUIDialog::comboSetCurSel(hDlg, IDC_HOTKEY_COMBO, hotKeyIndex); in doHotKeyInit()
H A DModelWindow.h136 bool performHotKey(int hotKeyIndex);
H A DModelWindow.cpp5398 bool ModelWindow::performHotKey(int hotKeyIndex) in performHotKey() argument
5402 return prefs->performHotKey(hotKeyIndex); in performHotKey()