forked from avh4/time-tracker-for-mac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTTDataSource.m
57 lines (50 loc) · 1.68 KB
/
TTDataSource.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
//
// TTDataSource.m
// Time Tracker
//
// Created by Aaron VonderHaar on 7/21/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "TTDataSource.h"
#import "TWorkPeriod.h"
#import "TimeIntervalFormatter.h"
@implementation TTDataSource
- (void) setWorkPeriods: (NSArray *) wp
{
[workPeriods release];
workPeriods = [wp retain];
}
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)rowIndex
{
if ([[tableColumn identifier] isEqualToString: @"Date"]) {
return [[[workPeriods objectAtIndex: rowIndex] startTime]
descriptionWithCalendarFormat: @"%m/%d/%Y"
timeZone: nil locale: nil];
}
if ([[tableColumn identifier] isEqualToString: @"StartTime"]) {
return [[[workPeriods objectAtIndex: rowIndex] startTime]
descriptionWithCalendarFormat: @"%H:%M:%S"
timeZone: nil locale: nil];
}
if ([[tableColumn identifier] isEqualToString: @"EndTime"]) {
NSDate *endTime = [[workPeriods objectAtIndex: rowIndex] endTime];
if (endTime == nil)
return @"";
else
return [endTime
descriptionWithCalendarFormat: @"%H:%M:%S"
timeZone: nil locale: nil];
}
if ([[tableColumn identifier] isEqualToString: @"Duration"]) {
return [TimeIntervalFormatter secondsToString: [[workPeriods objectAtIndex: rowIndex] totalTime]];
}
return nil;
}
@end
// This initialization function gets called when we import the Ruby module.
// It doesn't need to do anything because the RubyCocoa bridge will do
// all the initialization work.
// The rbiphonetest test framework automatically generates bundles for
// each objective-c class containing the following line. These
// can be used by your tests.
void Init_TTDataSource() { }