1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Adapted the Qt codebase to the addition of core.gui.result_tree and core.gui.stats_label.

This commit is contained in:
Virgil Dupras
2010-02-12 15:39:29 +01:00
parent c3a972d39b
commit cab6d924aa
14 changed files with 142 additions and 208 deletions

View File

@@ -14,9 +14,16 @@ http://www.hardcoded.net/licenses/hs_license
{
self = [super initWithNibName:@"DetailsPanel" pyClassName:@"PyDetailsPanel" pyParent:aPy];
[self window]; //So the detailsTable is initialized.
[self connect];
return self;
}
- (void)dealloc
{
[self disconnect];
[super dealloc];
}
- (PyDetailsPanel *)py
{
return (PyDetailsPanel *)py;

View File

@@ -13,9 +13,16 @@ http://www.hardcoded.net/licenses/hs_license
{
self = [super initWithPyClassName:@"PyDirectoryOutline" pyParent:aPyParent view:aOutlineView];
[outlineView registerForDraggedTypes:[NSArray arrayWithObject:NSFilenamesPboardType]];
[self connect];
return self;
}
- (void)dealloc
{
[self disconnect];
[super dealloc];
}
- (PyDirectoryOutline *)py
{
return (PyDirectoryOutline *)py;

View File

@@ -16,11 +16,13 @@ http://www.hardcoded.net/licenses/hs_license
{
self = [super initWithPyClassName:@"PyResultOutline" pyParent:aPyParent view:aOutlineView];
_rootChildrenCounts = nil;
[self connect];
return self;
}
- (void)dealloc
{
[self disconnect];
[_deltaColumns release];
[super dealloc];
}

View File

@@ -14,11 +14,13 @@ http://www.hardcoded.net/licenses/hs_license
{
self = [super initWithPyClassName:@"PyStatsLabel" pyParent:aPyParent];
labelView = [aLabelView retain];
[self connect];
return self;
}
- (void)dealloc
{
[self disconnect];
[labelView release];
[super dealloc];
}