FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
SessionTableCell.h
1/*
2 Custom session table cell
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12
13@interface SessionTableCell : UITableViewCell
14{
15 IBOutlet UILabel *_title;
16 IBOutlet UILabel *_server;
17 IBOutlet UILabel *_username;
18 IBOutlet UIImageView *_screenshot;
19 IBOutlet UIButton *_disconnect_button;
20}
21
22@property(retain, nonatomic) UILabel *title;
23@property(retain, nonatomic) UILabel *server;
24@property(retain, nonatomic) UILabel *username;
25@property(retain, nonatomic) UIImageView *screenshot;
26@property(retain, nonatomic) UIButton *disconnectButton;
27
28@end