Sha256: 32eabbb0b2a18f46e0e0b64cd17541d9ef73e8dc6fe01be664887989c4739b74

Contents?: true

Size: 1.18 KB

Versions: 75

Compression:

Stored size: 1.18 KB

Contents

#import <Cocoa/Cocoa.h>
#import "LogController.h"
#import "SourceViewController.h"
#import "GdbConnection.h"
#import "TcpConnection.h"

@interface DebuggerController : NSObject {
//    IBOutlet LogController * gdbController;
	IBOutlet GdbConnection * gdbConnection;
    IBOutlet LogController * rubyController;
    IBOutlet SourceViewController * sourceController;

	TcpConnection * tcpConnection;
	
    IBOutlet id statusLabel;
    IBOutlet id gdbStatusLabel;

	IBOutlet id bpFile;
	IBOutlet id bpLine;

	IBOutlet id webView;

	IBOutlet id outlineView;
	
	bool gdbAttached,gdbScriptLoaded, building;
	NSString *pid, *gdbPid;
	NSString *currentFile;
}
- (IBAction)rubyInput:(id)sender;
- (IBAction)pause:(id)sender;
- (IBAction)resume:(id)sender;
- (IBAction)step:(id)sender;
- (IBAction)stepOut:(id)sender;

- (IBAction)selectFile:(id)sender;


- (IBAction)setRhodesApp:(id)sender;
- (IBAction)launchApp:(id)sender;

- (IBAction)saveFile:(id)sender;

- (IBAction)useGdbCheck:(id)sender;
- (IBAction)disconnect:(id)sender;

- (void)applicationDidFinishLaunching:(NSNotification*)aNotification;

- (void)attachTail;
- (void)removeBreakpoint;
- (void)setBreakPoint:(NSString *)file atLine:(int) line;
@end

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
rhodes-3.0.2 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.2.beta.1 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.8 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.7 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.6 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.5 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.4 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.3 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.1.beta.2 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.7 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.6 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.5 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.4 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.3 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.2 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-3.0.0.beta.1 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-2.4.1 platform/osx/Rhodes Debugger/DebuggerController.h
rhodes-2.4.1.beta.1 platform/osx/Rhodes Debugger/DebuggerController.h