blob: 4bc85aa9cacad0099744dd1cc2fd429396016d85 [file]
/*
* Copyright (C) 2025 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.settings.inputmethod;
import android.content.ContentResolver;
import android.content.Context;
import android.database.ContentObserver;
import android.hardware.input.InputSettings;
import android.net.Uri;
import android.os.Handler;
import android.os.Looper;
import android.provider.Settings;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.DefaultLifecycleObserver;
import androidx.lifecycle.LifecycleOwner;
import androidx.preference.PreferenceScreen;
import com.android.server.accessibility.Flags;
import com.android.settings.core.SliderPreferenceController;
import com.android.settingslib.widget.SliderPreference;
/** Controller class that controls mouse keys max speed seekbar settings. */
public class MouseKeysMaxSpeedController extends SliderPreferenceController implements
DefaultLifecycleObserver {
private static final int SEEK_BAR_STEP = 1;
private static final int MAX_SLIDER_POSITION = 10;
private static final int MIN_SLIDER_POSITION = 1;
static final Uri ACCESSIBILITY_MOUSE_KEYS_MAX_SPEED_URI =
Settings.Secure.getUriFor(Settings.Secure.ACCESSIBILITY_MOUSE_KEYS_MAX_SPEED);
private final @NonNull ContentResolver mContentResolver;
private @Nullable SliderPreference mPreference;
final ContentObserver mSettingsObserver =
new ContentObserver(new Handler(Looper.getMainLooper())) {
@Override
public void onChange(boolean selfChange, @Nullable Uri uri) {
if (mPreference == null || uri == null) {
return;
}
updateState(mPreference);
}
};
public MouseKeysMaxSpeedController(@NonNull Context context, @NonNull String preferenceKey) {
super(context, preferenceKey);
mContentResolver = context.getContentResolver();
}
@Override
public void displayPreference(@NonNull PreferenceScreen screen) {
super.displayPreference(screen);
mPreference = screen.findPreference(getPreferenceKey());
if (mPreference == null) {
return;
}
mPreference.setTickVisible(true);
updateState(mPreference);
}
@Override
public void onStart(@NonNull LifecycleOwner owner) {
mContentResolver.registerContentObserver(
ACCESSIBILITY_MOUSE_KEYS_MAX_SPEED_URI,
/* notifyForDescendants= */ false,
mSettingsObserver);
}
@Override
public void onStop(@NonNull LifecycleOwner owner) {
mContentResolver.unregisterContentObserver(mSettingsObserver);
}
@Override
public boolean setSliderPosition(int position) {
if (position < getMin() || position > getMax()) {
return false;
}
updateMaxSpeedValue(position);
return true;
}
@Override
public int getSliderPosition() {
return getMaxSpeedFromSettings();
}
private void updateMaxSpeedValue(int position) {
Settings.Secure.putInt(mContentResolver,
Settings.Secure.ACCESSIBILITY_MOUSE_KEYS_MAX_SPEED, position);
}
private int getMaxSpeedFromSettings() {
return Settings.Secure.getInt(mContentResolver,
Settings.Secure.ACCESSIBILITY_MOUSE_KEYS_MAX_SPEED,
InputSettings.DEFAULT_MOUSE_KEYS_MAX_SPEED);
}
@Override
public int getAvailabilityStatus() {
return Flags.enableMouseKeyEnhancement() ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
}
@Override
public int getMin() {
return MIN_SLIDER_POSITION;
}
@Override
public int getMax() {
return MAX_SLIDER_POSITION;
}
}