summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookplugin.cpp
blob: f46806f371c5bcfcff4c6b599f10640cf99bec76 (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
/*
 * datebookplugin.cpp
 *
 * copyright   : (c) 2002,2003, 2004 by Maximilian Reiß
 * email       : harlekin@handhelds.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.                                   *
 *                                                                         *
 ***************************************************************************/

#include "datebookplugin.h"
#include "datebookpluginconfig.h"


DatebookPlugin::DatebookPlugin()  {
}

DatebookPlugin::~DatebookPlugin() {
    delete (DatebookPluginWidget*)m_widget;
}

QString DatebookPlugin::pluginName() const {
    return QObject::tr( "Datebook plugin");
}

double DatebookPlugin::versionNumber() const {
    return 1.0;
}

QString DatebookPlugin::pixmapNameWidget() const {
    return "datebook/DateBook";
}

QWidget* DatebookPlugin::widget( QWidget* wid ) {
    if(!m_widget) {
        m_widget = new DatebookPluginWidget( wid,  "Datebook" );
    }
    return m_widget;
}

QString DatebookPlugin::pixmapNameConfig() const {
    return "datebook/DateBook";
}

TodayConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) {
    return new DatebookPluginConfig( wid , "Datebook" );
}

QString DatebookPlugin::appName()  const {
    return "datebook";
}

bool DatebookPlugin::excludeFromRefresh() const {
    return false;
}

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

void DatebookPlugin::reinitialize()  {
    if ( m_widget )  {
        m_widget->reinitialize();
    }
}