mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 15:12:21 +00:00
26 lines
615 B
Objective-C
26 lines
615 B
Objective-C
//
|
|
// MPFixAutotypeWindowController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 26/03/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class MPDocument;
|
|
|
|
@interface MPFixAutotypeWindowController : NSWindowController <NSTableViewDataSource, NSTableViewDelegate>
|
|
|
|
@property (weak) IBOutlet NSTableView *tableView;
|
|
@property (nonatomic, weak) MPDocument *workingDocument;
|
|
|
|
/**
|
|
* Clears the autotype sequences for the selected entries, groups or window associations
|
|
*
|
|
* @param sender sender of the action
|
|
*/
|
|
- (IBAction)clearAutotype:(id)sender;
|
|
|
|
@end
|