mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 02:22:28 +00:00
24 lines
772 B
Objective-C
24 lines
772 B
Objective-C
//
|
|
// MPGeneralSettingsController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 23.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MPViewController.h"
|
|
#import "MPSettingsTab.h"
|
|
|
|
@interface MPGeneralSettingsController : MPViewController <MPSettingsTab>
|
|
|
|
@property (weak) IBOutlet NSButton *clearPasteboardOnQuitCheckButton;
|
|
@property (weak) IBOutlet NSPopUpButton *clearPasteboardTimeoutPopup;
|
|
@property (weak) IBOutlet NSPopUpButton *idleTimeOutPopup;
|
|
@property (weak) IBOutlet NSButton *lockOnSleepCheckButton;
|
|
@property (weak) IBOutlet NSButton *reopenLastDatabase;
|
|
@property (weak) IBOutlet NSButton *createUntitledOnActivation;
|
|
@property (weak) IBOutlet NSButton *rememberKeyFileCheckButton;
|
|
|
|
@end
|