-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathExperimentsViewController.h
More file actions
33 lines (28 loc) · 953 Bytes
/
ExperimentsViewController.h
File metadata and controls
33 lines (28 loc) · 953 Bytes
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
29
30
31
32
33
//
// ExperimentsViewController.h
// CernVM Co-Pilot
//
// Created by Eamon Ford on 6/20/12.
// Copyright (c) 2012 The Byte Factory. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef enum {
ATLAS,
CMS,
ALICE,
LHCb,
LHC
} ExperimentType;
@interface ExperimentsViewController : UIViewController
{
IBOutlet UIImageView *mapImageView;
IBOutlet UIImageView *shadowImageView;
UIPopoverController *popoverController;
IBOutlet UIButton *atlasButton, *cmsButton, *aliceButton, *lhcbButton, *lhcButton;
}
@property (nonatomic, strong) UIImageView *mapImageView;
@property (nonatomic, strong) UIImageView *shadowImageView;
@property (nonatomic, strong) UIButton *atlasButton, *cmsButton, *aliceButton, *lhcbButton, *lhcButton;
@property (nonatomic, strong) UIPopoverController *popoverController;
- (void)setupVisualsForOrientation:(UIDeviceOrientation)orientation withDuration:(NSTimeInterval)duration;
@end