mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* English.lproj/GormDocument.gorm: Added search field and drop down
for loading reading and subclassing. * GormCore/GormClassManager.m: Removed sorting from allSuperclassesOf: * GormCore/GormDocument.m: Added delegate method for search field. Implemments suggestions in bug#17802 (Change request). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23659 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8cdc16adab
commit
d5e5de02c9
6 changed files with 64 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-09-28 20:38-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* English.lproj/GormDocument.gorm: Added search field and drop down
|
||||
for loading reading and subclassing.
|
||||
* GormCore/GormClassManager.m: Removed sorting from allSuperclassesOf:
|
||||
* GormCore/GormDocument.m: Added delegate method for search field.
|
||||
Implemments suggestions in bug#17802 (Change request).
|
||||
|
||||
2006-09-28 00:43-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Resources/Defaults.plist: Make the browser classes view the default.
|
||||
|
|
|
@ -1 +1,49 @@
|
|||
{"## Comment" = "Do NOT change this file, Gorm maintains it"; FirstResponder = {Actions = ("selectArchiveType:"); Super = NSObject; }; GSNibContainer = {Actions = (); Outlets = (); Super = NSObject; }; GormDocument = {Actions = (); Outlets = (selectionBox, filePrefsView, filePrefsManager, filePrefsWindow); Super = NSDocument; }; GormFilePrefsManager = {Actions = ("showIncompatibilities:", "selectTargetVersion:", "selectArchiveType:"); Outlets = (showIncompatibilities, targetVersion, gormAppVersion, archiveType, iwindow, itable); Super = NSObject; }; }
|
||||
{
|
||||
"## Comment" = "Do NOT change this file, Gorm maintains it";
|
||||
FirstResponder = {
|
||||
Actions = (
|
||||
"createSubclass:",
|
||||
"loadClass:",
|
||||
"createClassFiles:",
|
||||
"selectArchiveType:"
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
GSNibContainer = {
|
||||
Actions = (
|
||||
);
|
||||
Outlets = (
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
GormDocument = {
|
||||
Actions = (
|
||||
"createSubclass:",
|
||||
"loadClass:",
|
||||
"createClassFiles:"
|
||||
);
|
||||
Outlets = (
|
||||
selectionBox,
|
||||
filePrefsView,
|
||||
filePrefsManager,
|
||||
filePrefsWindow
|
||||
);
|
||||
Super = NSDocument;
|
||||
};
|
||||
GormFilePrefsManager = {
|
||||
Actions = (
|
||||
"showIncompatibilities:",
|
||||
"selectTargetVersion:",
|
||||
"selectArchiveType:"
|
||||
);
|
||||
Outlets = (
|
||||
showIncompatibilities,
|
||||
targetVersion,
|
||||
gormAppVersion,
|
||||
archiveType,
|
||||
iwindow,
|
||||
itable
|
||||
);
|
||||
Super = NSObject;
|
||||
};
|
||||
}
|
Binary file not shown.
Binary file not shown.
|
@ -2063,7 +2063,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
return [classes sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)];
|
||||
return classes;
|
||||
}
|
||||
|
||||
- (void) addActions: (NSArray *)actions forClassNamed: (NSString *)className
|
||||
|
|
|
@ -3575,6 +3575,11 @@ static NSImage *fileImage = nil;
|
|||
[savedEditors removeAllObjects];
|
||||
}
|
||||
|
||||
- (void)controlTextDidChange:(NSNotification *)aNotification
|
||||
{
|
||||
id object = [aNotification object];
|
||||
[classesView selectClass: [object stringValue]];
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation GormDocument (MenuValidation)
|
||||
|
@ -3682,3 +3687,4 @@ willBeInsertedIntoToolbar: (BOOL)flag
|
|||
nil];
|
||||
}
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue