mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
[#29] dgbase cocoa: Moved some few more duplicated code, and replaced the ResultsChangedNotification for a ResultsUpdatedNotification for ref switching.
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4045
This commit is contained in:
parent
ef9c7f1d25
commit
0f4a9e8a19
@ -1,7 +1,10 @@
|
|||||||
#import <Cocoa/Cocoa.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
#define DuplicateSelectionChangedNotification @"DuplicateSelectionChangedNotification"
|
#define DuplicateSelectionChangedNotification @"DuplicateSelectionChangedNotification"
|
||||||
|
/* ResultsChangedNotification happens on major changes, which requires a complete reload of the data*/
|
||||||
#define ResultsChangedNotification @"ResultsChangedNotification"
|
#define ResultsChangedNotification @"ResultsChangedNotification"
|
||||||
|
/* ResultsChangedNotification happens on minor changes, which requires buffer flush*/
|
||||||
|
#define ResultsUpdatedNotification @"ResultsUpdatedNotification"
|
||||||
#define ResultsMarkingChangedNotification @"ResultsMarkingChangedNotification"
|
#define ResultsMarkingChangedNotification @"ResultsMarkingChangedNotification"
|
||||||
#define RegistrationRequired @"RegistrationRequired"
|
#define RegistrationRequired @"RegistrationRequired"
|
||||||
#define JobStarted @"JobStarted"
|
#define JobStarted @"JobStarted"
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
IBOutlet NSView *filterFieldView;
|
IBOutlet NSView *filterFieldView;
|
||||||
IBOutlet MatchesView *matches;
|
IBOutlet MatchesView *matches;
|
||||||
IBOutlet NSView *pmSwitchView;
|
IBOutlet NSView *pmSwitchView;
|
||||||
|
IBOutlet NSTextField *stats;
|
||||||
|
|
||||||
BOOL _powerMode;
|
BOOL _powerMode;
|
||||||
BOOL _displayDelta;
|
BOOL _displayDelta;
|
||||||
@ -29,6 +30,7 @@
|
|||||||
- (NSArray *)getSelected:(BOOL)aDupesOnly;
|
- (NSArray *)getSelected:(BOOL)aDupesOnly;
|
||||||
- (NSArray *)getSelectedPaths:(BOOL)aDupesOnly;
|
- (NSArray *)getSelectedPaths:(BOOL)aDupesOnly;
|
||||||
- (void)performPySelection:(NSArray *)aIndexPaths;
|
- (void)performPySelection:(NSArray *)aIndexPaths;
|
||||||
|
- (void)refreshStats;
|
||||||
|
|
||||||
/* Actions */
|
/* Actions */
|
||||||
- (IBAction)changeDelta:(id)sender;
|
- (IBAction)changeDelta:(id)sender;
|
||||||
|
@ -53,8 +53,11 @@
|
|||||||
{
|
{
|
||||||
[self window];
|
[self window];
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(registrationRequired:) name:RegistrationRequired object:nil];
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(registrationRequired:) name:RegistrationRequired object:nil];
|
||||||
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jobCompleted:) name:JobCompletedNotification object:nil];
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jobStarted:) name:JobStarted object:nil];
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jobStarted:) name:JobStarted object:nil];
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jobInProgress:) name:JobInProgress object:nil];
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jobInProgress:) name:JobInProgress object:nil];
|
||||||
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(resultsChanged:) name:ResultsChangedNotification object:nil];
|
||||||
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(resultsUpdated:) name:ResultsUpdatedNotification object:nil];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Virtual */
|
/* Virtual */
|
||||||
@ -101,6 +104,11 @@
|
|||||||
[py selectResultNodePaths:aIndexPaths];
|
[py selectResultNodePaths:aIndexPaths];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)refreshStats
|
||||||
|
{
|
||||||
|
[stats setStringValue:[py getStatLine]];
|
||||||
|
}
|
||||||
|
|
||||||
/* Actions */
|
/* Actions */
|
||||||
- (IBAction)changeDelta:(id)sender
|
- (IBAction)changeDelta:(id)sender
|
||||||
{
|
{
|
||||||
@ -171,7 +179,7 @@
|
|||||||
{
|
{
|
||||||
[self performPySelection:[self getSelectedPaths:YES]];
|
[self performPySelection:[self getSelectedPaths:YES]];
|
||||||
[py makeSelectedReference];
|
[py makeSelectedReference];
|
||||||
[[NSNotificationCenter defaultCenter] postNotificationName:ResultsChangedNotification object:self];
|
[[NSNotificationCenter defaultCenter] postNotificationName:ResultsUpdatedNotification object:self];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Delegate */
|
/* Delegate */
|
||||||
@ -248,6 +256,19 @@
|
|||||||
[Dialogs showMessage:msg];
|
[Dialogs showMessage:msg];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)resultsChanged:(NSNotification *)aNotification
|
||||||
|
{
|
||||||
|
[matches reloadData];
|
||||||
|
[self expandAll:nil];
|
||||||
|
[self outlineViewSelectionDidChange:nil];
|
||||||
|
[self refreshStats];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)resultsUpdated:(NSNotification *)aNotification
|
||||||
|
{
|
||||||
|
[matches invalidateBuffers];
|
||||||
|
}
|
||||||
|
|
||||||
/* Toolbar */
|
/* Toolbar */
|
||||||
- (NSToolbarItem *)toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdentifier willBeInsertedIntoToolbar:(BOOL)flag
|
- (NSToolbarItem *)toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdentifier willBeInsertedIntoToolbar:(BOOL)flag
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user