You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.4 KiB
93 lines
3.4 KiB
15 years ago
|
/* This file is part of the KDE project
|
||
|
*
|
||
|
* Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
|
||
|
* 1999 Lars Knoll <knoll@kde.org>
|
||
|
* 1999 Antti Koivisto <koivisto@kde.org>
|
||
|
* 2000 Simon Hausmann <hausmann@kde.org>
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
12 years ago
|
#include "tdehtmlpart_p.h"
|
||
|
#include "tdehtml_run.h"
|
||
15 years ago
|
#include <kio/job.h>
|
||
|
#include <kdebug.h>
|
||
|
#include <klocale.h>
|
||
12 years ago
|
#include "tdehtml_ext.h"
|
||
14 years ago
|
#include <tqwidget.h>
|
||
15 years ago
|
|
||
12 years ago
|
KHTMLRun::KHTMLRun( KHTMLPart *part, tdehtml::ChildFrame *child, const KURL &url,
|
||
15 years ago
|
const KParts::URLArgs &args, bool hideErrorDialog )
|
||
13 years ago
|
: KParts::BrowserRun( url, args, part, part->widget() ? part->widget()->topLevelWidget() : 0,
|
||
15 years ago
|
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);
|
||
|
}
|
||
|
|
||
|
//KHTMLPart *KHTMLRun::htmlPart() const
|
||
|
//{ return static_cast<KHTMLPart *>(m_part); }
|
||
|
|
||
14 years ago
|
void KHTMLRun::foundMimeType( const TQString &_type )
|
||
15 years ago
|
{
|
||
|
Q_ASSERT(!m_bFinished);
|
||
14 years ago
|
TQString mimeType = _type; // this ref comes from the job, we lose it when using KIO again
|
||
15 years ago
|
if ( static_cast<KHTMLPart *>(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<KHTMLPart *>(m_part)->checkCompleted();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ( m_bFinished )
|
||
|
{
|
||
|
m_timer.start( 0, true );
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
//kdDebug(6050) << "KHTMLRun::foundMimeType " << _type << " couldn't open" << endl;
|
||
|
KRun::foundMimeType( mimeType );
|
||
|
|
||
|
// "open" is finished -> flag completed
|
||
|
m_child->m_bCompleted = true;
|
||
|
static_cast<KHTMLPart *>(m_part)->checkCompleted();
|
||
|
}
|
||
|
|
||
14 years ago
|
void KHTMLRun::save( const KURL & url, const TQString & suggestedFilename )
|
||
15 years ago
|
{
|
||
14 years ago
|
KHTMLPopupGUIClient::saveURL( m_part->widget(), i18n( "Save As" ), url, m_args.metaData(), TQString::null, 0, suggestedFilename );
|
||
15 years ago
|
}
|
||
|
|
||
|
// KDE4: remove
|
||
12 years ago
|
void KHTMLRun::handleError( TDEIO::Job *job )
|
||
15 years ago
|
{
|
||
|
KParts::BrowserRun::handleError( job );
|
||
|
}
|
||
|
|
||
12 years ago
|
#include "tdehtml_run.moc"
|