mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-22 19:59:29 +00:00
23 lines
675 B
Objective-C
23 lines
675 B
Objective-C
//
|
|
// MPServerSettingsController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
#import "MPSettingsTab.h"
|
|
|
|
@class DDHotKeyTextField;
|
|
|
|
@interface MPIntegrationSettingsController : MPViewController <MPSettingsTab, NSTextFieldDelegate>
|
|
|
|
@property (weak) IBOutlet NSButton *enableServerCheckbutton;
|
|
@property (weak) IBOutlet NSButton *enableGlobalAutotypeCheckbutton;
|
|
@property (weak) IBOutlet NSButton *enableQuicklookCheckbutton;
|
|
@property (weak) IBOutlet DDHotKeyTextField *hotKeyTextField;
|
|
@property (weak) IBOutlet NSTextField *hotkeyWarningTextField;
|
|
|
|
@end
|