-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSmutefy.h
45 lines (38 loc) · 1.02 KB
/
Smutefy.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// Smutefy.h
// smutefy
//
// Created by Ignacio de Tomás on 16/05/10.
//
#import <Cocoa/Cocoa.h>
@interface Smutefy : NSObject
{
NSStatusItem *statusItem;
NSString *defaultOutput;
NSString *pathToSwitchAudio;
NSString *latestNotification;
NSPopUpButton *devices;
NSButton *checkUseCustomDevice;
NSTextView *regex;
NSTextField *labelValid;
NSMenuItem *muteAndAddMenu;
}
- (void)refreshSaveddevices;
- (void)monitorGrowl;
- (BOOL)isAd:(NSString *)message;
- (void)changeAudioDevice:(BOOL)mute;
- (void)setStatusItem:(NSStatusItem *)item;
- (void)setDevicesObject:(NSPopUpButton *)item;
- (void)setupGrowl;
- (void)initializeVars;
- (void)setcheckUseCustomDevice:(NSButton *)item;
- (NSMutableArray *)systemOutputDevices;
- (void)setRegex:(NSTextView *)item;
- (void)setMuteAndAdd:(NSMenuItem *)item;
- (void)changeMuteAndAddStatus:(BOOL)enabled;
- (void)muteAndBlacklist;
- (NSString *)escapeRegex:(NSString *)rule;
- (void)syncRegexPreferences;
- (void)setLabelValid:(NSTextField *)item;
- (void)validateRegex;
@end