forked from fabulouspanda/MacMiner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated interface, bfgminer, added cpuminer
- Loading branch information
fabulouspanda
authored and
fabulouspanda
committed
May 2, 2013
1 parent
f788b93
commit 42e3c88
Showing
12 changed files
with
7,158 additions
and
2,967 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,5 @@ | |
|
||
- (IBAction)saveAction:(id)sender; | ||
|
||
- (IBAction)preferenceToggle:(id)sender; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// | ||
// bfgminerViewController.h | ||
// MacMiner | ||
// | ||
// Created by Administrator on 01/05/2013. | ||
// Copyright (c) 2013 fabulouspanda. All rights reserved. | ||
// | ||
#import <Cocoa/Cocoa.h> | ||
#import <Foundation/Foundation.h> | ||
#import "TaskWrapper.h" | ||
|
||
@interface bfgminerViewController : NSViewController <NSWindowDelegate, TaskWrapperController, NSTextViewDelegate, NSTextFieldDelegate, NSPopoverDelegate>{ | ||
NSWindow *bfgWindow; | ||
NSView *bfgView; | ||
NSTextField *bfgPoolView; | ||
NSTextField *bfgUserView; | ||
NSSecureTextField *bfgPassView; | ||
NSTextField *bfgOptionsView; | ||
|
||
NSTextView *bfgOutputView; | ||
NSButton *bfgStartButton; | ||
BOOL findRunning; | ||
TaskWrapper *bfgTask; | ||
NSTextField *bfgStatLabel; | ||
|
||
NSButton *bfgPopoverTriggerButton; | ||
NSPopover *bfgPopover; | ||
|
||
NSButton *bfgRememberButton; | ||
} | ||
|
||
@property (nonatomic, strong) IBOutlet NSWindow *bfgWindow; | ||
@property (nonatomic, strong) IBOutlet NSView *bfgView; | ||
@property (nonatomic, strong) IBOutlet NSTextField *bfgPoolView; | ||
@property (nonatomic, strong) IBOutlet NSTextField *bfgUserView; | ||
@property (nonatomic, strong) IBOutlet NSSecureTextField *bfgPassView; | ||
@property (nonatomic, strong) IBOutlet NSTextField *bfgOptionsView; | ||
|
||
@property (nonatomic, strong) IBOutlet NSTextView *bfgOutputView; | ||
@property (nonatomic, strong) IBOutlet NSButton *bfgStartButton; | ||
@property (nonatomic, strong) IBOutlet NSTextField *bfgStatLabel; | ||
|
||
@property (nonatomic, strong) IBOutlet NSButton *bfgPopoverTriggerButton; | ||
@property (nonatomic, strong) IBOutlet NSPopover *bfgPopover; | ||
|
||
@property (nonatomic, strong) IBOutlet NSButton *bfgRememberButton; | ||
|
||
|
||
- (IBAction)start:(id)sender; | ||
|
||
- (IBAction)bfgMinerToggle:(id)sender; | ||
|
||
@end |
Oops, something went wrong.