Add first responder actions

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@12268 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-01-29 22:41:02 +00:00
parent 6149af1b52
commit a9dd27a452
6 changed files with 157 additions and 7 deletions

View file

@ -1,6 +1,11 @@
2002-01-29 Adam Fedor <fedor@gnu.org>
* GormClassManager.m (-allActionsForObject:): Get actions for
first responder as well.
* ClassInformation.plist: Update (from stefanurbanek@yahoo.fr).
Add FirstResponder actions.
* Documentation/news.texi: update
2002-01-13 Adam Fedor <fedor@gnu.org>

View file

@ -270,4 +270,140 @@
);
};
FirstResponder = {
Actions = (
"activateContextHelpMode:",
"alignCenter:",
"alignJustified:",
"alignLeft:",
"alignRight:",
"arrangeInFront:",
"cancel:",
"capitalizeWord:",
"changeColor:",
"changeFont:",
"checkSpelling:",
"close:",
"complete:",
"copy:",
"copyFont:",
"copyRuler:",
"cut:",
"delete:",
"deleteBackward:",
"deleteForward:",
"deleteToBeginningOfLine:",
"deleteToBeginningOfParagraph:",
"deleteToEndOfLine:",
"deleteToEndOfParagraph:",
"deleteToMark:",
"deleteWordBackward:",
"deleteWordForward:",
"deminiaturize:",
"deselectAll:",
"fax:",
"hide:",
"hideOtherApplications:",
"indent:",
"loosenKerning:",
"lowerBaseline:",
"lowercaseWord:",
"makeKeyAndOrderFront:",
"miniaturize:",
"miniaturizeAll:",
"moveBackward:",
"moveBackwardAndModifySelection:",
"moveDown:",
"moveDownAndModifySelection:",
"moveForward:",
"moveForwardAndModifySelection:",
"moveLeft:",
"moveRight:",
"moveToBeginningOfDocument:",
"moveToBeginningOfLine:",
"moveToBeginningOfParagraph:",
"moveToEndOfDocument:",
"moveToEndOfLine:",
"moveToEndOfParagraph:",
"moveUp:",
"moveUpAndModifySelection:",
"moveWordBackward:",
"moveWordBackwardAndModifySelection:",
"moveWordForward:",
"moveWordForwardAndModifySelection:",
"ok:",
"open:",
"orderBack:",
"orderFront:",
"orderFrontColorPanel:",
"orderFrontDataLinkPanel:",
"orderFrontHelpPanel:",
"orderFrontStandardAboutPanel:",
"orderFrontStandardInfoPanel:",
"orderOut:",
"pageDown:",
"pageUp:",
"paste:",
"pasteAsPlainText:",
"pasteAsRichText:",
"pasteFont:",
"pasteRuler:",
"performClose:",
"performMiniaturize:",
"performZoom:",
"print:",
"raiseBaseline:",
"runPageLayout:",
"runToolbarCustomizationPalette:",
"scrollLineDown:",
"scrollLineUp:",
"scrollPageDown:",
"scrollPageUp:",
"scrollViaScroller:",
"selectAll:",
"selectLine:",
"selectNextKeyView:",
"selectParagraph:",
"selectPreviousKeyView:",
"selectText:",
"selectText:",
"selectToMark:",
"selectWord:",
"showContextHelp:",
"showGuessPanel:",
"showHelp:",
"showWindow:",
"stop:",
"subscript:",
"superscript:",
"swapWithMark:",
"takeDoubleValueFrom:",
"takeFloatValueFrom:",
"takeIntValueFrom:",
"takeObjectValueFrom:",
"takeStringValueFrom:",
"terminate:",
"tightenKerning:",
"toggle:",
"toggleContinuousSpellChecking:",
"toggleRuler:",
"toggleToolbarShown:",
"toggleTraditionalCharacterShape:",
"transpose:",
"transposeWords:",
"turnOffKerning:",
"turnOffLigatures:",
"underline:",
"unhide:",
"unhideAllApplications:",
"unscript:",
"uppercaseWord:",
"useAllLigatures:",
"useStandardKerning:",
"useStandardLigatures:",
"yank:",
"zoom:",
);
Super = NSObject;
};
}

View file

@ -4,6 +4,19 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{0.1.0}
@itemize @bullet
@item load/parses class files for entry into class list.
@item Pallete/inspectors for date and number formatters
@item Pallete/Inspectors for browsers and tableViews
@item NSStepper, NSForm, NSPopupButton pallete item and inspector
@item Most inspectors greatly improved and fleshed out.
@item Custom views added.
@item Ability to edit cells in a matrix.
@item Ability to change the font of some objects.
@end itemize
@section Noteworthy changes in version @samp{0.0.3}
@itemize @bullet

View file

@ -40,9 +40,6 @@ Known problems (things to do) -
@item Documentation - only a tiny start has been made on this!
@item Editors and inspectors need writing for most gui elements -
popup menus
boxes
browsers
scrollviews
splitviews
etc etc

View file

@ -155,10 +155,9 @@ NSString *IBClassNameChangedNotification = @"IBClassNameChangedNotification";
if (theClass == [GormFirstResponder class])
{
return nil;
className = @"FirstResponder";
}
if (theClass == [GormFilesOwner class])
else if (theClass == [GormFilesOwner class])
{
className = [(GormFilesOwner*)obj className];
}

View file

@ -53,7 +53,7 @@ NSString *IBWillCloseDocumentNotification = @"IBWillCloseDocumentNotification";
}
- (NSString*) connectInspectorClassName
{
return @"GormNotApplicableInspector";
return @"GormConnectionInspector";
}
- (NSString*) sizeInspectorClassName
{