File: QRangeSlider.sc

package info (click to toggle)
supercollider 1%3A3.13.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80,292 kB
  • sloc: cpp: 476,363; lisp: 84,680; ansic: 77,685; sh: 25,509; python: 7,909; makefile: 3,440; perl: 1,964; javascript: 974; xml: 826; java: 677; yacc: 314; lex: 175; objc: 152; ruby: 136
file content (100 lines) | stat: -rw-r--r-- 1,818 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
RangeSlider : QAbstractStepValue {
	*qtClass { ^'QcRangeSlider' }

	*new { arg parent, bounds;
		^super.new( parent, bounds ).initQRangeSlider( bounds );
	}

	initQRangeSlider { arg bounds;
		var r;
		if( bounds.notNil ) {
			r = bounds.asRect;
			if( r.width > r.height ) {
				this.orientation_( \horizontal );
			} {
				this.orientation_( \vertical );
			}
		}
	}

	pixelStep {
		// FIXME for now we are using step instead
		^this.step;
	}

	orientation_ { arg aSymbol;
		this.setProperty( \orientation, QOrientation(aSymbol) );
	}

	lo {
		^this.getProperty( \loValue );
	}

	lo_ { arg aFloat;
		this.setProperty( \loValue, aFloat );
	}

	activeLo_ { arg aFloat;
		this.lo_(aFloat);
		this.doAction;
	}

	hi {
		^this.getProperty( \hiValue );
	}

	hi_ { arg aFloat;
		this.setProperty( \hiValue, aFloat );
	}

	activeHi_ { arg aFloat;
		this.hi_(aFloat);
		this.doAction;
	}

	range {
		^(this.hi - this.lo);
	}

	range_ { arg aFloat;
		this.hi_( this.lo + aFloat; )
	}

	activeRange_ { arg aFloat;
		this.range_(aFloat);
		this.doAction;
	}

	setSpan { arg lo, hi;
		this.lo_(lo);

		// setting lo may have flipped the roles of the endpoints
		if(this.lo == lo) {
			this.hi_(hi);
		} {
			this.lo_(hi);
		}
	}

	setSpanActive { arg lo, hi;
		this.setSpan(lo,hi);
		this.doAction;
	}

	setDeviation { arg deviation, average;
		this.setSpan(average - deviation, average + deviation);
	}

	knobColor { ^this.getProperty(\knobColor) }
	knobColor_ { arg color; this.setProperty(\knobColor, color) }

	background { ^this.getProperty(\grooveColor) }
	background_ { arg color; this.setProperty(\grooveColor, color) }

	defaultGetDrag { ^Point(this.lo,this.hi); }
	defaultCanReceiveDrag { ^(View.currentDrag.class === Point); }
	defaultReceiveDrag {
		var pt = View.currentDrag;
		this.setSpanActive( pt.x, pt.y );
	}
}