summaryrefslogtreecommitdiffstats
path: root/redhat/tdebase/tdebase-14.0.0-vibrate_dialog.patch
blob: 426920d2c55a3d5b33693e5f45e15b596ee87cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
--- 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;