Home
last modified time | relevance | path

Searched refs:textCheckerState (Results 1 – 13 of 13) sorted by relevance

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/win/
H A DTextCheckerWin.cpp37 static TextCheckerState textCheckerState; variable
43 return textCheckerState; in state()
46 textCheckerState.isContinuousSpellCheckingEnabled = client.continuousSpellCheckingEnabled(); in state()
47 textCheckerState.isGrammarCheckingEnabled = client.grammarCheckingEnabled(); in state()
51 return textCheckerState; in state()
63 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled; in setContinuousSpellCheckingEnabled()
71 textCheckerState.isGrammarCheckingEnabled = isGrammarCheckingEnabled; in setGrammarCheckingEnabled()
77 textCheckerState.isContinuousSpellCheckingEnabled = enabled; in continuousSpellCheckingEnabledStateChanged()
82 textCheckerState.isGrammarCheckingEnabled = enabled; in grammarCheckingEnabledStateChanged()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm52 TextCheckerState textCheckerState;
61textCheckerState.isGrammarCheckingEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:WebG…
70textCheckerState.isAutomaticSpellingCorrectionEnabled = [NSSpellChecker isAutomaticSpellingCorrect…
79 return textCheckerState;
102 textCheckerState.isContinuousSpellCheckingEnabled = isContinuousSpellCheckingEnabled;
113 textCheckerState.isGrammarCheckingEnabled = isGrammarCheckingEnabled;
126 textCheckerState.isAutomaticSpellingCorrectionEnabled = isAutomaticSpellingCorrectionEnabled;
137 textCheckerState.isAutomaticQuoteSubstitutionEnabled = isAutomaticQuoteSubstitutionEnabled;
148 textCheckerState.isAutomaticDashSubstitutionEnabled = isAutomaticDashSubstitutionEnabled;
159 textCheckerState.isAutomaticLinkDetectionEnabled = isAutomaticLinkDetectionEnabled;
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/qt/
H A DTextCheckerQt.cpp36 static TextCheckerState textCheckerState; variable
42 return textCheckerState; in state()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/gtk/
H A DTextCheckerGtk.cpp37 static TextCheckerState textCheckerState; variable
42 return textCheckerState; in state()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm182 return WebProcess::shared().textCheckerState().isAutomaticQuoteSubstitutionEnabled;
193 return WebProcess::shared().textCheckerState().isAutomaticLinkDetectionEnabled;
204 return WebProcess::shared().textCheckerState().isAutomaticDashSubstitutionEnabled;
215 return WebProcess::shared().textCheckerState().isAutomaticTextReplacementEnabled;
226 return WebProcess::shared().textCheckerState().isAutomaticSpellingCorrectionEnabled;
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/Shared/
H A DWebProcessCreationParameters.cpp63 encoder->encode(textCheckerState); in encode()
117 if (!decoder->decode(parameters.textCheckerState)) in decode()
H A DWebProcessCreationParameters.h76 TextCheckerState textCheckerState; member
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/
H A DWebProcess.cpp211 m_textCheckerState = parameters.textCheckerState; in initializeWebProcess()
834 void WebProcess::setTextCheckerState(const TextCheckerState& textCheckerState) in setTextCheckerState() argument
836 …bool continuousSpellCheckingTurnedOff = !textCheckerState.isContinuousSpellCheckingEnabled && m_te… in setTextCheckerState()
837 …bool grammarCheckingTurnedOff = !textCheckerState.isGrammarCheckingEnabled && m_textCheckerState.i… in setTextCheckerState()
839 m_textCheckerState = textCheckerState; in setTextCheckerState()
H A DWebProcess.h113 const TextCheckerState& textCheckerState() const { return m_textCheckerState; } in textCheckerState() function
H A DWebProcess.messages.in67 SetTextCheckerState(WebKit::TextCheckerState textCheckerState)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp90 return WebProcess::shared().textCheckerState().isContinuousSpellCheckingEnabled; in isContinuousSpellCheckingEnabled()
100 return WebProcess::shared().textCheckerState().isGrammarCheckingEnabled; in isGrammarCheckingEnabled()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/
H A DWebContext.cpp252 parameters.textCheckerState = TextChecker::state(); in ensureWebProcess()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/
H A DChangeLog-2011-02-1610574 Add textCheckerState.