The emoji labeled buttons will convert and save their respective state icon to the settings folder, and refresh the current icon as necessary. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
19 lines
336 B
Objective-C
19 lines
336 B
Objective-C
//
|
|
// AppearancePane.h
|
|
// General
|
|
//
|
|
// Created by Christopher Snowhill on 11/24/24.
|
|
//
|
|
//
|
|
|
|
#import "GeneralPreferencePane.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppearancePane : GeneralPreferencePane {
|
|
}
|
|
|
|
- (IBAction)setDockIconStop:(id)sender;
|
|
- (IBAction)setDockIconPlay:(id)sender;
|
|
- (IBAction)setDockIconPause:(id)sender;
|
|
|
|
@end
|