Lines Matching refs:paths
243 by WebKit. The plugins are picked up by WebKit by looking up a set of search paths.
244 The default set can be accessed using defaultSearchPaths(). The search paths
245 can be changed, see searchPaths() and setSearchPaths(). Additional search paths
273 Returns a list of plugins installed in the search paths.
294 Returns a default set of search paths.
300 QStringList paths;
304 paths.append(directories[i]);
306 return paths;
310 Returns a list of search paths that are used by WebKit to look for plugins.
316 QStringList paths;
320 paths.append(directories[i]);
322 return paths;
326 Changes the search paths to \a paths.
331 void QWebPluginDatabase::setSearchPaths(const QStringList& paths)
335 for (int i = 0; i < paths.count(); ++i)
336 directories.append(paths.at(i));
357 the ones that are no longer available in the search paths.
359 You can call this function when the set of plugins installed in the search paths
360 changes. You do not need to call this function when changing search paths,