mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-17 23:09:32 +00:00
21 lines
469 B
Objective-C
21 lines
469 B
Objective-C
//
|
|
// MPTabViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 30.06.20.
|
|
// Copyright © 2020 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MPTabViewController : NSTabViewController
|
|
|
|
@property (nonatomic, copy, nullable) void (^willSelectTabHandler)(NSTabViewItem *item);
|
|
@property (nonatomic, copy, nullable) void (^didSelectTabHandler)(NSTabViewItem *item);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|