예제 #1
0
void widgetKeyboard::slotCurrentKbVariantChanged(int row)
{
   if (row != -1)
      listKbVariants->currentItem()->text();

   slotUpdateKbOnSys();
}
예제 #2
0
void widgetKeyboard::slotCurrentKbLayoutChanged(int row)
{
    if (row != -1) {
        QString kbLayout = listKbLayouts->currentItem()->text();
        setKbVariants(kbLayout);
    }

   slotUpdateKbOnSys();
}
예제 #3
0
void widgetKeyboard::slotApply()
{
  //Apply and close
  slotUpdateKbOnSys();
  close();
}
예제 #4
0
void widgetKeyboard::slotApply()
{
  slotUpdateKbOnSys();
}
예제 #5
0
void widgetKeyboard::slotClose()
{
  //Return back to original keyboard settings and close
  slotUpdateKbOnSys(true);
  close();
}