summaryrefslogtreecommitdiff
path: root/examples/todayplugin/exampleplugin.cpp
blob: 94a5836e71974feb1b00d502979f6fcae7a180c1 (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
/*
 * exampleplugin.cpp
 *
 * email       : harlekin@handhelds.org
 *
 */
#include "exampleplugin.h"

ExamplePlugin::ExamplePlugin() {
    m_widget = 0l;
}

ExamplePlugin::~ExamplePlugin() {
    delete (ExamplePluginWidget*)m_widget;
}

QString ExamplePlugin::pluginName() const {
    return QObject::tr( "Example plugin" );
}

double ExamplePlugin::versionNumber() const {
    return 0.1;
}

// this sets the image that will be shown on the left side of the plugin
QString ExamplePlugin::pixmapNameWidget() const {
    return QString::fromLatin1("Tux");
}

QWidget* ExamplePlugin::widget( QWidget * wid ) {
    if(!m_widget) {
        m_widget = new ExamplePluginWidget( wid,  "Example" );
    }
    return m_widget;
}


// that would be the icon of the config widget in todays config view
QString ExamplePlugin::pixmapNameConfig() const {
    return 0l;
}

// No config widget yet, look at the datebook plugin for an example of that
TodayConfigWidget* ExamplePlugin::configWidget( QWidget* /*parent*/ ) {
    return 0l;
}

// add the binary name of the app to launch here
QString ExamplePlugin::appName() const {
    return QString::null;
}

// if the plugin should be excluded form the refresh cycles that can be set in the today app
bool ExamplePlugin::excludeFromRefresh() const {
    return false;
}

void ExamplePlugin::refresh()  {
    if ( m_widget )  {
        m_widget->refresh();
    }
}

void ExamplePlugin::reinitialize()  {
}