Files
transshift/TransmissionRPCClient/PeerListCell.h
2015-07-07 19:13:28 +03:00

29 lines
916 B
Objective-C

//
// PeerListCell.h
// TransmissionRPCClient
//
// Created by Alexey Chechetkin on 30.06.15.
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
//
#import <UIKit/UIKit.h>
#define CELL_ID_PEERLISTCELL @"peerListCell"
#define CELL_ID_PEERLISTHEADERCELL @"peerListHeaderCell"
@interface PeerListCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *clientLabel;
@property (weak, nonatomic) IBOutlet UILabel *addressLabel;
@property (weak, nonatomic) IBOutlet UILabel *progressLabel;
@property (weak, nonatomic) IBOutlet UILabel *flagLabel;
@property (weak, nonatomic) IBOutlet UILabel *uploadLabel;
@property (weak, nonatomic) IBOutlet UILabel *downloadLabel;
@property (weak, nonatomic) IBOutlet UIImageView *iconSecurity;
@property (weak, nonatomic) IBOutlet UIImageView *iconUTP;
@property (nonatomic) BOOL isSecure;
@property (nonatomic) BOOL isUTPEnabled;
@end