Lines Matching refs:extension
2823 \enum QWebPage::Extension
2826 should verify that the extension is supported by calling supportsExtension().
2829 This extension is invoked when the web content requests one or more file names, for example
2849 \brief The ExtensionOption class provides an extended input argument to QWebPage's extension support.
2853 \sa QWebPage::extension()
2860 for the error page extension.
2903 for the multiple files selection extension.
2917 for the multiple files selection extension.
2922 when the extension is invoked.
2929 argument is provided as input to the extension; the output results can be stored in \a output.
2931 The behavior of this function is determined by \a extension.
2933 You can call supportsExtension() to check if an extension is supported by the page.
2935 Returns true if the extension was called successfully; otherwise returns false.
2937 \sa supportsExtension(), Extension
2939 bool QWebPage::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output)
2942 if (extension == ChooseMultipleFilesExtension) {
2955 This virtual function returns true if the web page supports \a extension; otherwise false is returned.
2957 \sa extension()
2959 bool QWebPage::supportsExtension(Extension extension) const
2962 return extension == ChooseMultipleFilesExtension;
2964 Q_UNUSED(extension);