mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 01:51:09 +00:00
some code improvements regarding the inspector
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7820 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e5f22cafc2
commit
5c5a54d2d3
3 changed files with 35 additions and 119 deletions
|
@ -43,29 +43,7 @@
|
|||
|
||||
- (void)_initUI
|
||||
{
|
||||
// Always call super!!!
|
||||
[super _initUI];
|
||||
|
||||
projectAttributeInspectorView = [[NSBox alloc] init];
|
||||
[projectAttributeInspectorView setTitlePosition:NSAtTop];
|
||||
[projectAttributeInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectAttributeInspectorView addSubview:projectTypePopup];
|
||||
[projectAttributeInspectorView sizeToFit];
|
||||
[projectAttributeInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectProjectInspectorView = [[NSBox alloc] init];
|
||||
[projectProjectInspectorView setTitlePosition:NSAtTop];
|
||||
[projectProjectInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectProjectInspectorView addSubview:projectTypePopup];
|
||||
[projectProjectInspectorView sizeToFit];
|
||||
[projectProjectInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectFileInspectorView = [[NSBox alloc] init];
|
||||
[projectFileInspectorView setTitlePosition:NSAtTop];
|
||||
[projectFileInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectFileInspectorView addSubview:projectTypePopup];
|
||||
[projectFileInspectorView sizeToFit];
|
||||
[projectFileInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
}
|
||||
|
||||
@end
|
||||
|
@ -99,11 +77,7 @@
|
|||
- (void)dealloc
|
||||
{
|
||||
[rootCategories release];
|
||||
|
||||
[projectAttributeInspectorView release];
|
||||
[projectProjectInspectorView release];
|
||||
[projectFileInspectorView release];
|
||||
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
|
|
@ -43,31 +43,7 @@
|
|||
|
||||
- (void)_initUI
|
||||
{
|
||||
// Always call super!!!
|
||||
[super _initUI];
|
||||
|
||||
projectAttributeInspectorView = [[NSBox alloc] init];
|
||||
[projectAttributeInspectorView setTitlePosition:NSAtTop];
|
||||
[projectAttributeInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectAttributeInspectorView addSubview:projectTypePopup];
|
||||
[projectAttributeInspectorView sizeToFit];
|
||||
[projectAttributeInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectProjectInspectorView = [[NSBox alloc] init];
|
||||
[projectProjectInspectorView setTitlePosition:NSAtTop];
|
||||
[projectProjectInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectProjectInspectorView addSubview:projectTypePopup];
|
||||
[projectProjectInspectorView sizeToFit];
|
||||
[projectProjectInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectFileInspectorView = [[NSBox alloc] init];
|
||||
[projectFileInspectorView setTitlePosition:NSAtTop];
|
||||
[projectFileInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectFileInspectorView addSubview:projectTypePopup];
|
||||
[projectFileInspectorView sizeToFit];
|
||||
[projectFileInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
_needsAdditionalReleasing = YES;
|
||||
}
|
||||
|
||||
@end
|
||||
|
@ -80,31 +56,27 @@
|
|||
|
||||
- (id)init
|
||||
{
|
||||
if ((self = [super init])) {
|
||||
rootCategories = [[NSDictionary dictionaryWithObjectsAndKeys:
|
||||
PCSubprojects, @"Subprojects",
|
||||
PCLibraries, @"Libraries",
|
||||
PCDocuFiles,@"Documentation",
|
||||
PCOtherResources,@"Other Resources",
|
||||
PCOtherSources,@"Other Sources",
|
||||
PCHeaders,@"Headers",
|
||||
PCClasses,@"Classes",
|
||||
nil] retain];
|
||||
|
||||
[self _initUI];
|
||||
}
|
||||
return self;
|
||||
if ((self = [super init])) {
|
||||
rootCategories = [[NSDictionary dictionaryWithObjectsAndKeys:
|
||||
PCSubprojects, @"Subprojects",
|
||||
PCLibraries, @"Libraries",
|
||||
PCDocuFiles,@"Documentation",
|
||||
PCOtherResources,@"Other Resources",
|
||||
PCOtherSources,@"Other Sources",
|
||||
PCHeaders,@"Headers",
|
||||
PCClasses,@"Classes",
|
||||
nil] retain];
|
||||
|
||||
[self _initUI];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)dealloc
|
||||
{
|
||||
[rootCategories release];
|
||||
|
||||
[projectAttributeInspectorView release];
|
||||
[projectProjectInspectorView release];
|
||||
[projectFileInspectorView release];
|
||||
|
||||
[super dealloc];
|
||||
[rootCategories release];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
|
@ -43,31 +43,7 @@
|
|||
|
||||
- (void)_initUI
|
||||
{
|
||||
// Always call super!!!
|
||||
[super _initUI];
|
||||
|
||||
projectAttributeInspectorView = [[NSBox alloc] init];
|
||||
[projectAttributeInspectorView setTitlePosition:NSAtTop];
|
||||
[projectAttributeInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectAttributeInspectorView addSubview:projectTypePopup];
|
||||
[projectAttributeInspectorView sizeToFit];
|
||||
[projectAttributeInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectProjectInspectorView = [[NSBox alloc] init];
|
||||
[projectProjectInspectorView setTitlePosition:NSAtTop];
|
||||
[projectProjectInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectProjectInspectorView addSubview:projectTypePopup];
|
||||
[projectProjectInspectorView sizeToFit];
|
||||
[projectProjectInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
projectFileInspectorView = [[NSBox alloc] init];
|
||||
[projectFileInspectorView setTitlePosition:NSAtTop];
|
||||
[projectFileInspectorView setBorderType:NSGrooveBorder];
|
||||
// [projectFileInspectorView addSubview:projectTypePopup];
|
||||
[projectFileInspectorView sizeToFit];
|
||||
[projectFileInspectorView setAutoresizingMask:NSViewWidthSizable];
|
||||
|
||||
_needsAdditionalReleasing = YES;
|
||||
}
|
||||
|
||||
@end
|
||||
|
@ -80,34 +56,28 @@
|
|||
|
||||
- (id)init
|
||||
{
|
||||
if ((self = [super init])) {
|
||||
rootCategories = [[NSDictionary dictionaryWithObjectsAndKeys:
|
||||
if ((self = [super init])) {
|
||||
rootCategories = [[NSDictionary dictionaryWithObjectsAndKeys:
|
||||
PCImages,@"Images",
|
||||
PCOtherResources,@"Other Resources",
|
||||
PCSubprojects,@"Subprojects",
|
||||
PCLibraries,@"Libraries",
|
||||
PCDocuFiles,@"Documentation",
|
||||
PCOtherSources,@"Other Sources",
|
||||
PCHeaders,@"Headers",
|
||||
PCClasses,@"Classes",
|
||||
nil] retain];
|
||||
|
||||
[self _initUI];
|
||||
}
|
||||
return self;
|
||||
PCOtherResources,@"Other Resources",
|
||||
PCSubprojects,@"Subprojects",
|
||||
PCLibraries,@"Libraries",
|
||||
PCDocuFiles,@"Documentation",
|
||||
PCOtherSources,@"Other Sources",
|
||||
PCHeaders,@"Headers",
|
||||
PCClasses,@"Classes",
|
||||
nil] retain];
|
||||
|
||||
[self _initUI];
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)dealloc
|
||||
{
|
||||
[rootCategories release];
|
||||
|
||||
if (_needsAdditionalReleasing) {
|
||||
[projectAttributeInspectorView release];
|
||||
[projectProjectInspectorView release];
|
||||
[projectFileInspectorView release];
|
||||
}
|
||||
|
||||
[super dealloc];
|
||||
[rootCategories release];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue