WebView::WebView(QWidget* parent) : QWebView(parent) , m_currentZoom(100) , m_isLoading(false) , m_progress(0) , m_clickedFrame(0) , m_page(0) , m_actionReload(0) , m_actionStop(0) , m_actionsInitialized(false) , m_disableTouchMocking(false) , m_isReloading(false) , m_hasRss(false) , m_rssChecked(false) { connect(this, SIGNAL(loadStarted()), this, SLOT(slotLoadStarted())); connect(this, SIGNAL(loadProgress(int)), this, SLOT(slotLoadProgress(int))); connect(this, SIGNAL(loadFinished(bool)), this, SLOT(slotLoadFinished())); connect(this, SIGNAL(iconChanged()), this, SLOT(slotIconChanged())); connect(this, SIGNAL(urlChanged(QUrl)), this, SLOT(slotUrlChanged(QUrl))); // Zoom levels same as in firefox m_zoomLevels << 30 << 50 << 67 << 80 << 90 << 100 << 110 << 120 << 133 << 150 << 170 << 200 << 240 << 300; #if QTWEBKIT_TO_2_3 installEventFilter(this); #endif #ifdef Q_OS_MAC new MacWebViewScroller(this); #endif }
OwncloudSetupPage::OwncloudSetupPage() : QWizardPage(), _ui(), _oCUrl(), _ocUser(), _authTypeKnown(false), _checking(false), _authType(WizardCommon::HttpCreds), _progressIndi(new QProgressIndicator (this)) { _ui.setupUi(this); Theme *theme = Theme::instance(); setTitle(WizardCommon::titleTemplate().arg(tr("Connect to %1").arg(theme->appNameGUI()))); setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Setup %1 server").arg(theme->appNameGUI()))); registerField( QLatin1String("OCUrl*"), _ui.leUrl ); _ui.resultLayout->addWidget( _progressIndi ); stopSpinner(); setupCustomization(); connect(_ui.leUrl, SIGNAL(textChanged(QString)), SLOT(slotUrlChanged(QString))); connect(_ui.leUrl, SIGNAL(editingFinished()), SLOT(slotUrlEditFinished())); }
WebView::WebView(QWidget* parent) : QWebView(parent) , m_isLoading(false) , m_progress(0) , m_clickedFrame(0) , m_page(0) , m_actionReload(0) , m_actionStop(0) , m_actionsInitialized(false) , m_disableTouchMocking(false) , m_isReloading(false) , m_hasRss(false) , m_rssChecked(false) { connect(this, SIGNAL(loadStarted()), this, SLOT(slotLoadStarted())); connect(this, SIGNAL(loadProgress(int)), this, SLOT(slotLoadProgress(int))); connect(this, SIGNAL(loadFinished(bool)), this, SLOT(slotLoadFinished())); connect(this, SIGNAL(iconChanged()), this, SLOT(slotIconChanged())); connect(this, SIGNAL(urlChanged(QUrl)), this, SLOT(slotUrlChanged(QUrl))); m_zoomLevels = zoomLevels(); m_currentZoomLevel = m_zoomLevels.indexOf(100); installEventFilter(this); #ifdef Q_OS_MAC new MacWebViewScroller(this); #endif }
OwncloudSetupPage::OwncloudSetupPage(QWidget *parent) : QWizardPage(), _ui(), _oCUrl(), _ocUser(), _authTypeKnown(false), _checking(false), _authType(WizardCommon::HttpCreds), _progressIndi(new QProgressIndicator (this)) { _ui.setupUi(this); Theme *theme = Theme::instance(); setTitle(WizardCommon::titleTemplate().arg(tr("Connect to %1").arg(theme->appNameGUI()))); setSubTitle(WizardCommon::subTitleTemplate().arg(tr("Setup %1 server").arg(theme->appNameGUI()))); if (!theme->overrideServerUrl().isEmpty()) { _ui.leUrl->setEnabled(false); } registerField( QLatin1String("OCUrl*"), _ui.leUrl ); _ui.resultLayout->addWidget( _progressIndi ); stopSpinner(); setupCustomization(); slotUrlChanged(QLatin1String("")); // don't jitter UI connect(_ui.leUrl, SIGNAL(textChanged(QString)), SLOT(slotUrlChanged(QString))); connect(_ui.leUrl, SIGNAL(editingFinished()), SLOT(slotUrlEditFinished())); addCertDial = new AddCertificateDialog(this); _ocWizard = qobject_cast<OwncloudWizard *>(parent); connect(_ocWizard,SIGNAL(needCertificate()),this,SLOT(slotAskSSLClientCertificate())); }
KMSoundTestWidget::KMSoundTestWidget(QWidget *parent, const char *name) : QWidget( parent, name) { QHBoxLayout *lay1 = new QHBoxLayout( this ); m_playButton = new QPushButton( this, "m_playButton" ); m_playButton->setPixmap( SmallIcon( "1rightarrow" ) ); connect( m_playButton, SIGNAL( clicked() ), SLOT( playSound() )); lay1->addWidget( m_playButton ); m_urlRequester = new KURLRequester( this ); lay1->addWidget( m_urlRequester ); connect( m_urlRequester, SIGNAL( openFileDialog( KURLRequester * )), SLOT( openSoundDialog( KURLRequester * ))); connect( m_urlRequester->lineEdit(), SIGNAL( textChanged ( const QString & )), SLOT( slotUrlChanged(const QString & ))); slotUrlChanged(m_urlRequester->lineEdit()->text() ); }
void KWebKitPart::slotMainFrameLoadFinished (bool ok) { if (!ok || !m_doLoadFinishedActions) return; m_doLoadFinishedActions = false; if (!m_emitOpenUrlNotify) { m_emitOpenUrlNotify = true; // Save history once page loading is done. } // If the document contains no <title> tag, then set it to the current url. if (m_webView->title().trimmed().isEmpty()) { // If the document title is empty, then set it to the current url const QUrl url (m_webView->url()); const QString caption (url.toString((QUrl::RemoveQuery|QUrl::RemoveFragment))); emit setWindowCaption(caption); // The urlChanged signal is emitted if and only if the main frame // receives the title of the page so we manually invoke the slot as a // work around here for pages that do not contain it, such as text // documents... slotUrlChanged(url); } QWebFrame* frame = page()->mainFrame(); if (!frame || frame->url() == *globalBlankUrl) return; // Set the favicon specified through the <link> tag... if (WebKitSettings::self()->favIconsEnabled() && !frame->page()->settings()->testAttribute(QWebSettings::PrivateBrowsingEnabled)) { const QWebElement element = frame->findFirstElement(QL1S("head>link[rel=icon], " "head>link[rel=\"shortcut icon\"]")); QUrl shortcutIconUrl; if (!element.isNull()) { shortcutIconUrl = frame->baseUrl().resolved(QUrl(element.attribute("href"))); //kDebug() << "setting favicon to" << shortcutIconUrl; m_browserExtension->setIconUrl(shortcutIconUrl); } } slotFrameLoadFinished(ok); }
KWebKitPart::KWebKitPart(QWidget *parentWidget, QObject *parent, const QByteArray& cachedHistory, const QStringList& /*args*/) :KParts::ReadOnlyPart(parent), m_emitOpenUrlNotify(true), m_hasCachedFormData(false), m_doLoadFinishedActions(false), m_statusBarWalletLabel(0), m_searchBar(0), m_passwordBar(0), m_featurePermissionBar(0) { KAboutData about = KAboutData("kwebkitpart", i18nc("Program Name", "KWebKitPart"), /*version*/ "1.3.0", i18nc("Short Description", "QtWebKit Browser Engine Component"), KAboutLicense::LGPL, i18n("(C) 2009-2010 Dawit Alemayehu\n" "(C) 2008-2010 Urs Wolfer\n" "(C) 2007 Trolltech ASA")); about.addAuthor(i18n("Dawit Alemayehu"), i18n("Maintainer, Developer"), "*****@*****.**"); about.addAuthor(i18n("Urs Wolfer"), i18n("Maintainer, Developer"), "*****@*****.**"); about.addAuthor(i18n("Michael Howell"), i18n("Developer"), "*****@*****.**"); about.addAuthor(i18n("Laurent Montel"), i18n("Developer"), "*****@*****.**"); about.addAuthor(i18n("Dirk Mueller"), i18n("Developer"), "*****@*****.**"); about.setProductName("kwebkitpart/general"); // KComponentData componentData(&about); setComponentData(about, false /*don't load plugins yet*/); // NOTE: If the application does not set its version number, we automatically // set it to KDE's version number so that the default user-agent string contains // proper application version number information. See QWebPage::userAgentForUrl... if (QCoreApplication::applicationVersion().isEmpty()) QCoreApplication::setApplicationVersion(QString("%1.%2.%3") .arg(KDE::versionMajor()) .arg(KDE::versionMinor()) .arg(KDE::versionRelease())); setXMLFile(QL1S("kwebkitpart.rc")); // Create this KPart's widget QWidget *mainWidget = new QWidget (parentWidget); mainWidget->setObjectName("kwebkitpart"); // Create the WebView... m_webView = new WebView (this, parentWidget); // Create the browser extension. m_browserExtension = new WebKitBrowserExtension(this, cachedHistory); // Add status bar extension... m_statusBarExtension = new KParts::StatusBarExtension(this); // Add a web history interface for storing visited links. if (!QWebHistoryInterface::defaultInterface()) QWebHistoryInterface::setDefaultInterface(new WebHistoryInterface(this)); // Add text and html extensions... new KWebKitTextExtension(this); new KWebKitHtmlExtension(this); new KWebKitScriptableExtension(this); // Layout the GUI... QVBoxLayout* l = new QVBoxLayout(mainWidget); l->setContentsMargins(0, 0, 0, 0); l->setSpacing(0); l->addWidget(m_webView); mainWidget->setLayout(l); // Set the part's widget setWidget(mainWidget); // Set the web view as the the focus object mainWidget->setFocusProxy(m_webView); // Connect the signals from the webview connect(m_webView, SIGNAL(titleChanged(QString)), this, SIGNAL(setWindowCaption(QString))); connect(m_webView, SIGNAL(urlChanged(QUrl)), this, SLOT(slotUrlChanged(QUrl))); connect(m_webView, SIGNAL(linkMiddleOrCtrlClicked(QUrl)), this, SLOT(slotLinkMiddleOrCtrlClicked(QUrl))); connect(m_webView, SIGNAL(selectionClipboardUrlPasted(QUrl,QString)), this, SLOT(slotSelectionClipboardUrlPasted(QUrl,QString))); connect(m_webView, SIGNAL(loadFinished(bool)), this, SLOT(slotLoadFinished(bool))); // Connect the signals from the page... connectWebPageSignals(page()); // Init the QAction we are going to use... initActions(); // Load plugins once we are fully ready loadPlugins(); }
QString name = group.readEntry("Name"); if (name.isEmpty()) { name = res; } ui->m_schemes->addItem(name); } ui->m_schemes->setCurrentIndex(-1); ui->m_url->setMode(KFile::LocalOnly | KFile::ExistingOnly); connect(ui->m_schemes, SIGNAL(activated(int)), this, SLOT(schemeActivated(int))); connect(ui->m_url->lineEdit(), SIGNAL(textChanged(QString)), this, SLOT(slotUrlChanged(QString))); enableButtonOk(false); } SelectSchemeDialog::~SelectSchemeDialog() { delete ui; } void SelectSchemeDialog::schemeActivated(int index) { ui->m_url->setUrl(QUrl(m_schemes[index])); }