forked from dev2dev/Molecules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SLSMoleculeDataSourceViewController.m
124 lines (97 loc) · 3.16 KB
/
SLSMoleculeDataSourceViewController.m
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//
// SLSMoleculeDataSourceViewController.m
// Molecules
//
// The source code for Molecules is available under a BSD license. See License.txt for details.
//
// Created by Brad Larson on 11/9/2008.
//
// This handles the table view listing the different data sources Molecule supports
#import "SLSMoleculeDataSourceViewController.h"
#import "SLSMoleculeSearchViewController.h"
#import "SLSMoleculeAppDelegate.h"
@implementation SLSMoleculeDataSourceViewController
#pragma mark -
#pragma mark Initialization and teardown
- (id)initWithStyle:(UITableViewStyle)style
{
if (self = [super initWithStyle:style])
{
if ([SLSMoleculeAppDelegate isRunningOniPad])
{
self.contentSizeForViewInPopover = CGSizeMake(320.0, 600.0);
}
self.navigationItem.title = NSLocalizedStringFromTable(@"Online Data Source", @"Localized", nil);
self.navigationItem.rightBarButtonItem = nil;
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
#pragma mark -
#pragma mark Table view methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger index = [indexPath row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSLocalizedStringFromTable(@"Download", @"Localized", nil)];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:NSLocalizedStringFromTable(@"Download", @"Localized", nil)] autorelease];
cell.textLabel.textColor = [UIColor blackColor];
}
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.textColor = [UIColor blackColor];
switch (index)
{
case 0: cell.textLabel.text = NSLocalizedStringFromTable(@"RCSB Protein Data Bank", @"Localized", nil); break;
case 1: cell.textLabel.text = NSLocalizedStringFromTable(@"Custom Location", @"Localized", nil); break;
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger index = [indexPath row];
switch (index)
{
case 0:
{
// Go to the PDB search view
SLSMoleculeSearchViewController *searchViewController = [[SLSMoleculeSearchViewController alloc] initWithStyle:UITableViewStylePlain];
[self.navigationController pushViewController:searchViewController animated:YES];
[searchViewController release];
}; break;
case 1:
{
// Go to the custom URL download view
SLSMoleculeCustomDownloadViewController *customURLViewController = [[SLSMoleculeCustomDownloadViewController alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:customURLViewController animated:YES];
[customURLViewController release];
}; break;
}
}
#pragma mark -
#pragma mark MoleculeDownloadDelegate protocol method
/*
- (void)viewDidDisappear:(BOOL)animated {
}
*/
- (void)didReceiveMemoryWarning
{
}
#pragma mark -
#pragma mark Accessors
@end