Cog/Preferences/Preferences/AppearancePane.h
Christopher Snowhill ab798fd86a Add support for custom Dock icons while running
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>
2024-11-24 21:28:34 -08:00

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