forked from InfinitApps/InfColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfColorSquarePicker.h
More file actions
36 lines (25 loc) · 931 Bytes
/
Copy pathInfColorSquarePicker.h
File metadata and controls
36 lines (25 loc) · 931 Bytes
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
//==============================================================================
//
// InfColorSquarePicker.h
// InfColorPicker
//
// Created by Troy Gaul on 8/9/10.
//
// Copyright (c) 2011 InfinitApps LLC - http://infinitapps.com
// Some rights reserved: http://opensource.org/licenses/MIT
//
//==============================================================================
#import <UIKit/UIKit.h>
@class InfColorIndicatorView;
//------------------------------------------------------------------------------
@interface InfColorSquareView : UIImageView
@property( nonatomic ) float hue;
@end
//------------------------------------------------------------------------------
@interface InfColorSquarePicker : UIControl {
InfColorIndicatorView* indicator;
}
@property( nonatomic ) float hue;
@property( nonatomic ) CGPoint value;
@end
//------------------------------------------------------------------------------