forked from SelfControlApp/selfcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DomainListWindowController.h
executable file
·105 lines (86 loc) · 4.69 KB
/
DomainListWindowController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//
// DomainListWindowController.h
// SelfControl
//
// Created by Charlie Stigler on 2/7/09.
// Copyright 2009 Eyebeam.
// This file is part of SelfControl.
//
// SelfControl 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 <Cocoa/Cocoa.h>
#import "HostImporter.h"
#import "ThunderbirdPreferenceParser.h"
#import "SelfControlCommon.h"
// A subclass of NSWindowController created to manage the domain list (actually
// host list, but domain list seems more understandable to inexperienced users
// and experienced users will figure out they can put in IP addresses) window,
// and the table view it contains.
@interface DomainListWindowController : NSWindowController {
NSMutableArray* domainList_;
IBOutlet NSTableView* domainListTableView_;
NSUserDefaults* defaults_;
}
// Called when the add button is clicked. Adds a new empty string to the domain
// list, reloads the table view, and highlights and opens that cell for editing.
- (IBAction)addDomain:(id)sender;
// Called when the remove button is clicked (or when the delete key is pressed,
// which just maps to the remove button). Deletes all selected rows and reloads
// the table view. Sends a SCConfigurationChangedNotification.
- (IBAction)removeDomain:(id)sender;
// Called by the table view on it's data source object (this) to determine how
// many rows are in the table view to be displayed. Returns the number of
// objects in the domain list array.
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
// Called by the table view on it's data source object (this) to determine what
// value should be displayed for a given row index. Returns the corresponding
// value from the domain list array.
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
// Called by the table view on it's data source object (this) to set the value
// of the cell at a given row index. Sets the value of the corresponding object
// in the domain list array and reloads the table view. Sends a
// SCConfigurationChangedNotification.
- (void)tableView:(NSTableView *)aTableView
setObjectValue:(id)theObject
forTableColumn:(NSTableColumn *)aTableColumn
row:(int)rowIndex;
// Called by the table view on it's data source object (this) when a given cell
// is about to be displayed. Used to implement invalid domain highlighting if
// the user has chosen to enable it.
- (void)tableView:(NSTableView *)tableView
willDisplayCell:(id)cell
forTableColumn:(NSTableColumn *)tableColumn
row:(int)row;
- (IBAction)importCommonDistractingWebsites:(id)sender;
- (IBAction)importNewsAndPublications:(id)sender;
// Called when the button-menu item is clicked to import all incoming mail
// servers from Thunderbird. Adds to the domain list array all incoming mail
// servers from the Thunderbird default profile that haven't already been added,
// and reloads the table view. Sends a SCConfigurationChangedNotification.
- (IBAction)importIncomingMailServersFromThunderbird:(id)sender;
// Called when the button-menu item is clicked to import all outgoing mail
// servers from Thunderbird. Adds to the domain list array all outgoing mail
// servers from the Thunderbird default profile that haven't already been added,
// and reloads the table view. Sends a SCConfigurationChangedNotification.
- (IBAction)importOutgoingMailServersFromThunderbird:(id)sender;
// Called when the button-menu item is clicked to import all incoming mail
// servers from Mail.app. Adds to the domain list array all incoming mail
// servers Mail.app that haven't already been added, and reloads the table view.
// Sends a SCConfigurationChangedNotification.
- (IBAction)importIncomingMailServersFromMail:(id)sender;
// Called when the button-menu item is clicked to import all outgoing mail
// servers from Mail.app. Adds to the domain list array all outgoing mail
// servers Mail.app that haven't already been added, and reloads the table view.
// Sends a SCConfigurationChangedNotification.
- (IBAction)importOutgoingMailServersFromMail:(id)sender;
- (IBAction)importIncomingMailServersFromMailMate:(id)sender;
- (IBAction)importOutgoingMailServersFromMailMate:(id)sender;
@end