mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 10:32:26 +00:00
Made MPContextToolbarButton usable as normal button. Added private API helper for adding buttons to NSUserNotification Remove Autotype plugin API Enhanced custom attribute plugin API Enhanced EntryActionPlugin API to decouple menu items from actual action/target setup Stubbed action on no-open documents NSUserNotifications Stubbed HMACOTP custom attribute setup
16 lines
297 B
Objective-C
16 lines
297 B
Objective-C
//
|
|
// NSUserNotification+MPAdditions.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 05.12.17.
|
|
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSUserNotification (MPAdditions)
|
|
|
|
@property (nonatomic) BOOL showsButtons;
|
|
|
|
@end
|