dolphin/konqueror/konq_run.h
David Faure 2577717d85 openFileManagerWindow fix
Removed Simon's hack "friend class KonquerorIfaceImpl" :)

svn path=/trunk/kdebase/konqueror/; revision=32996
1999-11-06 11:36:16 +00:00

66 lines
1.9 KiB
C++

/* This file is part of the KDE project
Copyright (C) 1998, 1999 Torben Weis <weis@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., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __kfm_run_h__
#define __kfm_run_h__
#include "krun.h"
#include <sys/types.h>
class KonqMainView;
class KonqChildView;
class KonqRun : public KRun
{
Q_OBJECT
public:
/**
* Create a KonqRun instance, associated to the main view and an
* optionnal child view.
*/
KonqRun( KonqMainView* _view, KonqChildView *_childView,
const QString &_url, mode_t _mode = 0,
bool _is_local_file = false, bool _auto_delete = true );
virtual ~KonqRun();
protected:
/**
* Called if the mimetype has been detected. The function checks wether the document
* and appends the gzip protocol to the URL. Otherwise @ref #runURL is called to
* finish the job.
*/
virtual void foundMimeType( const char *_type );
KonqMainView* m_pView;
KonqChildView* m_pChildView;
};
/* Implement the openFileManagerWindow call that libkio does if necessary */
class KonqFileManager : public KFileManager
{
public:
KonqFileManager() {} ;
virtual ~KonqFileManager() {} ;
virtual bool openFileManagerWindow( const QString & _url );
};
#endif