QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
685 B

/*
This file is part of the KDE Control Center Module for Joysticks
SPDX-FileCopyrightText: 2003 Martin Koller <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef _CALDIALOG_H_
#define _CALDIALOG_H_
#include <QLabel>
#include <QDialog>
class JoyDevice;
// the dialog which tells the user all steps to calibrate the device
class CalDialog : public QDialog
{
Q_OBJECT
public:
CalDialog(QWidget *parent, JoyDevice *joy);
void calibrate();
private:
void waitButton(int axis, bool press, int &lastVal);
private Q_SLOTS:
virtual void slotNext();
private:
JoyDevice *joydev;
QLabel *text;
QLabel *valueLbl;
};
#endif