File: HistoryList.h

package info (click to toggle)
wcalc 2.3.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,444 kB
  • ctags: 926
  • sloc: ansic: 8,993; objc: 1,946; lex: 798; sh: 766; yacc: 623; makefile: 79
file content (17 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* HistoryList */

#include <Cocoa/Cocoa.h>

#include "WcalcController.h"

@interface HistoryList : NSObject
{
    IBOutlet NSTextField *expressionField;
    IBOutlet NSTableView *theList;
}
- (IBAction)rowSelected:(id)sender;
- (int)numberOfRowsInTableView:(NSTableView *)atv;
- (id)tableView:(NSTableView *)atv objectValueForTableColumn:(NSTableColumn*)col row:(int)rowIndex;
- (IBAction)clearHistory:(id)sender;
- (IBAction)copyMe:(id)sender;
@end