Lines Matching refs:selector
387 map->add(@selector(insertNewlineIgnoringFieldEditor:), "InsertNewline");
388 map->add(@selector(insertParagraphSeparator:), "InsertNewline");
389 map->add(@selector(insertTabIgnoringFieldEditor:), "InsertTab");
390 map->add(@selector(pageDown:), "MovePageDown");
391 map->add(@selector(pageDownAndModifySelection:), "MovePageDownAndModifySelection");
392 map->add(@selector(pageUp:), "MovePageUp");
393 map->add(@selector(pageUpAndModifySelection:), "MovePageUpAndModifySelection");
394 map->add(@selector(scrollPageDown:), "ScrollPageForward");
395 map->add(@selector(scrollPageUp:), "ScrollPageBackward");
400 static String commandNameForSelector(SEL selector)
404 SelectorNameMap::const_iterator it = exceptionMap->find(selector);
411 const char* selectorName = sel_getName(selector);
626 if (action == @selector(showGuessPanel:)) {
632 if (action == @selector(checkSpelling:) || action == @selector(changeSpelling:))
635 if (action == @selector(toggleContinuousSpellChecking:)) {
642 if (action == @selector(toggleGrammarChecking:)) {
648 if (action == @selector(toggleAutomaticSpellingCorrection:)) {
654 if (action == @selector(orderFrontSubstitutionsPanel:)) {
660 if (action == @selector(toggleSmartInsertDelete:)) {
666 if (action == @selector(toggleAutomaticQuoteSubstitution:)) {
672 if (action == @selector(toggleAutomaticDashSubstitution:)) {
678 if (action == @selector(toggleAutomaticLinkDetection:)) {
684 if (action == @selector(toggleAutomaticTextReplacement:)) {
690 if (action == @selector(uppercaseWord:) || action == @selector(lowercaseWord:) || action == @selector(capitalizeWord:))
693 if (action == @selector(stopSpeaking:))
697 // Returning YES is the default thing to do in an AppKit validate method for any selector that is not recognized.
942 #define NATIVE_MOUSE_EVENT_HANDLER(Selector) \
943 - (void)Selector:(NSEvent *)theEvent \
946 LOG(TextInput, "%s was handled by text input context", String(#Selector).substring(0, String(#Selector).find("Internal")).ascii().data()); \
969 #define EVENT_HANDLER(Selector, Type) \
970 - (void)Selector:(NSEvent *)theEvent \
1082 - (void)doCommandBySelector:(SEL)selector
1084 LOG(TextInput, "doCommandBySelector:\"%s\"", sel_getName(selector));
1094 parameters->commands->append(KeypressCommand(NSStringFromSelector(selector)));
1097 // responder chain if it's a selector that does not correspond to an editing command.
1098 [super doCommandBySelector:selector];
1652 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidBecomeKey:)
1654 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidResignKey:)
1656 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidMiniaturize:)
1658 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidDeminiaturize:)
1660 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowFrameDidChange:)
1662 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowFrameDidChange:)
1664 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidOrderOffScreen:)
1666 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_windowDidOrderOnScreen:)
2356 - (bool)_executeSavedCommandBySelector:(SEL)selector
2361 [super doCommandBySelector:selector];
2439 - (void)noResponderFor:(SEL)selector
2444 - (void)doCommandBySelector:(SEL)selector