-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMBPageControlView.swift
426 lines (346 loc) · 11.6 KB
/
MBPageControlView.swift
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
//
// MBPageControlView.swift
// MBPageControl
//
// Created by Viorel Porumbescu on 04/08/2017.
// Copyright © 2017 Viorel. All rights reserved.
//
import Cocoa
@IBDesignable
class MBPageControlView: NSControl {
@IBInspectable var distanceBetweenKnobs:CGFloat = 6 {
didSet {
self.createPages()
}
}
@IBInspectable var insetKnobHeight:CGFloat = 25 {
didSet {
self.createPages()
}
}
// Visual properties for knobs
@IBInspectable var circleBackgroundColor:NSColor = NSColor(white: 0.92, alpha: 1.0) {
didSet{
self.updateControlProperties()
}
}
@IBInspectable var circleBorderWidth:CGFloat = 0.75 {
didSet{
self.updateControlProperties()
}
}
@IBInspectable var circleBorderColor:NSColor = NSColor(white: 0.8, alpha: 1.0) {
didSet {
self.updateControlProperties()
}
}
@IBInspectable var circleSelectedColor:NSColor = NSColor(red:0.306, green:0.824, blue:0.341, alpha:1) {
didSet{
self.updateControlProperties()
}
}
@IBInspectable var circleSelectedBorderColor:NSColor = NSColor(white: 0.8, alpha: 1.0) {
didSet {
self.updateControlProperties()
}
}
@IBInspectable var circleHoverBorderColor:NSColor = NSColor(white: 0.75, alpha: 1.0) {
didSet{
self.updateControlProperties()
}
}
@IBInspectable var circleInsetPercent:CGFloat = 10 {
didSet{
self.updateControlProperties()
}
}
//Visual properties for View
@IBInspectable var viewBorderColor:NSColor = NSColor(white: 0.8, alpha: 1.0) {
didSet{
updateLayerProperties()
}
}
@IBInspectable var viewBorderWidth:CGFloat = 0.75 {
didSet{
self.updateLayerProperties()
}
}
@IBInspectable var viewBackgroundColor:NSColor = NSColor.white {
didSet {
self.updateLayerProperties()
}
}
@IBInspectable var viewCornerRadius:CGFloat = 5 {
didSet{
self.updateLayerProperties()
}
}
//Pages
@IBInspectable var numberOfPages:Int = 5 {
didSet{
self.createPages()
}
}
@IBInspectable var selectedPage:Int = 0 {
didSet{
// if the user will enter an invalil number, we will make sure the final selection is still valid.
self.selectedPage = selectedPage % numberOfPages
}
}
@IBInspectable var distributeHorizontaly:Bool = true {
didSet{
self.createPages()
}
}
private var _pages:[MBPageControlKnobView] = []
var indexOfSelectedItem:Int {
get{
for item in _pages {
if item.currentStatus == .selected {
selectedPage = item.id
return item.id
}
}
return -1
}
set {
selectedPage = newValue
for item in _pages {
if item.id == newValue {
item.currentStatus = .selected
} else {
item.currentStatus = .inactive
}
}
}
}
private var _pageViewSize:NSSize {
get {
let inssetPercent = (100 - insetKnobHeight) / 100
return NSMakeSize(self.bounds.height * inssetPercent, self.bounds.height * inssetPercent)
}
}
private var _isEnabled:Bool = true
override var isEnabled: Bool {
set{
self._isEnabled = newValue
if newValue {
self.alphaValue = 1.0
} else {
self.alphaValue = 0.7
}
self.updateControlProperties()
}
get {
return _isEnabled
}
}
override func prepareForInterfaceBuilder() {
updateLayerProperties()
createPages()
updateControlProperties()
}
//MARK: Init
override init(frame frameRect: NSRect) {
super.init(frame: frameRect)
self.updateLayerProperties()
self.updateControlProperties()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
self.updateLayerProperties()
self.updateControlProperties()
}
override func awakeFromNib() {
self.updateLayerProperties()
self.updateControlProperties()
self.createPages()
}
//MARK: Draw
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
// Drawing code here.
}
//MARK: functionality
func aKnobHasBeenSelected(_ sender:MBPageControlKnobView) {
if self.isEnabled {
self.selectedPage = sender.id
self.indexOfSelectedItem = sender.id
if self.action != nil {
NSApp.sendAction(self.action!, to: self.target, from: self)
} else {
Swift.print("Are you sure you didn't forget to connect an action to this control?")
}
}
}
//MARK: Manage ui
private func createPages() {
for view in self.subviews {
view.removeFromSuperview()
}
var distance:CGFloat = distanceBetweenKnobs //default distance between knobs and margins
let yOrigin = (self.bounds.height - self._pageViewSize.height) / 2
var firstX:CGFloat = 0
if self.distributeHorizontaly {
let allWidthControl = _pageViewSize.width * CGFloat(numberOfPages )
distance = (self.bounds.width - allWidthControl) / CGFloat(numberOfPages + 1)
firstX = distance
distance = distance + _pageViewSize.width
} else {
let allWidthControl = _pageViewSize.width * CGFloat(numberOfPages) + (distance * CGFloat(numberOfPages - 1))
firstX = (self.bounds.width - allWidthControl) / 2
distance = _pageViewSize.width + distance
}
for index in 0...self.numberOfPages - 1 {
let knob = MBPageControlKnobView(frame: NSMakeRect(firstX, yOrigin, _pageViewSize.width, _pageViewSize.height))
knob.circleBackgroundColor = self.circleBackgroundColor
knob.circleSelectedColor = self.circleSelectedColor
knob.circleBorderColor = self.circleBorderColor
knob.circleBorderWidth = self.circleBorderWidth
knob.circleHoverBorderColor = self.circleHoverBorderColor
knob.circleInsetPercent = self.circleInsetPercent
knob.action = #selector(aKnobHasBeenSelected(_:))
knob.target = self
knob.id = index
knob.isEnabled = self.isEnabled
knob.currentStatus = .inactive
if index == selectedPage {
knob.currentStatus = .selected
}
self.addSubview(knob)
_pages.append(knob)
firstX = firstX + distance
}
}
private func updateControlProperties() {
for item in _pages {
item.circleBackgroundColor = self.circleBackgroundColor
item.circleSelectedColor = self.circleSelectedColor
item.circleBorderColor = self.circleBorderColor
item.circleBorderWidth = self.circleBorderWidth
item.circleHoverBorderColor = self.circleHoverBorderColor
item.circleInsetPercent = self.circleInsetPercent
item.isEnabled = self.isEnabled
}
}
private func updateLayerProperties(){
self.wantsLayer = true
self.layer?.backgroundColor = self.viewBackgroundColor.cgColor
self.layer?.borderColor = self.viewBorderColor.cgColor
self.layer?.borderWidth = self.viewBorderWidth
self.layer?.cornerRadius = self.viewCornerRadius
self.layer?.masksToBounds = true
}
}
class MBPageControlKnobView:NSControl {
enum Status {
case hover
case selected
case inactive
}
// Visual properties for knobs
var circleBackgroundColor:NSColor = NSColor(white: 0.92, alpha: 1.0) {
didSet{
self.needsDisplay = true
}
}
var circleBorderWidth:CGFloat = 0.75 {
didSet{
self.needsDisplay = true
}
}
var circleBorderColor:NSColor = NSColor(white: 0.8, alpha: 1.0) {
didSet {
self.needsDisplay = true
}
}
var circleSelectedColor:NSColor = NSColor(red:0.306, green:0.824, blue:0.341, alpha:1) {
didSet{
self.needsDisplay = true
}
}
var circleSelectedBorderColor:NSColor = NSColor(white: 0.8, alpha: 1.0) {
didSet {
self.needsDisplay = true
}
}
var circleHoverBorderColor:NSColor = NSColor.red {
didSet{
self.needsDisplay = true
}
}
var circleInsetPercent:CGFloat = 10 {
didSet{
self.needsDisplay = true
}
}
//properties
var currentStatus:Status = .inactive {
didSet{
self.needsDisplay = true
}
}
//The id will tell the maincontroll which knob will be selected.
var id:Int = 0
var trackingArea:NSTrackingArea!
override func updateTrackingAreas() {
if trackingArea != nil {
self.removeTrackingArea(trackingArea)
}
trackingArea = NSTrackingArea(rect: self.bounds , options: [NSTrackingAreaOptions.mouseEnteredAndExited , NSTrackingAreaOptions.mouseMoved, NSTrackingAreaOptions.activeAlways], owner: self, userInfo: nil)
self.addTrackingArea(trackingArea)
}
//MARK: Draw
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
let circle = NSBezierPath(ovalIn: dirtyRect.insetBy(dx: circleBorderWidth, dy: circleBorderWidth))
circleBackgroundColor.set()
circle.fill()
circle.lineWidth = circleBorderWidth
switch currentStatus {
case .inactive:
self.isEnabled ? circleBorderColor.set() : NSColor.disabledControlTextColor.set()
circle.stroke()
break
case .hover:
circleHoverBorderColor.set()
circle.stroke()
break
case .selected:
isEnabled ? circleSelectedBorderColor.set() : NSColor.disabledControlTextColor.set()
circle.stroke()
let selection = NSBezierPath(ovalIn: dirtyRect.insetBy(dx: (dirtyRect.width / 100) * circleInsetPercent, dy: (dirtyRect.width / 100) * circleInsetPercent))
isEnabled ? circleSelectedColor.set() : NSColor.disabledControlTextColor.set()
selection.fill()
break
}
}
override func mouseExited(with event: NSEvent) {
if !isEnabled {
return
}
if self.currentStatus == .selected {
return
}
self.currentStatus = .inactive
}
override func mouseEntered(with event: NSEvent) {
if !isEnabled {
return
}
if self.currentStatus == .selected {
return
}
self.currentStatus = .hover
}
override func mouseDown(with event: NSEvent) {
if self.action != nil {
NSApp.sendAction(self.action!, to: self.target, from: self)
}
// if self.currentStatus == .selected {
// self.currentStatus = .inactive
// } else {
// self.currentStatus = .selected
// }
}
}