You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
449 B
13 lines
449 B
#ifndef NOSLOTS
|
|
# define DEF( name, key3, key4, fnSlot ) \
|
|
keys->insert( name, i18n(name), TQString(), key3, key4, TQT_TQOBJECT(this), TQT_SLOT(fnSlot) )
|
|
#else
|
|
# define DEF( name, key3, key4, fnSlot ) \
|
|
keys->insert( name, i18n(name), TQString(), key3, key4 )
|
|
#endif
|
|
|
|
keys->insert( "Program:kxkb", i18n("Keyboard") );
|
|
DEF( I18N_NOOP("Switch to Next Keyboard Layout"), ALT+CTRL+Qt::Key_K, KKey::QtWIN+CTRL+Qt::Key_K, toggled() );
|
|
|
|
#undef DEF
|