mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
29 lines
916 B
Objective-C
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
|