mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
Nib compatibility changes. These simply allow Gorm to compile with the nib code present. Changes to read nibs will be merged at a later date.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22956 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f02f7ed53b
commit
9c8d2c41f2
5 changed files with 24 additions and 81 deletions
18
ChangeLog
18
ChangeLog
|
@ -227,6 +227,16 @@
|
|||
* GormCore/GormViewSizeInspector.m: [GormViewSizeInspector setObject:]
|
||||
Added code to enable/disable cells if view is standalone.
|
||||
|
||||
|
||||
2006-01-17 22:03 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* ChangeLog
|
||||
* GormCore/GormViewEditor.m
|
||||
* GormCore/GormViewSizeInspector.m
|
||||
* Palettes/1Windows/GormWindowAttributesInspector.m
|
||||
* Palettes/1Windows/GormWindowSizeInspector.m: Merged changes from
|
||||
the baseline.
|
||||
|
||||
2006-01-16 23:19 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormViewSizeInspector.m: Correction for a similar problem
|
||||
|
@ -241,7 +251,13 @@
|
|||
|
||||
* Palettes/1Windows/GormWindowAttributesInspector.m: Correction
|
||||
for bug#15236. In ok: method the newStyleMask variable wasn't
|
||||
properly initialized, this was causing the flags to be set improperly.
|
||||
properly initialized, this was causing the flags to be set
|
||||
|
||||
2006-01-08 14:03 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormPrivate.m: Removed deprecated templates.
|
||||
* GormCore/GormViewEditor.m: Removed problem which was causing
|
||||
a notification loop.
|
||||
|
||||
2005-12-15 19:08 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
|
|
|
@ -83,7 +83,7 @@ NSString *formatVersion(int version)
|
|||
|
||||
+ (int) currentVersion
|
||||
{
|
||||
return appVersion(1,0,8);
|
||||
return appVersion(1,0,9);
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
|
|
|
@ -250,81 +250,4 @@ static BOOL _isInInterfaceBuilder = NO;
|
|||
}
|
||||
@end
|
||||
|
||||
// these are temporary until the deprecated templates are removed...
|
||||
////////////////////////////////////////////////////////
|
||||
// DEPRECATED TEMPLATES //
|
||||
////////////////////////////////////////////////////////
|
||||
@interface NSWindowTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSWindowTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSViewTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSViewTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSTextTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSTextTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSTextViewTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSTextViewTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSMenuTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSMenuTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSControlTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSControlTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
|
||||
@interface NSButtonTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder;
|
||||
@end
|
||||
@implementation NSButtonTemplate (GormCustomClassAdditions)
|
||||
- (BOOL) isInInterfaceBuilder
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
||||
////////////////////////////////////////////////////////
|
||||
// END OF DEPRECATED TEMPLATES //
|
||||
////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
|
|
@ -318,14 +318,18 @@ static BOOL currently_displaying = NO;
|
|||
|
||||
- (void) editedObjectFrameDidChange: (id) sender
|
||||
{
|
||||
[self setPostsFrameChangedNotifications: NO];
|
||||
[self setFrame: [_editedObject frame]];
|
||||
[self setBounds: [_editedObject frame]];
|
||||
[self setPostsFrameChangedNotifications: YES];
|
||||
}
|
||||
|
||||
- (void) frameDidChange: (id) sender
|
||||
{
|
||||
[_editedObject setPostsFrameChangedNotifications: NO];
|
||||
[self setBounds: [self frame]];
|
||||
[_editedObject setFrame: [self frame]];
|
||||
[_editedObject setPostsFrameChangedNotifications: YES];
|
||||
}
|
||||
|
||||
- (GormPlacementInfo *) initializeResizingInFrame: (NSView *)view
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
ApplicationDescription = "[GNUstep | Graphical] Object Relationship Modeller";
|
||||
ApplicationIcon = "Gorm.tiff";
|
||||
ApplicationName = "Gorm";
|
||||
ApplicationRelease = "Gorm 1.0.8 (Release)";
|
||||
ApplicationRelease = "Gorm 1.0.9 (Release)";
|
||||
Authors = ("Gregory John Casamento <greg_casamento@yahoo.com>","Richard Frith-Macdonald <rfm@gnu.org>","Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>");
|
||||
Copyright = "Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 FSF";
|
||||
CopyrightDescription = "Released under the GNU General Public License 2.0";
|
||||
NSBuildVersion = "1.0.8 May 20 2006";
|
||||
NSBuildVersion = "1.0.9 May 20 2006";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue