summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookplugin.h
authorharlekin <harlekin>2003-02-23 14:42:14 (UTC)
committer harlekin <harlekin>2003-02-23 14:42:14 (UTC)
commit15c2cf367bc38c17fb488e6d8be44c148ecfb1bf (patch) (unidiff)
treed151df2a4a21b49f57f93f79dbfc066d03dce606 /core/pim/today/plugins/datebook/datebookplugin.h
parent93d5fdc889cd724c1f2938497b6c6460a13be2ba (diff)
downloadopie-15c2cf367bc38c17fb488e6d8be44c148ecfb1bf.zip
opie-15c2cf367bc38c17fb488e6d8be44c148ecfb1bf.tar.gz
opie-15c2cf367bc38c17fb488e6d8be44c148ecfb1bf.tar.bz2
got rid of not needed includes
Diffstat (limited to 'core/pim/today/plugins/datebook/datebookplugin.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookplugin.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/pim/today/plugins/datebook/datebookplugin.h b/core/pim/today/plugins/datebook/datebookplugin.h
index eb7a401..db899e8 100644
--- a/core/pim/today/plugins/datebook/datebookplugin.h
+++ b/core/pim/today/plugins/datebook/datebookplugin.h
@@ -1,46 +1,44 @@
1/* 1/*
2 * datebookplugin.h 2 * datebookplugin.h
3 * 3 *
4 * copyright : (c) 2002 by Maximilian Reiß 4 * copyright : (c) 2002,2003 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#ifndef DATEBOOK_PLUGIN_H 17#ifndef DATEBOOK_PLUGIN_H
18#define DATEBOOK_PLUGIN_H 18#define DATEBOOK_PLUGIN_H
19 19
20#include <qstring.h>
21#include <qguardedptr.h> 20#include <qguardedptr.h>
22#include <qwidget.h>
23 21
24#include <opie/oclickablelabel.h> 22#include <opie/oclickablelabel.h>
25#include <opie/todayplugininterface.h> 23#include <opie/todayplugininterface.h>
26 24
27#include "datebookpluginwidget.h" 25#include "datebookpluginwidget.h"
28 26
29class DatebookPlugin : public TodayPluginObject { 27class DatebookPlugin : public TodayPluginObject {
30 28
31public: 29public:
32 DatebookPlugin(); 30 DatebookPlugin();
33 ~DatebookPlugin(); 31 ~DatebookPlugin();
34 32
35 QString pluginName() const; 33 QString pluginName() const;
36 double versionNumber() const; 34 double versionNumber() const;
37 QString pixmapNameWidget() const; 35 QString pixmapNameWidget() const;
38 QWidget* widget( QWidget *); 36 QWidget* widget( QWidget *);
39 QString pixmapNameConfig() const; 37 QString pixmapNameConfig() const;
40 TodayConfigWidget* configWidget( QWidget *); 38 TodayConfigWidget* configWidget( QWidget *);
41 QString appName() const; 39 QString appName() const;
42 bool excludeFromRefresh() const; 40 bool excludeFromRefresh() const;
43 void refresh(); 41 void refresh();
44 42
45 private: 43 private:
46 QGuardedPtr<DatebookPluginWidget> m_widget; 44 QGuardedPtr<DatebookPluginWidget> m_widget;