You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// CLParentPanelController.h
|
|
|
|
// Clocker
|
|
|
|
//
|
|
|
|
// Created by Abhishek Banthia on 4/4/16.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "CLOneWindowController.h"
|
|
|
|
|
|
|
|
@interface CLParentPanelController : NSWindowController<NSWindowDelegate, NSTableViewDataSource, NSTableViewDelegate>
|
|
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, strong) NSMutableArray *defaultPreferences;
|
|
|
|
@property (nonatomic, strong) NSDateFormatter *dateFormatter;
|
|
|
|
@property (nonatomic, assign) NSInteger futureSliderValue;
|
|
|
|
@property (nonatomic) BOOL showReviewCell;
|
|
|
|
|
|
|
|
@property (weak) IBOutlet NSButton *shutdownButton;
|
|
|
|
@property (weak) IBOutlet NSButton *preferencesButton;
|
|
|
|
@property (weak) IBOutlet NSSlider *futureSlider;
|
|
|
|
@property (weak) IBOutlet NSTableView *mainTableview;
|
|
|
|
@property (weak) IBOutlet NSLayoutConstraint *scrollViewHeight;
|
|
|
|
@property (nonatomic, strong) CLOneWindowController *oneWindow;
|
|
|
|
|
|
|
|
- (void)updateDefaultPreferences;
|
|
|
|
- (void)showOptions:(BOOL)value;
|
|
|
|
- (void)removeContextHelpForSlider;
|
|
|
|
- (void)updatePanelColor;
|
|
|
|
- (void)openPreferenceWindowWithValue:(BOOL)value;
|
|
|
|
|
|
|
|
@end
|