add the mouse absolute coordinate option

This commit is contained in:
Gergely Mincsovics
2020-12-27 01:55:29 +01:00
parent 3f19c04a8f
commit beb8d06191
6 changed files with 35 additions and 13 deletions

View File

@ -24,7 +24,7 @@ class AxisEdit : public QDialog {
void setState( int val );
protected slots:
//slots for GUI events
void gradientChanged( bool on );
void gradientChanged( int index );
void modeChanged( int index );
void transferCurveChanged( int index );
void throttleChanged( int index );
@ -33,8 +33,7 @@ class AxisEdit : public QDialog {
//the associated Axis that needs to be set.
Axis *axis;
//the important parts of the dialog:
QCheckBox *chkGradient;
QComboBox *cmbMode, *cmbThrottle, *cmbTransferCurve;
QComboBox *chkGradient, *cmbMode, *cmbThrottle, *cmbTransferCurve;
QFrame *mouseBox, *keyBox;
QSpinBox *spinSpeed;
QLabel *lblSensitivity;