-
Notifications
You must be signed in to change notification settings - Fork 8
/
RSCCControlCellView.h
28 lines (21 loc) · 959 Bytes
/
RSCCControlCellView.h
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
//
// RSCCControlCellView.h
// CocoaControls
//
// Created by R0CKSTAR on 14-5-5.
// Copyright (c) 2014年 P.D.Q. All rights reserved.
//
extern int const RSCCControlCellViewImageButtonTagBase,
RSCCControlCellViewCocoaPodsButtonTagBase,
RSCCControlCellViewCloneButtonTagBase;
extern CGFloat const kCocoaPodsButtonWidthConstant,
kButtonsGapConstant;
@class RSCCControlCellViewBackgroundView;
@interface RSCCControlCellView : NSTableCellView
@property (assign) IBOutlet RSCCControlCellViewBackgroundView *backgroundView;
@property (assign) IBOutlet NSTextField *titleField, *dateField, *licenseField;
@property (assign) IBOutlet NSButton *imageButton, *cocoaPodsButton, *cloneButton;
@property (assign) IBOutlet NSImageView *star0, *star1, *star2, *star3, *star4;
@property (assign) IBOutlet NSLayoutConstraint *cocoaPodsButtonWidth, *buttonsGap;
@property (nonatomic) NSArray *stars;
@end