UI: Rename 'obs' dir to 'UI'

This is to prevent confusion both when prefixing commits and when
reading the directory structure for the first time.
This commit is contained in:
jp9000
2016-08-26 13:50:55 -07:00
parent 88d7f8129b
commit 01b274f1da
178 changed files with 1 additions and 1 deletions

22
UI/double-slider.hpp Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include <QSlider>
class DoubleSlider : public QSlider {
Q_OBJECT
double minVal, maxVal, minStep;
public:
DoubleSlider(QWidget *parent = nullptr);
void setDoubleConstraints(double newMin, double newMax,
double newStep, double val);
signals:
void doubleValChanged(double val);
public slots:
void intValChanged(int val);
void setDoubleVal(double val);
};