mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 02:40:14 +00:00
38 lines
867 B
Objective-C
38 lines
867 B
Objective-C
//
|
|
// Settings.h
|
|
// UltraGrid GUI
|
|
//
|
|
// Created by Martin Pulec on 11/2/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface Settings : NSObject {
|
|
|
|
NSMutableDictionary *settings;
|
|
NSString *filePath;
|
|
}
|
|
|
|
@property (nonatomic, readwrite) int mtu;
|
|
@property (assign) IBOutlet NSString *display;
|
|
@property (assign) IBOutlet NSString *capture;
|
|
@property (assign) IBOutlet NSString *display_details;
|
|
@property (assign) IBOutlet NSString *capture_details;
|
|
@property (assign) IBOutlet NSString *audio_cap;
|
|
@property (assign) IBOutlet NSString *audio_play;
|
|
@property (assign) IBOutlet NSString *other;
|
|
|
|
@property (assign) IBOutlet NSString * compression;
|
|
|
|
@property (nonatomic, readwrite) int JPEGQuality;
|
|
|
|
@property (assign) IBOutlet NSString *fec;
|
|
@property (nonatomic, readwrite) int multCount;
|
|
|
|
-(void) save;
|
|
|
|
@end
|