Constants.hpp
1 #pragma once
2 #include <QRectF>
3 
4 #include <score_lib_base_export.h>
5 namespace score
6 {
7 static const constexpr QRectF defaultSliderSize{0., 0., 60., 23.};
8 static const constexpr QRectF defaultKnobSize{0., 0., 35., 35.};
9 static const constexpr QRectF defaultCheckBoxSize{0., 0., 20., 20.};
10 static const constexpr QRectF defaultToggleSize{0., 0., 60., 20.};
11 static const constexpr QRectF defaultRangeSliderSize{0., 0., 60., 23.};
12 
13 struct DoubleSpinboxWithEnter;
14 struct DefaultGraphicsSliderImpl;
15 }
Base toolkit upon which the software is built.
Definition: Application.cpp:90