1
/* -*- indent-tabs-mode: t; tab-width: 4; c-basic-offset:4 -*-
3
konq_extensionmanager.h - Extension Manager for Konqueror
5
Copyright (c) 2003 by Martijn Klingens <klingens@kde.org>
6
Copyright (c) 2004 by Arend van Beelen jr. <arend@auton.nl>
8
*************************************************************************
10
* This program is free software; you can redistribute it and/or modify *
11
* it under the terms of the GNU General Public License as published by *
12
* the Free Software Foundation; either version 2 of the License, or *
13
* (at your option) any later version. *
15
*************************************************************************
18
#ifndef KONQEXTENSIONMANAGER_H
19
#define KONQEXTENSIONMANAGER_H
21
#include <kdialogbase.h>
23
class KonqExtensionManagerPrivate;
25
namespace KParts { class ReadOnlyPart; }
28
* Extension Manager for Konqueror. See KPluginSelector in kdelibs for
31
* @author Martijn Klingens <klingens@kde.org>
32
* @author Arend van Beelen jr. <arend@auton.nl>
34
class KonqExtensionManager : public KDialogBase
39
KonqExtensionManager(QWidget *parent, KonqMainWindow *mainWindow, KParts::ReadOnlyPart* activePart);
40
~KonqExtensionManager();
45
void setChanged(bool c);
47
virtual void slotDefault();
48
virtual void slotUser1();
49
virtual void slotApply();
50
virtual void slotOk();
54
KonqExtensionManagerPrivate *d;
57
#endif // KONQEXTENSIONMANAGER_H