transmission/macosx/MessageWindowController.h

18 lines
452 B
C
Raw Normal View History

// This file Copyright © 2006-2022 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2007-09-16 01:02:06 +00:00
#import <AppKit/AppKit.h>
2007-09-16 01:02:06 +00:00
@interface MessageWindowController : NSWindowController
- (void)updateLog:(NSTimer*)timer;
2007-09-16 01:02:06 +00:00
2022-11-15 16:50:16 +00:00
- (IBAction)changeLevel:(id)sender;
- (IBAction)changeFilter:(id)sender;
- (IBAction)clearLog:(id)sender;
2007-09-16 01:02:06 +00:00
2022-11-15 16:50:16 +00:00
- (IBAction)writeToFile:(id)sender;
2007-09-16 01:02:06 +00:00
@end