summaryrefslogtreecommitdiffstats
path: root/quanta/plugins/quantaplugineditor.h
blob: e26ad53f618110524c6b11f13068f3b59f2dc3dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
                          quantaplugineditor.h  -  description
                             -------------------
    begin                : Fri Sep 20 2002
    copyright            : (C) 2002 by Marc Britton <consume@optushome.com.au>
                           (C) 2003 by Andras Mantia <amantia@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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef QUANTAPLUGINEDITOR_H
#define QUANTAPLUGINEDITOR_H

/* KDE INCLUDES */
#include <kdialogbase.h>

/* QT INCLUDES */
#include <tqdict.h>
#include <tqlistview.h>

/* OTHER INCLUDES */
#include "quantaplugin.h"
#include "plugineditor.h"

/**Editor for the plugins that manages configuration
  *@author Marc Britton
  */

/* FORWARD DECLARATIONS */
class TQWidget;
class TQListView;
class KDialogBase;
class PluginEditor;

class QuantaPluginEditor : public KDialogBase
{
  Q_OBJECT
  TQ_OBJECT

public:
  QuantaPluginEditor(TQWidget *, const char *);
  ~QuantaPluginEditor();
  TQDict<QuantaPlugin> plugins();
  /** No descriptions */
  TQStringList searchPathList();
  /** No descriptions */
  void setSearchPaths(const TQStringList& paths);

signals:
  void pluginsChanged();

public slots:
  void setPlugins(TQDict<QuantaPlugin>);
  void addSearchPath();
  void addPlugin();
  void removePlugin();
  void configurePlugin();
  void configurePlugin(TQListViewItem*, const TQPoint&, int);
  void refreshPlugins();

protected:
  TQDict<QuantaPlugin> m_plugins;
  PluginEditor *m_pluginEditorWidget;
};

class PluginEditorItem : public TQListViewItem
{
public:
  PluginEditorItem(TQListView *);
  virtual void paintCell(TQPainter *, const TQColorGroup &, int, int, int);
};

#endif