summaryrefslogtreecommitdiffstats
path: root/redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch
diff options
context:
space:
mode:
Diffstat (limited to 'redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch')
-rw-r--r--redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch186
1 files changed, 0 insertions, 186 deletions
diff --git a/redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch b/redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch
deleted file mode 100644
index 426920d2c..000000000
--- a/redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch
+++ /dev/null
@@ -1,186 +0,0 @@
---- trinity-tdebase-3.5.13.2~pre102+43d29f86/kcontrol/screensaver/scrnsave.h.ORI 2013-05-14 22:12:18.159235590 +0200
-+++ trinity-tdebase-3.5.13.2~pre102+43d29f86/kcontrol/screensaver/scrnsave.h 2013-05-14 22:12:56.657422259 +0200
-@@ -58,6 +58,7 @@
- void slotLock( bool );
- void slotDelaySaverStart( bool );
- void slotUseTSAK( bool );
-+ void slotVibrateUnlock( bool );
- void slotUseUnmanagedLockWindows( bool );
- void slotHideActiveWindowsFromSaver( bool );
- void slotHideCancelButton( bool );
-@@ -102,6 +103,7 @@
- TQGroupBox *mSettingsGroup;
- TQCheckBox *mDelaySaverStartCheckBox;
- TQCheckBox *mUseTSAKCheckBox;
-+ TQCheckBox *mVibrateUnlockCheckBox;
- TQCheckBox *mUseUnmanagedLockWindowsCheckBox;
- TQCheckBox *mHideActiveWindowsFromSaverCheckBox;
- TQCheckBox *mHideCancelButtonCheckBox;
-@@ -121,6 +123,7 @@
- bool mImmutable;
- bool mDelaySaverStart;
- bool mUseTSAK;
-+ bool mVibrateUnlock;
- bool mUseUnmanagedLockWindows;
- bool mHideActiveWindowsFromSaver;
- bool mHideCancelButton;
---- trinity-tdebase-3.5.13.2~pre102+43d29f86/kcontrol/screensaver/scrnsave.cpp.vibrate_dialog 2013-04-26 22:15:23.000000000 +0200
-+++ trinity-tdebase-3.5.13.2~pre102+43d29f86/kcontrol/screensaver/scrnsave.cpp 2013-05-14 22:24:37.354375502 +0200
-@@ -271,6 +271,13 @@
- settingsGroupLayout->addWidget(mHideActiveWindowsFromSaverCheckBox, 3, 1);
- TQWhatsThis::add( mHideActiveWindowsFromSaverCheckBox, i18n("Hide all active windows from the screen saver and use the desktop background as the screen saver input.") );
-
-+ mVibrateUnlockCheckBox = new TQCheckBox( i18n("&Vibrate unlock dialog box on failure"), mSettingsGroup );
-+ mVibrateUnlockCheckBox->setEnabled( true );
-+ mVibrateUnlockCheckBox->setChecked( mVibrateUnlock );
-+ connect( mVibrateUnlockCheckBox, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( slotVibrateUnlock( bool ) ) );
-+ settingsGroupLayout->addWidget(mVibrateUnlockCheckBox, 4, 1);
-+ TQWhatsThis::add( mVibrateUnlockCheckBox, i18n("Makes the unlock dialog box vibrate when entering an incorrect password.") );
-+
- mHideCancelButtonCheckBox = new TQCheckBox( i18n("Hide &cancel button"), mSettingsGroup );
- mHideCancelButtonCheckBox->setEnabled( true );
- mHideCancelButtonCheckBox->setChecked( mHideCancelButton );
-@@ -437,6 +444,7 @@
- mLock = config->readBoolEntry("Lock", false);
- mDelaySaverStart = config->readBoolEntry("DelaySaverStart", true);
- mUseTSAK = config->readBoolEntry("UseTDESAK", true);
-+ mVibrateUnlock = config->readBoolEntry("VibrateUnlock", true);
- mUseUnmanagedLockWindows = config->readBoolEntry("UseUnmanagedLockWindows", false);
- mHideActiveWindowsFromSaver = config->readBoolEntry("HideActiveWindowsFromSaver", true);
- mHideCancelButton = config->readBoolEntry("HideCancelButton", false);
-@@ -490,6 +498,7 @@
- config->writeEntry("Lock", mLock);
- config->writeEntry("DelaySaverStart", mDelaySaverStart);
- config->writeEntry("UseTDESAK", mUseTSAK);
-+ config->writeEntry("VibrateUnlock", mVibrateUnlock);
- config->writeEntry("UseUnmanagedLockWindows", mUseUnmanagedLockWindows);
- config->writeEntry("HideActiveWindowsFromSaver", mHideActiveWindowsFromSaver);
- config->writeEntry("HideCancelButton", mHideCancelButton);
-@@ -705,10 +714,14 @@
- mUseTSAKCheckBox->setChecked( false );
- }
- if (!mUseUnmanagedLockWindows) {
-+ mVibrateUnlockCheckBox->setEnabled( true );
-+ mVibrateUnlockCheckBox->setChecked( mVibrateUnlock );
- mHideActiveWindowsFromSaverCheckBox->setEnabled( true );
- mHideActiveWindowsFromSaverCheckBox->setChecked( mHideActiveWindowsFromSaver );
- }
- else {
-+ mVibrateUnlockCheckBox->setEnabled( false );
-+ mVibrateUnlockCheckBox->setChecked( false );
- mHideActiveWindowsFromSaverCheckBox->setEnabled( false );
- mHideActiveWindowsFromSaverCheckBox->setChecked( false );
- }
-@@ -969,6 +982,16 @@
- processLockouts();
- mChanged = true;
- emit changed(true);
-+}
-+
-+//---------------------------------------------------------------------------
-+//
-+void KScreenSaver::slotVibrateUnlock( bool u )
-+{
-+ if (mVibrateUnlockCheckBox->isEnabled()) mVibrateUnlock = u;
-+ processLockouts();
-+ mChanged = true;
-+ emit changed(true);
- }
-
- //---------------------------------------------------------------------------
---- trinity-tdebase-3.5.13.2~pre102+43d29f86/kdesktop/lock/lockdlg.h.vibrate_dialog 2013-01-09 02:12:13.000000000 +0100
-+++ trinity-tdebase-3.5.13.2~pre102+43d29f86/kdesktop/lock/lockdlg.h 2013-05-14 22:42:50.562878532 +0200
-@@ -60,6 +60,7 @@
- void slotOK();
- void layoutClicked();
- void slotActivity();
-+ void moveTimerDone();
-
- protected slots:
- virtual void reject();
-@@ -79,6 +80,8 @@
- void handleVerify();
- void reapVerify();
- void cantCheck();
-+ void movedialog( int _move );
-+ void badPasswordLogin();
- GreeterPluginHandle *mPlugin;
- KGreeterPlugin *greet;
- TQFrame *frame;
-@@ -95,6 +98,8 @@
- int sPid, sFd;
- TQListView *lv;
- TQDateTime m_lockStartDT;
-+ bool waitMoveDialog;
-+ bool VibrateUnlock;
- };
-
- #endif
---- trinity-tdebase-3.5.13.2~pre102+43d29f86/kdesktop/lock/lockdlg.cc.vibrate_dialog 2013-01-09 02:12:13.000000000 +0100
-+++ trinity-tdebase-3.5.13.2~pre102+43d29f86/kdesktop/lock/lockdlg.cc 2013-05-14 22:42:12.809621715 +0200
-@@ -55,6 +55,7 @@
- #include <X11/keysym.h>
- #include <X11/Xatom.h>
- #include <fixx11h.h>
-+#include <tdeapplication.h>
-
- #ifndef AF_LOCAL
- # define AF_LOCAL AF_UNIX
-@@ -246,6 +247,11 @@
- mLayoutButton->hide(); // no kxkb running
- }
- capsLocked();
-+
-+ TDEConfig* config = new TDEConfig("kdesktoprc");
-+ config->setGroup("ScreenSaver");
-+ VibrateUnlock = config->readBoolEntry("VibrateUnlock", true);
-+ delete config;
- }
-
- PasswordDlg::~PasswordDlg()
-@@ -302,6 +308,37 @@
- }
- }
-
-+void PasswordDlg::movedialog( int _move )
-+{
-+ waitMoveDialog = true;
-+ this->move(pos().x()+_move, pos().y());
-+ TQTimer::singleShot( 50, this, TQT_SLOT(moveTimerDone()) );
-+ while (waitMoveDialog) {
-+ kapp->processEvents();
-+ }
-+}
-+
-+void PasswordDlg::moveTimerDone()
-+{
-+ waitMoveDialog = false;
-+}
-+
-+void PasswordDlg::badPasswordLogin()
-+{
-+ if ( VibrateUnlock && mUnlockingFailed )
-+ {
-+ for ( int i = 0 ; i<2 ; i++)
-+ {
-+ movedialog( 10 );
-+ movedialog( -20 );
-+ movedialog( 20 );
-+ movedialog( -20 );
-+ movedialog( 20 );
-+ movedialog( -10 );
-+ }
-+ }
-+}
-+
- //---------------------------------------------------------------------------
- //
- // Handle timer events.
-@@ -442,6 +479,7 @@
- mFailedTimerId = startTimer(1500);
- ok->setEnabled(false);
- mNewSessButton->setEnabled( false );
-+ badPasswordLogin();
- return;
- case AuthAbort:
- return;