File: plugin_app.h

package info (click to toggle)
kdevelop3 4%3A3.2.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 58,220 kB
  • ctags: 33,997
  • sloc: cpp: 278,404; ansic: 48,238; sh: 23,721; tcl: 19,882; perl: 5,498; makefile: 4,717; ruby: 1,610; python: 1,549; awk: 1,484; xml: 563; java: 359; php: 20; asm: 14; ada: 5; pascal: 4; fortran: 4; haskell: 2; sql: 1
file content (91 lines) | stat: -rw-r--r-- 2,444 bytes parent folder | download | duplicates (3)
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
81
82
83
84
85
86
87
88
89
90
91
%{H_TEMPLATE}

#ifndef _PLUGIN_%{APPNAMEUC}_H_
#define _PLUGIN_%{APPNAMEUC}_H_

#include <kate/application.h>
#include <kate/documentmanager.h>
#include <kate/document.h>
#include <kate/mainwindow.h>
#include <kate/plugin.h>
#include <kate/view.h>
#include <kate/viewmanager.h>
#include <kate/pluginconfiginterface.h>
#include <kate/pluginconfiginterfaceextension.h>

#include <klibloader.h>
#include <klocale.h>

class %{APPNAME}ConfigPage;

class KatePluginFactory : public KLibFactory
{
    Q_OBJECT

public:
    KatePluginFactory();
    virtual ~KatePluginFactory();

    virtual QObject* createObject( QObject* parent = 0, const char* pname = 0, const char* name = "QObject", const QStringList &args = QStringList() );

private:
    static KInstance* s_instance;
};

class KatePlugin%{APPNAME} : public Kate::Plugin, Kate::PluginViewInterface, Kate::PluginConfigInterfaceExtension
{
    Q_OBJECT

public:
    KatePlugin%{APPNAME}( QObject* parent = 0, const char* name = 0 );
    virtual ~KatePlugin%{APPNAME}();

    void addView (Kate::MainWindow *win);
    void removeView (Kate::MainWindow *win);

    /** overwrite some functions  */
    uint configPages () const { return 1; }
    Kate::PluginConfigPage *configPage (uint , QWidget *w, const char *name=0);
    QString configPageName(uint) const { return i18n("%{APPNAME}"); };
    QString configPageFullName(uint) const { return i18n("Configure KatePlugin%{APPNAME}"); };
    QPixmap configPagePixmap (uint number = 0, int size = KIcon::SizeSmall) const { return 0L; };

public slots:
    void slotInsertHello();
    void slotApplyConfig(%{APPNAME}ConfigPage*);

private:
    void initConfigPage( %{APPNAME}ConfigPage* );

private:
    QPtrList<class PluginView> m_views;
};


class %{APPNAME}ConfigPage : public Kate::PluginConfigPage
{
    Q_OBJECT
    friend class KatePlugin%{APPNAME};

public:
    %{APPNAME}ConfigPage (QObject* parent = 0L, QWidget *parentWidget = 0L);
    ~%{APPNAME}ConfigPage ();

    /** Reimplemented from Kate::PluginConfigPage; just emits configPageApplyRequest( this ).  */
    virtual void apply();

    virtual void reset () { ; };
    virtual void defaults () { ; };

signals:
    /** Ask the plugin to set initial values  */
    void configPageApplyRequest( %{APPNAME}ConfigPage* );
    /** Ask the plugin to apply changes  */
    void configPageInitRequest( %{APPNAME}ConfigPage* );

private: // variables

};

#endif // _PLUGIN_%{APPNAMEUC}_H_