minor UI changes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7586 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Robert Slover 2000-09-22 17:11:30 +00:00
parent d847966a45
commit 166fbabc54
2 changed files with 22 additions and 0 deletions

View file

@ -93,6 +93,9 @@ static NSString * const PCLibraryVar = @"LIBRARY_VAR";
id textView;
id filePopup;
id methodPopup;
id projectAttributeInspectorView;
id projectProjectInspectorView;
id projectFileInspectorView;

View file

@ -162,6 +162,22 @@
[button setImage:IMAGE(@"ProjectCentre_find.tiff")];
[button setButtonType:NSMomentaryPushButton];
/*
* Navigation popups
*/
filePopup = [[[NSPopUpButton alloc] initWithFrame:NSMakeRect(348,334,200,20)
pullsDown:YES] autorelease];
[filePopup addItemWithTitle:@"Visited files..."];
[filePopup setAutoresizingMask: (NSViewWidthSizable | NSViewMinYMargin)];
[_c_view addSubview:filePopup];
methodPopup = [[[NSPopUpButton alloc] initWithFrame:NSMakeRect(348,310,200,20)
pullsDown:YES] autorelease];
[methodPopup addItemWithTitle:@"All methods"];
[methodPopup setAutoresizingMask: (NSViewWidthSizable | NSViewMinYMargin)];
[_c_view addSubview:methodPopup];
/*
* Build Options Panel
*
@ -268,6 +284,9 @@
[projectPath release];
[projectDict release];
[filePopup release];
[methodPopup release];
[browserController release];
[projectWindow release];
[buildTargetPanel release];