mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-20 02:19:35 +00:00
Added key-file generator fixes #25 #76 Improvements on the context menu toolbar button to add templates entries
17 lines
350 B
Objective-C
17 lines
350 B
Objective-C
//
|
|
// MPSegmentedContextCell.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 13.08.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPSegmentedContextCell : NSSegmentedCell
|
|
|
|
@property (nonatomic, assign) SEL contextMenuAction;
|
|
@property (nonatomic, weak) id contextMenuTarget;
|
|
|
|
@end
|