~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to konqueror/konq_extensionmanager.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-27 12:09:48 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080527120948-dottsyd5rcwhzd36
Tags: 4:4.0.80-1ubuntu1
* Merge with Debian
 - remove 97_fix_target_link_libraries.diff
 - Add replaces/conflicts on -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- indent-tabs-mode: t; tab-width: 4; c-basic-offset:4 -*-
2
 
 
3
 
    konq_extensionmanager.h - Extension Manager for Konqueror
4
 
 
5
 
    Copyright (c) 2003      by Martijn Klingens      <klingens@kde.org>
6
 
    Copyright (c) 2004      by Arend van Beelen jr.  <arend@auton.nl>
7
 
 
8
 
    *************************************************************************
9
 
    *                                                                       *
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.                                   *
14
 
    *                                                                       *
15
 
    *************************************************************************
16
 
*/
17
 
 
18
 
#ifndef KONQEXTENSIONMANAGER_H
19
 
#define KONQEXTENSIONMANAGER_H
20
 
 
21
 
#include <kdialogbase.h>
22
 
 
23
 
class KonqExtensionManagerPrivate;
24
 
class KonqMainWindow;
25
 
namespace KParts { class ReadOnlyPart; }
26
 
 
27
 
/**
28
 
 * Extension Manager for Konqueror. See KPluginSelector in kdelibs for
29
 
 * documentation.
30
 
 *
31
 
 * @author Martijn Klingens <klingens@kde.org>
32
 
 * @author Arend van Beelen jr. <arend@auton.nl>
33
 
 */
34
 
class KonqExtensionManager : public KDialogBase
35
 
{
36
 
        Q_OBJECT
37
 
 
38
 
        public:
39
 
                KonqExtensionManager(QWidget *parent, KonqMainWindow *mainWindow, KParts::ReadOnlyPart* activePart);
40
 
                ~KonqExtensionManager();
41
 
 
42
 
                void apply();
43
 
 
44
 
        public slots:
45
 
                void setChanged(bool c);
46
 
 
47
 
                virtual void slotDefault();
48
 
                virtual void slotUser1();
49
 
                virtual void slotApply();
50
 
                virtual void slotOk();
51
 
                virtual void show();
52
 
 
53
 
        private:
54
 
                KonqExtensionManagerPrivate *d;
55
 
};
56
 
 
57
 
#endif // KONQEXTENSIONMANAGER_H