mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-19 10:00:48 +00:00
* PCMenuController.m: Added Find panel support. * TextFinder.[hm]: Added implementation of Find panel. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@25498 72102866-910b-0410-8b05-ffd578937521
34 lines
No EOL
641 B
Text
34 lines
No EOL
641 B
Text
{
|
|
"## Comment" = "Do NOT change this file, Gorm maintains it";
|
|
FirstResponder = {
|
|
Actions = (
|
|
"findNext:",
|
|
"findNextAndOrderFindPanelOut:",
|
|
"findPrevious:",
|
|
"ignoreCase:",
|
|
"replace:",
|
|
"replaceAll:",
|
|
"replaceAndFind:"
|
|
);
|
|
Super = NSObject;
|
|
};
|
|
TextFinder = {
|
|
Actions = (
|
|
"findNext:",
|
|
"findNextAndOrderFindPanelOut:",
|
|
"findPrevious:",
|
|
"replace:",
|
|
"replaceAll:",
|
|
"replaceAndFind:"
|
|
);
|
|
Outlets = (
|
|
findNextButton,
|
|
findTextField,
|
|
ignoreCaseButton,
|
|
replaceAllScopeMatrix,
|
|
replaceTextField,
|
|
statusField
|
|
);
|
|
Super = NSObject;
|
|
};
|
|
} |