forked from bububa/MongoHub-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FieldMapTableController.h
36 lines (27 loc) · 947 Bytes
/
FieldMapTableController.h
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
//
// fieldMapTableController.h
// MongoHub
//
// Created by Syd on 10-6-22.
// Copyright 2010 ThePeppersStudio.COM. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "FieldMapDataObject.h"
@interface FieldMapTableController : NSControl {
NSMutableArray * nsMutaryDataObj;
IBOutlet NSTableView * idTableView;
}
@property (nonatomic, retain) NSMutableArray * nsMutaryDataObj;
@property (nonatomic, retain) NSTableView * idTableView;
- (IBAction)addAtSelectedRow:(id)pId;
- (IBAction)deleteSelectedRow:(id)pId;
- (void)addRow:(FieldMapDataObject *)pDataObj;
- (int)numberOfRowsInTableView:(NSTableView *)pTableViewObj;
- (id) tableView:(NSTableView *)pTableViewObj
objectValueForTableColumn:(NSTableColumn *)pTableColumn
row:(int)pRowIndex;
- (void)tableView:(NSTableView *)pTableViewObj
setObjectValue:(id)pObject
forTableColumn:(NSTableColumn *)pTableColumn
row:(int)pRowIndex;
@end