Blame client/iOS/Views/SessionTableCell.h

Packit 1fb8d4
/*
Packit 1fb8d4
 Custom session table cell
Packit 1fb8d4
 
Packit 1fb8d4
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit 1fb8d4
 
Packit 1fb8d4
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit 1fb8d4
 If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit 1fb8d4
 */
Packit 1fb8d4
Packit 1fb8d4
#import <UIKit/UIKit.h>
Packit 1fb8d4
Packit 1fb8d4
Packit 1fb8d4
@interface SessionTableCell : UITableViewCell 
Packit 1fb8d4
{
Packit 1fb8d4
	IBOutlet UILabel* _title;
Packit 1fb8d4
	IBOutlet UILabel* _server;
Packit 1fb8d4
	IBOutlet UILabel* _username;
Packit 1fb8d4
	IBOutlet UIImageView* _screenshot;
Packit 1fb8d4
	IBOutlet UIButton* _disconnect_button;
Packit 1fb8d4
}
Packit 1fb8d4
Packit 1fb8d4
@property (retain, nonatomic) UILabel* title;
Packit 1fb8d4
@property (retain, nonatomic) UILabel* server;
Packit 1fb8d4
@property (retain, nonatomic) UILabel* username;
Packit 1fb8d4
@property (retain, nonatomic) UIImageView* screenshot;
Packit 1fb8d4
@property (retain, nonatomic) UIButton* disconnectButton;
Packit 1fb8d4
Packit 1fb8d4
@end