From 3ed778ad6389c901077fee38bb77abd55dd4eba4 Mon Sep 17 00:00:00 2001 From: bigbiff bigbiff Date: Tue, 12 Mar 2019 19:28:31 -0400 Subject: Vibration: allow BoardConfig to disable vibration for a device. Change-Id: Ibd2f67391ce6d7774498839829e0de9391508781 --- gui/action.cpp | 4 ++++ gui/button.cpp | 3 +++ gui/checkbox.cpp | 3 +++ gui/keyboard.cpp | 8 ++++++++ gui/patternpassword.cpp | 8 ++++++++ gui/scrolllist.cpp | 3 +++ gui/slider.cpp | 4 ++++ gui/terminal.cpp | 4 ++++ gui/theme/common/landscape.xml | 9 +++++++++ gui/theme/common/languages/en.xml | 1 + gui/theme/common/portrait.xml | 9 +++++++++ gui/theme/common/watch.xml | 1 + 12 files changed, 57 insertions(+) mode change 100644 => 100755 gui/action.cpp mode change 100644 => 100755 gui/button.cpp mode change 100644 => 100755 gui/checkbox.cpp mode change 100644 => 100755 gui/keyboard.cpp mode change 100644 => 100755 gui/patternpassword.cpp mode change 100644 => 100755 gui/scrolllist.cpp mode change 100644 => 100755 gui/slider.cpp mode change 100644 => 100755 gui/terminal.cpp mode change 100644 => 100755 gui/theme/common/landscape.xml mode change 100644 => 100755 gui/theme/common/languages/en.xml mode change 100644 => 100755 gui/theme/common/portrait.xml mode change 100644 => 100755 gui/theme/common/watch.xml (limited to 'gui') diff --git a/gui/action.cpp b/gui/action.cpp old mode 100644 new mode 100755 index d708dd467..11d9580fb --- a/gui/action.cpp +++ b/gui/action.cpp @@ -516,8 +516,12 @@ void GUIAction::operation_end(const int operation_status) blankTimer.resetTimerAndUnblank(); property_set("twrp.action_complete", "1"); time(&Stop); + +#ifndef TW_NO_HAPTICS if ((int) difftime(Stop, Start) > 10) DataManager::Vibrate("tw_action_vibrate"); +#endif + LOGINFO("operation_end - status=%d\n", operation_status); } diff --git a/gui/button.cpp b/gui/button.cpp old mode 100644 new mode 100755 index dfae5e237..7c7f69f14 --- a/gui/button.cpp +++ b/gui/button.cpp @@ -248,7 +248,10 @@ int GUIButton::NotifyTouch(TOUCH_STATE state, int x, int y) } else { if (last_state == 0) { last_state = 1; + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif if (mButtonLabel != NULL) mButtonLabel->isHighlighted = true; if (mButtonImg != NULL) diff --git a/gui/checkbox.cpp b/gui/checkbox.cpp old mode 100644 new mode 100755 index de63cba36..025a803a2 --- a/gui/checkbox.cpp +++ b/gui/checkbox.cpp @@ -179,7 +179,10 @@ int GUICheckbox::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused) lastState = (lastState == 0) ? 1 : 0; DataManager::SetValue(mVarName, lastState); +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + } return 0; } diff --git a/gui/keyboard.cpp b/gui/keyboard.cpp old mode 100644 new mode 100755 index ca7006dc3..b6a772b01 --- a/gui/keyboard.cpp +++ b/gui/keyboard.cpp @@ -549,7 +549,11 @@ int GUIKeyboard::NotifyTouch(TOUCH_STATE state, int x, int y) bool repeatKey = false; Layout& lay = layouts[currentLayout - 1]; if (state == TOUCH_RELEASE && was_held == 0) { + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_keyboard_vibrate"); +#endif + if (key.layout > 0) { // Switch layouts if (lay.is_caps && key.layout == lay.revert_layout && !CapsLockOn) { @@ -593,7 +597,11 @@ int GUIKeyboard::NotifyTouch(TOUCH_STATE state, int x, int y) was_held = 1; if (key.longpresskey > 0) { // Long Press Key + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_keyboard_vibrate"); +#endif + PageManager::NotifyCharInput(key.longpresskey); } else diff --git a/gui/patternpassword.cpp b/gui/patternpassword.cpp old mode 100644 new mode 100755 index 5559f9dd8..a75ed156b --- a/gui/patternpassword.cpp +++ b/gui/patternpassword.cpp @@ -370,7 +370,11 @@ int GUIPatternPassword::NotifyTouch(TOUCH_STATE state, int x, int y) mTrackingTouch = true; ResetActiveDots(); ConnectDot(dot_idx); + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + mCurLineX = x; mCurLineY = y; mNeedRender = true; @@ -386,7 +390,11 @@ int GUIPatternPassword::NotifyTouch(TOUCH_STATE state, int x, int y) { ConnectIntermediateDots(dot_idx); ConnectDot(dot_idx); + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + } mCurLineX = x; diff --git a/gui/scrolllist.cpp b/gui/scrolllist.cpp old mode 100644 new mode 100755 index ecfb5fe81..bf5a9b06d --- a/gui/scrolllist.cpp +++ b/gui/scrolllist.cpp @@ -508,7 +508,10 @@ int GUIScrollList::NotifyTouch(TOUCH_STATE state, int x, int y) NotifySelect(selectedItem); mUpdate = 1; +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + selectedItem = NO_ITEM; } else { // Start kinetic scrolling diff --git a/gui/slider.cpp b/gui/slider.cpp old mode 100644 new mode 100755 index fab5a2ea0..3c5f6526e --- a/gui/slider.cpp +++ b/gui/slider.cpp @@ -208,7 +208,11 @@ int GUISlider::NotifyTouch(TOUCH_STATE state, int x, int y) return 0; if (sCurTouchX >= mRenderX + mRenderW - sTouchW) { + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + sAction->doActions(); } diff --git a/gui/terminal.cpp b/gui/terminal.cpp old mode 100644 new mode 100755 index b1799ce63..a4fed9104 --- a/gui/terminal.cpp +++ b/gui/terminal.cpp @@ -530,7 +530,11 @@ private: switch (ch) { case 7: // BEL + +#ifndef TW_NO_HAPTICS DataManager::Vibrate("tw_button_vibrate"); +#endif + break; case 8: // BS left(); diff --git a/gui/theme/common/landscape.xml b/gui/theme/common/landscape.xml old mode 100644 new mode 100755 index 5bbfe9029..f6f14bc51 --- a/gui/theme/common/landscape.xml +++ b/gui/theme/common/landscape.xml @@ -3166,19 +3166,28 @@ + + + + {@vibration_disabled=Vibration Disabled for Device} + + + {@button_vibration=Button Vibration:} + {@kb_vibration=Keyboard Vibration:} + {@act_vibration=Action Vibration:} diff --git a/gui/theme/common/languages/en.xml b/gui/theme/common/languages/en.xml old mode 100644 new mode 100755 index afba59a02..03d4e084c --- a/gui/theme/common/languages/en.xml +++ b/gui/theme/common/languages/en.xml @@ -318,6 +318,7 @@ Time Zone Screen Screen Brightness + Vibration is disabled for this device Vibration Language Time Zone diff --git a/gui/theme/common/portrait.xml b/gui/theme/common/portrait.xml old mode 100644 new mode 100755 index 11769227f..09b7c6b70 --- a/gui/theme/common/portrait.xml +++ b/gui/theme/common/portrait.xml @@ -3329,19 +3329,28 @@ + + + + {@vibration_disabled=Vibration Disabled for Device} + + + {@button_vibration=Button Vibration:} + {@kb_vibration=Keyboard Vibration:} + {@act_vibration=Action Vibration:} diff --git a/gui/theme/common/watch.xml b/gui/theme/common/watch.xml old mode 100644 new mode 100755 index 83f4b63f2..d36bb2d5a --- a/gui/theme/common/watch.xml +++ b/gui/theme/common/watch.xml @@ -3518,6 +3518,7 @@