42 lines
938 B
C++
42 lines
938 B
C++
/***************************************************************************
|
|
|
|
source::worx raDIYo
|
|
Copyright © 2020-2022 c.holzheuer
|
|
chris@sourceworx.org
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef SWDUMMYPUSHDIAL_H
|
|
#define SWDUMMYPUSHDIAL_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include <ui_swdummypushdial.h>
|
|
|
|
|
|
/**
|
|
* @brief Simuliert einen RotaryEncoder unter Windows als Gui-Widget
|
|
*/
|
|
|
|
class SWDummyPushDial : public QWidget, private Ui_SWDummyPushDial
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SWDummyPushDial( QWidget* parent = nullptr );
|
|
|
|
//??
|
|
QPushButton& pushButton();
|
|
QDial& dial();
|
|
|
|
|
|
};
|
|
|
|
#endif // SWDUMMYPUSHDIAL_H
|