mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 09:29:24 +00:00
Creating with templates not supported yet. Templates are listed in Context-Menu under the AddEntry Toolbar Toolbar Button is missing an Arrow for now. Control-Size is not working correctly for now Nested Template or Trash groups aren't considered, this is a bug! Minor changes to the UI (Settings tabs now use common icons) Added Workflow-Settings tab to extract all the custom action possible on entries. The copy or open on URL dbl-click setting will move over to this tab.
43 lines
813 B
Objective-C
43 lines
813 B
Objective-C
//
|
|
// MPWorkflowSettingsController.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 30.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPWorkflowSettingsController.h"
|
|
|
|
@interface MPWorkflowSettingsController ()
|
|
|
|
@end
|
|
|
|
@implementation MPWorkflowSettingsController
|
|
|
|
- (id)init {
|
|
self = [self initWithNibName:@"WorkflowSettings" bundle:nil];
|
|
return self;
|
|
}
|
|
|
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
|
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
if (self) {
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (NSString *)identifier {
|
|
return @"WorkflowSettings";
|
|
}
|
|
|
|
- (NSImage *)image {
|
|
return [NSImage imageNamed:NSImageNameAdvanced];
|
|
}
|
|
|
|
- (NSString *)label {
|
|
return NSLocalizedString(@"WORKFLOW", "");
|
|
}
|
|
|
|
@end
|