File indexing completed on 2025-07-06 04:05:10

0001 /*
0002  * SPDX-FileCopyrightText: 2022 Sharaf Zaman <shzam@sdf.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef __KISGESTURESELECTOR_H_
0008 #define __KISGESTURESELECTOR_H_
0009 
0010 #include "input/kis_shortcut_configuration.h"
0011 #include <kcombobox.h>
0012 
0013 class KisGestureSelector : public KComboBox
0014 {
0015     Q_OBJECT
0016 public:
0017     KisGestureSelector(QWidget *parent);
0018     void setGesture(KisShortcutConfiguration::GestureAction gestureAction);
0019     KisShortcutConfiguration::GestureAction gesture();
0020 };
0021 
0022 
0023 #endif // __KISGESTURESELECTOR_H_