-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWMonthSelectTable.h
More file actions
34 lines (24 loc) · 901 Bytes
/
SWMonthSelectTable.h
File metadata and controls
34 lines (24 loc) · 901 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
34
//
// SWMonthSelectTable.h
// This file is part of the "SWApplicationSupport" project, and is distributed under the MIT License.
//
// Created by Administrator on 4/11/07.
// Copyright 2007 Samuel Williams. All rights reserved.
//
#import <Cocoa/Cocoa.h>
// This is both a table delegate _and_ a datasource.
@interface SWMonthSelectTable : NSObject {
IBOutlet NSDatePicker * dateToUpdate;
}
- (IBAction) plusWeek: (id) sender;
- (IBAction) minusWeek: (id) sender;
- (NSString*) monthNameForNumber: (int)index;
- (BOOL)tableView:(NSTableView *)aTableView
shouldEditTableColumn:(NSTableColumn *)aTableColumn
row:(int)rowIndex;
- (BOOL)tableView:(NSTableView *)aTableView shouldSelectRow:(int)rowIndex;
- (id)tableView:(NSTableView *)aTableView
objectValueForTableColumn:(NSTableColumn *)aTableColumn
row:(int)rowIndex;
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
@end