dolphin/konqueror/preloader/preloader.h
Michael Jansen 62b53cca02 Add Q_CLASSINFO . KDEDModules have to have one
because they are registered with dbus from kded.

svn path=/trunk/KDE/kdebase/apps/; revision=870665
2008-10-13 00:38:18 +00:00

61 lines
2 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2002 Lubos Lunak <l.lunak@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.
*/
#ifndef _KONQUEROR_PRELOADER_H
#define _KONQUEROR_PRELOADER_H
#include <kdedmodule.h>
#include <QtCore/QTimer>
class KonqyPreloader
: public KDEDModule
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.konqueror.Preloader")
public:
KonqyPreloader(QObject* parent, const QList<QVariant>&);
virtual ~KonqyPreloader();
public Q_SLOTS:
bool registerPreloadedKonqy( const QString &id, int screen );
QString getPreloadedKonqy( int screen );
void unregisterPreloadedKonqy( const QString &id );
void reconfigure();
void unloadAllPreloaded();
private Q_SLOTS:
void appChanged( const QString &id, const QString &oldOwner, const QString &newOwner );
void checkAlwaysPreloaded();
private:
void updateCount();
struct KonqyData
{
KonqyData() {} // for QValueList
KonqyData( const QString& id_P, int screen_P )
: id( id_P ), screen( screen_P ) {}
QString id;
int screen;
};
typedef QList< KonqyData > InstancesList;
InstancesList instances;
QTimer check_always_preloaded_timer;
};
#endif