2 lines of information when launching...

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7987 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Robert Slover 2000-11-02 10:21:03 +00:00
parent 0d44f5df35
commit d76f33661b
2 changed files with 19 additions and 1 deletions

View file

@ -82,6 +82,24 @@
[box setBorderType:NSNoBorder];
[box setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable];
textField = [[NSTextField alloc] initWithFrame:NSMakeRect(16,200,500,21)];
[textField setAlignment: NSLeftTextAlignment];
[textField setBordered: NO];
[textField setEditable: NO];
[textField setBezeled: NO];
[textField setDrawsBackground: NO];
[textField setStringValue:@"Welcome to the GNUstep ProjectCenter!"];
[box addSubview:[textField autorelease]];
textField = [[NSTextField alloc] initWithFrame:NSMakeRect(16,178,500,21)];
[textField setAlignment: NSLeftTextAlignment];
[textField setBordered: NO];
[textField setEditable: NO];
[textField setBezeled: NO];
[textField setDrawsBackground: NO];
[textField setStringValue:@"\tPlease report all bugs or other issues you don't like to phr@projectcenter.ch!"];
[box addSubview:[textField autorelease]];
_c_view = [projectWindow contentView];
[_c_view addSubview:browser];
[_c_view addSubview:box];

View file

@ -120,7 +120,7 @@
* 5 build Buttons
*/
_w_frame = NSMakeRect(0,194,244,44);
_w_frame = NSMakeRect(0,194,224,44);
matrix = [[[NSMatrix alloc] initWithFrame: _w_frame
mode: NSHighlightModeMatrix
prototype: buttonCell