Add configuration option for SAK usage to KDM control center module

Replace call in kdm to system() with KProcess


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1253892 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 94ee9219dd
commit 76da651e47

@ -30,6 +30,7 @@
#include <tqwhatsthis.h>
#include <tqvalidator.h>
#include <tqstylefactory.h>
#include <tqcheckbox.h>
#include <tqstyle.h>
#include <klocale.h>
@ -237,6 +238,19 @@ KDMAppearanceWidget::KDMAppearanceWidget(TQWidget *parent, const char *name)
TQWhatsThis::add( langcombo, wtstr );
// The SAK group box
group = new TQGroupBox(0, Qt::Vertical, i18n("Secure Attention Key"), this);
vbox->addWidget(group);
sakbox = new TQCheckBox( i18n("Enable Secure Attention Key"), group );
connect( sakbox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(changed()) );
TQGridLayout *hbox2 = new TQGridLayout( group->tqlayout(), 2, 2, KDialog::spacingHint() );
hbox2->setColStretch(1, 1);
hbox2->addWidget(sakbox, 1, 0);
wtstr = i18n("Here you can enable or disable the Secure Attention Key [SAK] anti-spoofing measure.");
TQWhatsThis::add( sakbox, wtstr );
vbox->addStretch(1);
}
@ -257,6 +271,7 @@ void KDMAppearanceWidget::makeReadOnly()
colcombo->setEnabled(false);
echocombo->setEnabled(false);
langcombo->setEnabled(false);
sakbox->setEnabled(false);
}
void KDMAppearanceWidget::loadLanguageList(KLanguageButton *combo)
@ -448,6 +463,8 @@ void KDMAppearanceWidget::save()
config->writeEntry("GreeterPos", xLineEdit->text() + ',' + yLineEdit->text());
config->writeEntry("Language", langcombo->current());
config->writeEntry("UseSAK", sakbox->isChecked());
}
@ -497,6 +514,9 @@ void KDMAppearanceWidget::load()
// get the language
langcombo->setCurrentItem(config->readEntry("Language", "C"));
// See if the SAK is enabled
sakbox->setChecked(config->readBoolEntry("UseSAK", true));
}

@ -90,6 +90,7 @@ private:
KBackedComboBox *colcombo;
KBackedComboBox *echocombo;
KLanguageButton *langcombo;
TQCheckBox *sakbox;
};

@ -186,8 +186,11 @@ kg_main( const char *argv0 )
KCrash::setSafer( true );
trinity_desktop_lock_use_sak = _useSAK;
KProcess *tsak = 0;
if (trinity_desktop_lock_use_sak) {
system(TQString(TQCString( argv0, strrchr( argv0, '/' ) - argv0 + 2 ) + "tsak &").ascii());
tsak = new KProcess;
*tsak << TQCString( argv0, strrchr( argv0, '/' ) - argv0 + 2 ) + "tsak";
tsak->start();
}
#ifdef HAVE_XCOMPOSITE
@ -429,6 +432,11 @@ kg_main( const char *argv0 )
kwin->detach();
delete kwin;
}
if (tsak) {
tsak->closeStdin();
tsak->detach();
delete tsak;
}
delete proc;
UnsecureDisplay( dpy );
restore_modifiers();

Loading…
Cancel
Save