Added Languages option at Inspector

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31748 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2010-12-19 03:40:35 +00:00
parent 615124400c
commit affd155f9c
4 changed files with 17 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2010-12-18 German Arias <german@xelalug.org>
* Headers/ProjectCenter/PCProjectInspector.h:
* Framework/PCProjectInspector.m:
* Framework/English.lproj/ProjectInspector.gorm:
Added "Project Languages" option on Inspector.
2010-12-04 Wolfgang Lux <wolfgang.lux@gmail.com>
* Framework/PCProjectBuilder.m (-build:, -logStdOut:, -logErrOut:):

View file

@ -87,6 +87,7 @@
RELEASE(projectAttributesSubview);
RELEASE(projectAttributesView);
RELEASE(projectDescriptionView);
RELEASE(projectLanguagesView);
RELEASE(fileAttributesView);
RELEASE(inspectorPanel);
@ -125,6 +126,9 @@
// Project Description
[self createProjectDescription];
// Project Languages
[self createProjectLanguages];
// File Attributes
[self createFileAttributes];
@ -171,6 +175,9 @@
[inspectorView setContentView:projectDescriptionView];
break;
case 3:
[inspectorView setContentView:projectLanguagesView];
break;
case 4:
[inspectorView setContentView:fileAttributesView];
break;
}
@ -692,7 +699,7 @@
// ==== Project Languages
// ============================================================================
/*- (void)createProjectLanguages
- (void)createProjectLanguages
{
if (projectLanguagesView)
{
@ -706,7 +713,7 @@
}
[projectLanguagesView retain];
}*/
}
// ============================================================================
// ==== File Attributes

View file

@ -90,7 +90,7 @@
IBOutlet NSButton *authorDown;
// Project Languages
//IBOutlet NSBox *projectLanguagesView;
IBOutlet NSBox *projectLanguagesView;
// File Attributes
IBOutlet NSBox *fileAttributesView;