2025-08-25 07:43:31 +07:00
|
|
|
// Copyright 2025 ZSA Technology Labs, Inc <contact@zsa.io>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#ifndef NAVIGATOR_SCROLL_DIVIDER
|
|
|
|
|
#define NAVIGATOR_SCROLL_DIVIDER 10
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-09-12 16:15:34 +07:00
|
|
|
#ifndef NAVIGATOR_SCROLL_THRESHOLD
|
|
|
|
|
#define NAVIGATOR_SCROLL_THRESHOLD 0f
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef NAVIGATOR_SCROLL_ACCELERATION
|
|
|
|
|
#define NAVIGATOR_SCROLL_ACCELERATION 1.5f
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef NAVIGATOR_SCROLL_MAX_SPEED
|
|
|
|
|
#define NAVIGATOR_SCROLL_MAX_SPEED 8.0f
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2025-08-25 07:43:31 +07:00
|
|
|
#ifdef POINTING_DEVICE_DRIVER_navigator_trackball
|
|
|
|
|
#define NAVIGATOR_TURBO_MULTIPLIER 3
|
|
|
|
|
#define NAVIGATOR_AIM_DIVIDER 3
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef POINTING_DEVICE_DRIVER_navigator_trackpad
|
|
|
|
|
#define NAVIGATOR_TURBO_MULTIPLIER 2
|
|
|
|
|
#define NAVIGATOR_AIM_DIVIDER 2
|
|
|
|
|
#endif
|