Files
MacPass/MacPass/MPPluginDataViewController.m
2017-09-04 09:29:08 +02:00

99 lines
3.4 KiB
Objective-C

//
// MPPluginDataViewController.m
// MacPass
//
// Created by Michael Starke on 02/02/2017.
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
//
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#import "MPPluginDataViewController.h"
#import "MPCustomFieldTableCellView.h"
#import <KeePassKit/KeePassKit.h>
@interface MPPluginDataViewController ()
@property (nonatomic, readonly, assign) KPKNode *representedNode;
@property (strong) NSDictionaryController *pluginDataController;
@property (weak) IBOutlet NSTableView *pluginDataTabelView;
@end
@implementation MPPluginDataViewController
- (NSString *)nibName {
return @"PluginDataView";
}
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if(self) {
_pluginDataController = [[NSDictionaryController alloc] init];
}
return self;
}
- (void)viewDidLoad {
[self.pluginDataController bind:NSContentDictionaryBinding toObject:self.representedObject withKeyPath:NSStringFromSelector(@selector(customData)) options:nil];
[self.pluginDataTabelView bind:NSContentBinding toObject:self.pluginDataController withKeyPath:NSStringFromSelector(@selector(arrangedObjects)) options:nil];
self.pluginDataTabelView.backgroundColor = NSColor.clearColor;
}
- (KPKNode *)representedNode {
if([self.representedObject isKindOfClass:KPKNode.class]) {
return self.representedObject;
}
return nil;
}
- (IBAction)removePluginData:(id)sender {
if(![sender isKindOfClass:NSButton.class]) {
return; // wrong sender
}
NSInteger tag = ((NSButton *)sender).tag;
if(tag >= 0 && tag < [self.pluginDataController.arrangedObjects count]) {
id keyValueStore = ((NSArray *)self.pluginDataController.arrangedObjects)[tag];
[self.representedNode removeCustomDataForKey:[keyValueStore key]];
}
}
- (IBAction)removeAllPluginData:(id)sender {
[self.representedNode clearCustomData];
}
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
MPCustomFieldTableCellView *view = [tableView makeViewWithIdentifier:@"PluginCell" owner:self];
[view.valueTextField bind:NSValueBinding
toObject:view
withKeyPath:[NSString stringWithFormat:@"%@.%@", NSStringFromSelector(@selector(objectValue)), NSStringFromSelector(@selector(value))]
options:nil];
[view.labelTextField bind:NSValueBinding
toObject:view
withKeyPath:[NSString stringWithFormat:@"%@.%@", NSStringFromSelector(@selector(objectValue)), NSStringFromSelector(@selector(key))]
options:nil];
view.removeButton.target = self;
view.removeButton.action = @selector(removePluginData:);
view.removeButton.tag = row;
view.observer = self.observer;
return view;
}
@end