File: SimpleOBEXClient.h

package info (click to toggle)
python-lightblue 0.3.2-5
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,376 kB
  • ctags: 852
  • sloc: objc: 4,009; python: 2,641; ansic: 1,369; cpp: 818; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 639 bytes parent folder | download | duplicates (3)
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
/* SimpleOBEXClient */

#import <Cocoa/Cocoa.h>

@class BBBluetoothOBEXClient;

@interface SimpleOBEXClient : NSObject
{
    BBBluetoothOBEXClient *mClient;
    
    IBOutlet id addressField;
    IBOutlet id cancelButton;
    IBOutlet id channelField;
    IBOutlet id connectButton;
    IBOutlet id connectionProgress;
    IBOutlet id filePathField;
    IBOutlet id logTextView;
    IBOutlet id sendButton;
    IBOutlet id transferProgress;
}
- (IBAction)findService:(id)sender;
- (IBAction)connectOrDisconnect:(id)sender;
- (IBAction)chooseFile:(id)sender;
- (IBAction)sendFile:(id)sender;
- (IBAction)cancelFileTransfer:(id)sender;
@end