Convert the remaining DebuggerController IBOutlets to properties.
[macgdbp.git] / Source / BreakpointController.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2011, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "BreakpointController.h"
18
19 #import "AppDelegate.h"
20 #import "PreferenceNames.h"
21
22 @implementation BreakpointController {
23 BreakpointManager* _manager;
24
25 BSSourceView* _sourceView;
26
27 NSArrayController* _arrayController;
28 }
29
30 /**
31 * Constructor
32 */
33 - (instancetype)initWithBreakpointManager:(BreakpointManager*)breakpointManager
34 sourceView:(BSSourceView*)sourceView
35 {
36 if ((self = [super initWithNibName:@"Breakpoints" bundle:nil])) {
37 _manager = breakpointManager;
38 _sourceView = sourceView;
39 }
40 return self;
41 }
42
43 - (void)awakeFromNib
44 {
45 [[self.addBreakpointButton cell] setUsesItemFromMenu:NO];
46 [self.addBreakpointButton.cell setMenuItem:[self.addBreakpointButton.menu itemAtIndex:0]];
47 }
48
49 /**
50 * Adds a breakpoint by calling up a file chooser and selecting a file for
51 * breaking in
52 */
53 - (IBAction)addBreakpoint:(id)sender
54 {
55 NSOpenPanel* panel = [NSOpenPanel openPanel];
56
57 if ([panel runModal] != NSOKButton)
58 {
59 return;
60 }
61
62 [_sourceView setFile:[[panel URL] path]];
63 }
64
65 - (IBAction)addFunctionBreakpoint:(id)sender
66 {
67 [self.view.window beginSheet:self.addFunctionBreakpointWindow completionHandler:nil];
68 }
69
70 - (IBAction)cancelFunctionBreakpoint:(id)sender
71 {
72 [self.view.window endSheet:self.addFunctionBreakpointWindow];
73 }
74
75 - (IBAction)saveFunctionBreakpoint:(id)sender
76 {
77 [_manager addBreakpoint:[Breakpoint breakpointOnFunctionNamed:self.functionNameField.stringValue]];
78 [self.view.window endSheet:self.addFunctionBreakpointWindow];
79 }
80
81 /**
82 * Removes a breakpoint
83 */
84 - (IBAction)removeBreakpoint:(id)sender
85 {
86 NSArray* selection = [_arrayController selectedObjects];
87 if ([selection count] < 1)
88 {
89 return;
90 }
91
92 for (Breakpoint* bp in selection) {
93 [_manager removeBreakpoint:bp];
94 }
95 }
96
97 #pragma mark NSTableView Delegate
98
99 /**
100 * NSTableView delegate method that informs the controller that the stack selection did change and that
101 * we should update the source viewer
102 */
103 - (void)tableViewSelectionDidChange:(NSNotification*)notif
104 {
105 NSArray* selection = [_arrayController selectedObjects];
106 if ([selection count] < 1) {
107 return;
108 }
109
110 Breakpoint* bp = [selection objectAtIndex:0];
111 if (bp.type != kBreakpointTypeFile) {
112 return;
113 }
114
115 [_sourceView setFile:[bp file]];
116 [_sourceView scrollToLine:[bp line]];
117 [_sourceView setMarkers:[_manager breakpointsForFile:bp.file]];
118 }
119
120 #pragma mark BSSourceView Delegate
121
122 /**
123 * Accepts a file dragged to set the contents of the display.
124 */
125 - (BOOL)sourceView:(BSSourceView*)sv acceptsDropOfFile:(NSString*)filename
126 {
127 return YES;
128 }
129
130 @end