2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2011-2022 Transmission authors and contributors.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2022-06-29 00:15:52 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2022-10-19 19:28:21 +00:00
|
|
|
typedef NSString* FilterType NS_TYPED_EXTENSIBLE_ENUM;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2022-10-19 19:28:21 +00:00
|
|
|
extern FilterType const FilterTypeNone;
|
|
|
|
extern FilterType const FilterTypeActive;
|
|
|
|
extern FilterType const FilterTypeDownload;
|
|
|
|
extern FilterType const FilterTypeSeed;
|
|
|
|
extern FilterType const FilterTypePause;
|
|
|
|
extern FilterType const FilterTypeError;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2022-10-19 19:28:21 +00:00
|
|
|
typedef NSString* FilterSearchType NS_TYPED_EXTENSIBLE_ENUM;
|
|
|
|
|
|
|
|
extern FilterSearchType const FilterSearchTypeName;
|
|
|
|
extern FilterSearchType const FilterSearchTypeTracker;
|
|
|
|
|
|
|
|
extern const NSInteger kGroupFilterAllTag;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
|
|
|
@interface FilterBarController : NSViewController
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-04-29 22:51:40 +00:00
|
|
|
@property(nonatomic, readonly) NSArray<NSString*>* searchStrings;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)init;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2022-11-15 16:50:16 +00:00
|
|
|
- (IBAction)setFilter:(id)sender;
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)switchFilter:(BOOL)right;
|
2022-11-15 16:50:16 +00:00
|
|
|
- (IBAction)setSearchText:(id)sender;
|
|
|
|
- (IBAction)setSearchType:(id)sender;
|
|
|
|
- (IBAction)setGroupFilter:(id)sender;
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)reset:(BOOL)updateUI;
|
|
|
|
- (void)focusSearchField;
|
2022-11-28 04:31:26 +00:00
|
|
|
- (BOOL)isFocused;
|
2011-02-20 03:58:50 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setCountAll:(NSUInteger)all
|
|
|
|
active:(NSUInteger)active
|
|
|
|
downloading:(NSUInteger)downloading
|
|
|
|
seeding:(NSUInteger)seeding
|
2022-03-07 06:01:01 +00:00
|
|
|
paused:(NSUInteger)paused
|
|
|
|
error:(NSUInteger)error;
|
2012-07-25 12:49:11 +00:00
|
|
|
|
2011-02-20 03:58:50 +00:00
|
|
|
@end
|