Rev | Line | |
---|
[26] | 1 | //
|
---|
| 2 | // PSApplication.h
|
---|
| 3 | // Pester
|
---|
| 4 | //
|
---|
| 5 | // Created by Nicholas Riley on Fri Oct 11 2002.
|
---|
| 6 | // Copyright (c) 2002 Nicholas Riley. All rights reserved.
|
---|
| 7 | //
|
---|
| 8 |
|
---|
| 9 | #import <AppKit/AppKit.h>
|
---|
| 10 |
|
---|
| 11 | @class PSAlarmsController;
|
---|
[28] | 12 | @class PSAlarmSetController;
|
---|
[61] | 13 | @class PSTimer;
|
---|
[129] | 14 | @class PSPreferencesController;
|
---|
[26] | 15 |
|
---|
| 16 | @interface PSApplication : NSApplication {
|
---|
| 17 | PSAlarmsController *alarmsController;
|
---|
[28] | 18 | IBOutlet PSAlarmSetController *alarmSetController;
|
---|
[129] | 19 | PSPreferencesController *preferencesController;
|
---|
[61] | 20 | PSTimer *dockUpdateTimer;
|
---|
[28] | 21 | NSTimeInterval dockUpdateInterval;
|
---|
| 22 | NSImage *appIconImage;
|
---|
[26] | 23 | }
|
---|
| 24 |
|
---|
[28] | 25 | - (IBAction)orderFrontSetAlarmPanel:(id)sender;
|
---|
[26] | 26 | - (IBAction)orderFrontAlarmsPanel:(id)sender;
|
---|
[129] | 27 | - (IBAction)orderFrontPreferencesPanel:(id)sender;
|
---|
[34] | 28 | - (IBAction)stopAlerts:(id)sender;
|
---|
[26] | 29 |
|
---|
[522] | 30 | - (void)orderOutSetAlarmPanelIfHidden;
|
---|
| 31 |
|
---|
[26] | 32 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.