mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
0844277a8f
svn path=/trunk/KDE/kdebase/apps/; revision=1004952
96 lines
3.2 KiB
C++
96 lines
3.2 KiB
C++
/* This file is part of the KDE projects
|
|
Copyright (C) 2000 David Faure <faure@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program 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
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef kfindpart__h
|
|
#define kfindpart__h
|
|
|
|
#include <kparts/browserextension.h>
|
|
#include <kparts/part.h>
|
|
#include <kfileitem.h>
|
|
#include <kdebug.h>
|
|
|
|
class KQuery;
|
|
class KAboutData;
|
|
class Kfind;
|
|
|
|
class KFindPart : public KParts::ReadOnlyPart
|
|
{
|
|
friend class KFindPartBrowserExtension;
|
|
Q_OBJECT
|
|
Q_PROPERTY( bool showsResult READ showsResult )
|
|
public:
|
|
KFindPart( QWidget * parentWidget, QObject *parent, const QStringList & /*args*/ );
|
|
virtual ~KFindPart();
|
|
|
|
static KAboutData *createAboutData();
|
|
|
|
virtual bool openUrl( const KUrl &url );
|
|
virtual bool closeUrl() { return true; }
|
|
virtual bool openFile() { return false; }
|
|
|
|
bool showsResult() const { return m_bShowsResult; }
|
|
|
|
virtual void saveState( QDataStream &stream );
|
|
virtual void restoreState( QDataStream &stream );
|
|
|
|
// "Cut" icons : disable those whose URL is in lst, enable the rest //added for konqdirpart
|
|
//virtual void disableIcons( const KUrl::List & ){}
|
|
//virtual const KFileItem * currentItem(){return 0;}
|
|
|
|
Q_SIGNALS:
|
|
// Konqueror connects directly to those signals
|
|
void started(); // started a search
|
|
void clear(); // delete all items
|
|
void newItems(const KFileItemList&); // found this/these item(s)
|
|
void finished(); // finished searching
|
|
void canceled(); // the user canceled the search
|
|
void findClosed(); // close us
|
|
void deleteItem( const KFileItem &item);
|
|
|
|
protected Q_SLOTS:
|
|
void slotStarted();
|
|
void slotDestroyMe();
|
|
void addFile(const KFileItem &item, const QString& matchingLine);
|
|
/* An item has been removed, so update konqueror's view */
|
|
void removeFile(const KFileItem &item);
|
|
void slotResult(int errorCode);
|
|
void newFiles(const KFileItemList&);
|
|
#if 0
|
|
// slots connected to the directory lister //added for konqdirpart
|
|
// virtual void slotStarted();
|
|
virtual void slotCanceled(){}
|
|
virtual void slotCompleted(){}
|
|
virtual void slotNewItems( const KFileItemList& ){}
|
|
virtual void slotDeleteItem( const KFileItem& ){}
|
|
virtual void slotRefreshItems( const QList<QPair<KFileItem, KFileItem> >& ){}
|
|
virtual void slotClear(){}
|
|
virtual void slotRedirection( const KUrl & ){}
|
|
#endif
|
|
|
|
private:
|
|
Kfind * m_kfindWidget;
|
|
KQuery *query;
|
|
bool m_bShowsResult; // whether the dirpart shows the results of a search or not
|
|
/**
|
|
* The internal storage of file items
|
|
*/
|
|
KFileItemList m_lstFileItems;
|
|
};
|
|
|
|
#endif
|