mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 01:51:09 +00:00
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:
parent
d847966a45
commit
166fbabc54
2 changed files with 22 additions and 0 deletions
|
@ -93,6 +93,9 @@ static NSString * const PCLibraryVar = @"LIBRARY_VAR";
|
|||
|
||||
id textView;
|
||||
|
||||
id filePopup;
|
||||
id methodPopup;
|
||||
|
||||
id projectAttributeInspectorView;
|
||||
id projectProjectInspectorView;
|
||||
id projectFileInspectorView;
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue