forked from martinkahr/apple_remote_control
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMainController.h
More file actions
33 lines (22 loc) · 717 Bytes
/
Copy pathMainController.h
File metadata and controls
33 lines (22 loc) · 717 Bytes
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
//
// MainController.h
// RemoteControlWrapper
//
// Created by Martin Kahr on 16.03.06.
// Copyright 2006-2014 martinkahr.com. All rights reserved.
//
#import <AppKit/AppKit.h>
#include "MultiClickRemoteBehavior.h"
NS_ASSUME_NONNULL_BEGIN
@class RemoteFeedbackView;
@interface MainController : NSObject <MultiClickRemoteBehaviorDelegate> {
@private
RemoteControl* _remoteControl;
MultiClickRemoteBehavior* _remoteBehavior;
IBOutlet RemoteFeedbackView* feedbackView;
IBOutlet NSTextField* feedbackText;
}
@property (readwrite, retain, nonatomic, nullable) RemoteControl* remoteControl;
@property (readwrite, retain, nonatomic) MultiClickRemoteBehavior* remoteBehavior;
@end
NS_ASSUME_NONNULL_END