Lines Matching refs:extension
110 For example, a mime type for PDF documents would return "pdf" as its file extension.
185 \enum QWebPluginFactory::Extension
188 should verify that the extension is supported by calling supportsExtension().
196 \brief The ExtensionOption class provides an extended input argument to QWebPluginFactory's extension support.
200 \sa QWebPluginFactory::extension()
206 \brief The ExtensionOption class provides an extended output argument to QWebPluginFactory's extension support.
210 \sa QWebPluginFactory::extension()
215 argument is provided as input to the extension; the output results can be stored in \a output.
217 The behaviour of this function is determined by \a extension.
219 You can call supportsExtension() to check if an extension is supported by the factory.
223 \sa supportsExtension(), Extension
225 bool QWebPluginFactory::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output)
227 Q_UNUSED(extension)
234 This virtual function returns true if the plugin factory supports \a extension; otherwise false is returned.
236 \sa extension()
238 bool QWebPluginFactory::supportsExtension(Extension extension) const
240 Q_UNUSED(extension)