// Copyright (C) 2025 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include QT_BEGIN_NAMESPACE class QKeyEvent; QT_END_NAMESPACE namespace Utils { class InputControl : public QObject { Q_OBJECT public: enum Type { LineEdit, TextEdit }; explicit InputControl(Type type, QObject *parent = nullptr); bool isAcceptableInput(const QKeyEvent *event) const; static bool isCommonTextEditShortcut(const QKeyEvent *ke); private: const Type m_type; }; } // namespace Utils