|
|
|
@ -109,6 +109,16 @@ void KBConfig::load(TDEConfig *config){
|
|
|
|
|
TQString::null, TQt::ALT+TQt::CTRL+TQt::Key_1 + i, KKey::QtWIN+TQt::CTRL+TQt::Key_1 + i,
|
|
|
|
|
kapp, SLOT(slotGroupSelected(int)));
|
|
|
|
|
}
|
|
|
|
|
m_keys->insert("NextGroup", i18n("Cycle keyboard layouts"),
|
|
|
|
|
i18n("Activates the next keyboard layout or, if the current layout is the last one, "
|
|
|
|
|
"activates the first layout."),
|
|
|
|
|
TQt::SHIFT+TQt::CTRL+TQt::Key_Plus, TQt::SHIFT+TQt::CTRL+TQt::Key_Plus,
|
|
|
|
|
kapp, SLOT(slotSelectNextGroup()));
|
|
|
|
|
m_keys->insert("PrevGroup", i18n("Cycle keyboard layouts (reverse)"),
|
|
|
|
|
i18n("Activates the previous keyboard layout or, if the current layout is the first one, "
|
|
|
|
|
"activates the last layout."),
|
|
|
|
|
TQt::SHIFT+TQt::CTRL+TQt::Key_Minus, TQt::SHIFT+TQt::CTRL+TQt::Key_Minus,
|
|
|
|
|
kapp, SLOT(slotSelectPrevGroup()));
|
|
|
|
|
m_keys->readSettings(config);
|
|
|
|
|
checkKeysEnabled();
|
|
|
|
|
}
|
|
|
|
|