mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
3749b7b776
Use synthesized properties for CSMissingROM. Remove openGLView from the xib: that will quiet a warning. Add nullability metadata to CSStaticAnalyser.
34 lines
992 B
Objective-C
34 lines
992 B
Objective-C
//
|
|
// CSApplication.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 22/09/2019.
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef CSApplication_h
|
|
#define CSApplication_h
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class CSApplication;
|
|
|
|
@protocol CSApplicationEventDelegate <NSObject>
|
|
- (BOOL)application:(nonnull CSApplication *)application shouldSendEvent:(nonnull NSEvent *)event;
|
|
@end
|
|
|
|
/*!
|
|
CSApplication differs from NSApplication in only one regard: it supports an eventDelegate.
|
|
|
|
If conected, an eventDelegate will be offered all application events prior to their propagation
|
|
into the application proper. It may opt to remove those events from the queue. This primarily
|
|
provides a way to divert things like the command key that will otherwise trigger menu
|
|
shortcuts, for periods when it is appropriate to do so.
|
|
*/
|
|
@interface CSApplication: NSApplication
|
|
@property(nonatomic, weak, nullable) id<CSApplicationEventDelegate> eventDelegate;
|
|
@end
|
|
|
|
|
|
#endif /* CSApplication_h */
|