summaryrefslogtreecommitdiffstats
path: root/tdehtml/tdehtml_run.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2013-03-02 15:57:34 -0600
committerDarrell Anderson <[email protected]>2013-03-02 15:57:34 -0600
commit7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch)
treec76702a7f6310fbe9d437e347535422e836e94e9 /tdehtml/tdehtml_run.cpp
parenta2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff)
parent27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff)
downloadtdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz
tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdehtml/tdehtml_run.cpp')
-rw-r--r--tdehtml/tdehtml_run.cpp92
1 files changed, 92 insertions, 0 deletions
diff --git a/tdehtml/tdehtml_run.cpp b/tdehtml/tdehtml_run.cpp
new file mode 100644
index 000000000..499616cce
--- /dev/null
+++ b/tdehtml/tdehtml_run.cpp
@@ -0,0 +1,92 @@
+/* This file is part of the KDE project
+ *
+ * Copyright (C) 1998, 1999 Torben Weis <[email protected]>
+ * 1999 Lars Knoll <[email protected]>
+ * 1999 Antti Koivisto <[email protected]>
+ * 2000 Simon Hausmann <[email protected]>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+#include "tdehtmlpart_p.h"
+#include "tdehtml_run.h"
+#include <tdeio/job.h>
+#include <kdebug.h>
+#include <tdelocale.h>
+#include "tdehtml_ext.h"
+#include <tqwidget.h>
+
+TDEHTMLRun::TDEHTMLRun( TDEHTMLPart *part, tdehtml::ChildFrame *child, const KURL &url,
+ const KParts::URLArgs &args, bool hideErrorDialog )
+ : KParts::BrowserRun( url, args, part, part->widget() ? part->widget()->topLevelWidget() : 0,
+ false, false, hideErrorDialog ),
+ m_child( child )
+{
+ // Don't use an external browser for parts of a webpage we are rendering. (iframes at least are one example)
+ setEnableExternalBrowser(false);
+
+ // get the wheel to start spinning
+ part->started(0L);
+}
+
+//TDEHTMLPart *TDEHTMLRun::htmlPart() const
+//{ return static_cast<TDEHTMLPart *>(m_part); }
+
+void TDEHTMLRun::foundMimeType( const TQString &_type )
+{
+ Q_ASSERT(!m_bFinished);
+ TQString mimeType = _type; // this ref comes from the job, we lose it when using KIO again
+ if ( static_cast<TDEHTMLPart *>(m_part)->processObjectRequest( m_child, m_strURL, mimeType ) )
+ m_bFinished = true;
+ else {
+ if ( m_bFinished ) // abort was called (this happens with the activex fallback for instance)
+ return;
+ // Couldn't embed -> call BrowserRun::handleNonEmbeddable()
+ KParts::BrowserRun::NonEmbeddableResult res = handleNonEmbeddable( mimeType );
+ if ( res == KParts::BrowserRun::Delayed )
+ return;
+ m_bFinished = ( res == KParts::BrowserRun::Handled );
+ if ( m_bFinished ) { // saved or canceled -> flag completed
+ m_child->m_bCompleted = true;
+ static_cast<TDEHTMLPart *>(m_part)->checkCompleted();
+ }
+ }
+
+ if ( m_bFinished )
+ {
+ m_timer.start( 0, true );
+ return;
+ }
+
+ //kdDebug(6050) << "TDEHTMLRun::foundMimeType " << _type << " couldn't open" << endl;
+ KRun::foundMimeType( mimeType );
+
+ // "open" is finished -> flag completed
+ m_child->m_bCompleted = true;
+ static_cast<TDEHTMLPart *>(m_part)->checkCompleted();
+}
+
+void TDEHTMLRun::save( const KURL & url, const TQString & suggestedFilename )
+{
+ TDEHTMLPopupGUIClient::saveURL( m_part->widget(), i18n( "Save As" ), url, m_args.metaData(), TQString::null, 0, suggestedFilename );
+}
+
+// KDE4: remove
+void TDEHTMLRun::handleError( TDEIO::Job *job )
+{
+ KParts::BrowserRun::handleError( job );
+}
+
+#include "tdehtml_run.moc"