* 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:
Gregory John Casamento 2006-09-29 00:41:30 +00:00
parent 8cdc16adab
commit d5e5de02c9
6 changed files with 64 additions and 2 deletions

View file

@ -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.

View file

@ -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;
};
}

View file

@ -2063,7 +2063,7 @@
}
}
return [classes sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)];
return classes;
}
- (void) addActions: (NSArray *)actions forClassNamed: (NSString *)className

View file

@ -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