summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opietoday/exampleplugin.h
blob: ebd44ba53833db87946c47248e0af2d36b2a896a (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
#ifndef %{APPNAME}_PLUGIN_H
#define %{APPNAME}_PLUGIN_H

#include <tqwidget.h>
#include <tqguardedptr.h>

#include <opie/todayplugininterface.h>
#include <opie/todayconfigwidget.h>

#include "%{APPNAMELC}widget.h"

// implementation of the today plugin interface
class %{APPNAME} : public TodayPluginObject {

public:
    %{APPNAME}();
    ~%{APPNAME}();

    TQString pluginName()  const;
    double versionNumber() const;
    TQString pixmapNameWidget() const;
    TQWidget* widget(TQWidget *);
    TQString pixmapNameConfig() const;
    TodayConfigWidget* configWidget(TQWidget *);
    TQString appName() const;
    bool excludeFromRefresh() const;
    void refresh();
    void reinitialize();

 private:
   TQGuardedPtr<%{APPNAME}Widget> m_widget;
};

#endif