mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-19 17:11:32 +00:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@17087 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
41abbd7e65
commit
4eb73b4d38
5 changed files with 26 additions and 30 deletions
15
ChangeLog
15
ChangeLog
|
@ -17,21 +17,26 @@
|
|||
(showAddFileWindow): Handling of image, docs, models and non project
|
||||
files added. Now images go into Images subdir, docs into Documentation,
|
||||
.gorm files into $LANGUAGE.lproj subdir.
|
||||
|
||||
* PCLib/PCProject+UInterface.m:
|
||||
(_initUI): Files' history list enabled back. Adjust size of history
|
||||
list. Added some fileds, controls rearranged in Project Inspector.
|
||||
|
||||
Release of box added after adding to split.
|
||||
* PCLib/PCProject.h: Added definition of new Inspector fields.
|
||||
* PCLib/PCProject.m: (updateValuesFromProjectDict): Set project's
|
||||
language.
|
||||
* PCLib/PCProject.m:
|
||||
(updateValuesFromProjectDict): Set project's language.
|
||||
(dealloc): Extra releases removed.
|
||||
* PCLib/PCProjectBuilder.m: Stability improved via cleanup in build
|
||||
task handling.
|
||||
(topButtonPressed:): Removed.
|
||||
|
||||
* PCLib/PCProjectManager+UInterface.m: ProjectInspector content view
|
||||
resized. Changed title from "Inspector" to "Project Inspector".
|
||||
|
||||
* PCMenuController.m:
|
||||
(validateMenuItem:): Return by default YES if no project loaded.
|
||||
|
||||
* PCAppProj/PCAppProject.m:
|
||||
(dealloc): Release of appClassField and appImageField removed.
|
||||
|
||||
2003-06-20 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* Images/ButtonTile.tiff: Added.
|
||||
|
|
|
@ -58,7 +58,8 @@
|
|||
[projectProjectInspectorView addSubview:textField];
|
||||
RELEASE(textField);
|
||||
|
||||
appClassField = [[NSTextField alloc] initWithFrame:NSMakeRect(111,248,165,21)];
|
||||
appClassField = [[NSTextField alloc] initWithFrame:
|
||||
NSMakeRect(111,248,165,21)];
|
||||
[appClassField setAlignment: NSLeftTextAlignment];
|
||||
[appClassField setBordered: YES];
|
||||
[appClassField setEditable: YES];
|
||||
|
@ -167,8 +168,6 @@
|
|||
[rootCategories release];
|
||||
[rootObjects release];
|
||||
[rootKeys release];
|
||||
[appClassField release];
|
||||
[appImageField release];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
@ -243,23 +243,26 @@
|
|||
|
||||
#ifdef ENABLE_HISTORY
|
||||
[split addSubview: v_split];
|
||||
RELEASE(v_split);
|
||||
#else
|
||||
[split addSubview: browser];
|
||||
#endif
|
||||
|
||||
[split addSubview: box];
|
||||
RELEASE(box);
|
||||
|
||||
[split adjustSubviews];
|
||||
[_c_view addSubview: split];
|
||||
|
||||
RELEASE(split);
|
||||
RELEASE(browser);
|
||||
|
||||
[browser loadColumnZero];
|
||||
|
||||
#ifdef ENABLE_HISTORY
|
||||
[history loadColumnZero];
|
||||
#endif
|
||||
|
||||
RELEASE(browser);
|
||||
RELEASE(split);
|
||||
|
||||
if (![projectWindow setFrameUsingName: @"ProjectWindow"])
|
||||
{
|
||||
[projectWindow center];
|
||||
|
@ -529,6 +532,7 @@
|
|||
hLine = [[NSBox alloc] initWithFrame:NSMakeRect(0,278,295,2)];
|
||||
[hLine setTitlePosition:NSNoTitle];
|
||||
[projectFileInspectorView addSubview:hLine];
|
||||
RELEASE(hLine);
|
||||
|
||||
changeFileNameButton = [[NSButton alloc] initWithFrame:
|
||||
NSMakeRect(84,240,104,21)];
|
||||
|
|
|
@ -85,34 +85,21 @@
|
|||
RELEASE(projectPath);
|
||||
RELEASE(projectDict);
|
||||
|
||||
if( projectBuilder) RELEASE(projectBuilder);
|
||||
if( projectDebugger) RELEASE(projectDebugger);
|
||||
if( projectEditor) RELEASE(projectEditor);
|
||||
if (projectBuilder) RELEASE(projectBuilder);
|
||||
if (projectDebugger) RELEASE(projectDebugger);
|
||||
if (projectEditor) RELEASE(projectEditor);
|
||||
|
||||
RELEASE(historyController);
|
||||
RELEASE(browserController);
|
||||
RELEASE(editorController);
|
||||
|
||||
RELEASE(buildTargetPanel);
|
||||
RELEASE(buildTargetHostField);
|
||||
RELEASE(buildTargetArgsField);
|
||||
RELEASE(buildTargetPanel); // ?
|
||||
|
||||
RELEASE(buildOptions);
|
||||
|
||||
|
||||
RELEASE(projectAttributeInspectorView);
|
||||
RELEASE(installPathField);
|
||||
RELEASE(toolField);
|
||||
RELEASE(ccOptField);
|
||||
RELEASE(ldOptField);
|
||||
|
||||
RELEASE(projectProjectInspectorView);
|
||||
RELEASE(projectTypeField);
|
||||
|
||||
RELEASE(projectFileInspectorView);
|
||||
RELEASE(fileNameField);
|
||||
RELEASE(changeFileNameButton);
|
||||
|
||||
RELEASE(box);
|
||||
RELEASE(editorController);
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
@ -571,6 +571,7 @@
|
|||
if ([[menuItem title] isEqualToString:@"Index Subproject"]) return NO;
|
||||
if ([[menuItem title] isEqualToString:@"Index File"]) return NO;
|
||||
}
|
||||
return YES;
|
||||
}
|
||||
|
||||
// Project related menu items
|
||||
|
|
Loading…
Reference in a new issue