• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • kate
 

kate

  • kate
  • app
kateconfigplugindialogpage.h
1/* This file is part of the KDE project
2 Copyright (C) 2001 Christoph Cullmann <cullmann@kde.org>
3 Copyright (C) 2002 Joseph Wenninger <jowenn@kde.org>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License version 2 as published by the Free Software Foundation.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
18*/
19
20#ifndef __KATE_CONFIGPLUGINDIALOGPAGE_H__
21#define __KATE_CONFIGPLUGINDIALOGPAGE_H__
22
23#include "katemain.h"
24#include "katepluginmanager.h"
25
26#include <tdelistview.h>
27
28#include <tqvbox.h>
29
30class KatePluginListItem;
31
32class KatePluginListView : public TDEListView
33{
34 TQ_OBJECT
35
36 friend class KatePluginListItem;
37
38 public:
39 KatePluginListView (TQWidget *parent = 0, const char *name = 0);
40
41 signals:
42 void stateChange(KatePluginListItem *, bool);
43
44 private:
45 void stateChanged(KatePluginListItem *, bool);
46};
47
48class KateConfigPluginPage: public TQVBox
49{
50 TQ_OBJECT
51
52 public:
53 KateConfigPluginPage(TQWidget *parent, class KateConfigDialog *dialog);
54 ~KateConfigPluginPage(){;};
55
56 private:
57 class KateConfigDialog *myDialog;
58
59 signals:
60 void changed();
61
62 private slots:
63 void stateChange(KatePluginListItem *, bool);
64
65 void loadPlugin (KatePluginListItem *);
66 void unloadPlugin (KatePluginListItem *);
67};
68
69#endif

kate

Skip menu "kate"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

kate

Skip menu "kate"
  • kate
  • libkonq
  • twin
  •   lib
Generated for kate by doxygen 1.9.4
This website is maintained by Timothy Pearson.