GORM files updated

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@20050 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sergii Stoian 2004-09-13 21:38:44 +00:00
parent 81f0133a29
commit c41409fd7f
8 changed files with 29 additions and 21 deletions

View file

@ -1,3 +1,7 @@
2004-10-14 Serg Stoyan <stoyan255@ukr.net>
* Fixed interface (*.gorm) files wrt to latest GORM changes.
2004-07-22 Serg Stoyan <stoyan255@ukr.net>
* Library/PCButton.m: Rewritten tooltips code. Almost ready for
@ -6,15 +10,9 @@
* Library/PCProjectBuilder.m: Use new tooltip code and remove old
style code.
* Library/PCProjectLauncher.m: ditto.
* Library/PCProjectWindow.m: ditto. Editor button replaced with
Loaded Files button.
* Library/PCProjectInspector.m: Remove textfields linking programmatically
and make it using GORM. Fix applying changes to textfields.
* Library/PCProjectWindow.m: ditto.
* Images/ButtonTile.tiff: removed.
* Images/Editor.tiff: removed.
* Update all gorm files with the latest GORM version.
*Images/ButtonTile.tiff: removed.
2004-07-15 Serg Stoyan <stoyan255@ukr.net>

View file

@ -48,6 +48,7 @@ Images/MultiFiles.tiff \
Images/Options.tiff \
Images/Run.tiff \
Images/Stop.tiff \
Images/Editor.tiff \
Images/ProjectCenter_add.tiff \
Images/ProjectCenter_cvs.tiff \
Images/ProjectCenter_dist.tiff \

View file

@ -251,6 +251,7 @@
[ttWindow setFrameOrigin:origin];
}
// NSView methods
- (NSToolTipTag)addToolTipRect:(NSRect)aRect
owner:(id)anObject
userData:(void *)data
@ -279,12 +280,6 @@
return tag;
}
- (void)removeToolTip:(NSToolTipTag)tag
{
[self removeTrackingRect:tag];
// [toolTips removeObjectForKey:[NSNumber numberWithInt:tag]];
}
- (void)removeAllToolTips
{
int i, j;
@ -309,12 +304,18 @@
_hasTooltips = NO;
}
- (void)removeToolTip:(NSToolTipTag)tag
{
[self removeTrackingRect:tag];
// [toolTips removeObjectForKey:[NSNumber numberWithInt:tag]];
}
- (void)setToolTip:(NSString *)string
{
NSTrackingRectTag tag;
NSRect rect;
if (string == nil) // Remove tooltip
if (string == nil) // Remove old tooltip
{
if (_hasTooltips)
{

View file

@ -306,11 +306,6 @@
// ==== Notifications
// ============================================================================
- (void)controlTextDidEndEditing:(NSNotification *)aNotification
{
[self changeCommonProjectEntry:[aNotification object]];
}
- (void)activeProjectDidChange:(NSNotification *)aNotif
{
PCProject *rootProject = [projectManager rootActiveProject];
@ -435,6 +430,13 @@
// Buttons
[self setSearchOrderButtonsState];
[cppOptField setNextText:objcOptField];
[objcOptField setNextText:cOptField];
[cOptField setNextText:ldOptField];
[ldOptField setNextText:installPathField];
[installPathField setNextText:toolField];
[toolField setNextText:cppOptField];
// Retain view
[buildAttributesView retain];
}
@ -592,7 +594,13 @@
[authorDown setRefusesFirstResponder:YES];
[authorDown setImage: [NSImage imageNamed:@"common_ArrowDown"]];
// Retain view
// Link textfields
[descriptionField setNextText:releaseField];
[releaseField setNextText:licenseField];
[licenseField setNextText:licDescriptionField];
[licDescriptionField setNextText:urlField];
[urlField setNextText:descriptionField];
[projectDescriptionView retain];
}

Binary file not shown.