// // AppDelegate.m // iTunes Volume Control // // Created by Andrea Alberti on 25.12.12. // Copyright (c) 2012 Andrea Alberti. All rights reserved. // #import #import #import "AppDelegate.h" @interface SystemApplication : NSObject{ @private } -(id)init; -(bool)isMuted; -(NSString *)getDefaultOutputDeviceName; @property (assign, nonatomic) double currentVolume; // The sound output volume (0 = minimum, 100 = maximum) @property (assign, nonatomic) double oldVolume; @property (assign, nonatomic) NSImage* icon; @end