public
Description: My OS X Thermometer client.
Clone URL: git://github.com/dustin/osx-thermometer.git
osx-thermometer / ThermController.h
100644 33 lines (25 sloc) 0.686 kb
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
//
// ThermController.h
// Thermometer
//
// Created by Dustin Sallings on Sat Mar 22 2003.
// Copyright (c) 2003 SPY internetworking. All rights reserved.
//
 
#import <AppKit/AppKit.h>
 
#import "ThermometerCell.h"
#import "PreferenceController.h"
#import "TempReading.h"
#import "Thermometer.h"
#import "TempSource.h"
 
@interface ThermController : NSWindowController {
    IBOutlet NSMatrix *thermMatrix;
    IBOutlet NSTextField *status;
    IBOutlet NSMenu *dockMenu;
 
  TempSource *tempSrc;
  NSWindowController *prefController;
}
 
-(IBAction)update:(id)sender;
-(IBAction)launchPreferences:(id)sender;
 
-(IBAction)setCelsius:(id)sender;
-(IBAction)setFarenheit:(id)sender;
 
@end