mirror of
https://github.com/YACReader/yacreader
synced 2026-04-12 15:49:53 -04:00
Some checks failed
Build / Initialization (push) Has been cancelled
Build / Code Format Validation (push) Has been cancelled
Build / Linux (Qt6) (push) Has been cancelled
Build / Linux (Qt6 + 7zip) (push) Has been cancelled
Build / macOS (Qt6 Universal) (push) Has been cancelled
Build / Windows x64 (Qt6) (push) Has been cancelled
Build / Windows ARM64 (Qt6) (push) Has been cancelled
Build / Docker amd64 Image (push) Has been cancelled
Build / Docker arm64 Image (push) Has been cancelled
Build / Publish Dev Builds (push) Has been cancelled
Build / Publish Release (push) Has been cancelled
Build / Publish YACReader10 Pre-release Builds (push) Has been cancelled
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
#ifndef YACREADER_3D_FLOW_CONFIG_WIDGET_H
|
|
#define YACREADER_3D_FLOW_CONFIG_WIDGET_H
|
|
|
|
#include "flow_types.h" //TODO
|
|
|
|
#include <QWidget>
|
|
|
|
class QRadioButton;
|
|
class YACReaderSpinSliderWidget;
|
|
class QSlider;
|
|
class QCheckBox;
|
|
class QPushButton;
|
|
class QGroupBox;
|
|
|
|
class YACReader3DFlowConfigWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
YACReader3DFlowConfigWidget(QWidget *parent = 0);
|
|
|
|
// GL.........................
|
|
QRadioButton *radioClassic;
|
|
QRadioButton *radioStripe;
|
|
QRadioButton *radioOver;
|
|
QRadioButton *radionModern;
|
|
QRadioButton *radioDown;
|
|
|
|
YACReaderSpinSliderWidget *xRotation;
|
|
YACReaderSpinSliderWidget *yPosition;
|
|
YACReaderSpinSliderWidget *coverDistance;
|
|
YACReaderSpinSliderWidget *centralDistance;
|
|
YACReaderSpinSliderWidget *zoomLevel;
|
|
YACReaderSpinSliderWidget *yCoverOffset;
|
|
YACReaderSpinSliderWidget *zCoverOffset;
|
|
YACReaderSpinSliderWidget *coverRotation;
|
|
YACReaderSpinSliderWidget *fadeOutDist;
|
|
YACReaderSpinSliderWidget *lightStrength;
|
|
YACReaderSpinSliderWidget *maxAngle;
|
|
|
|
QSlider *performanceSlider;
|
|
QCheckBox *vSyncCheck;
|
|
|
|
QPushButton *showAdvancedOptions;
|
|
QGroupBox *optionsGroupBox;
|
|
|
|
public slots:
|
|
void setValues(Preset preset);
|
|
void avancedOptionToogled(bool show);
|
|
};
|
|
|
|
#endif // YACREADER_3D_FLOW_CONFIG_WIDGET_H
|