knotes/summarywidget.h
1/*
2 This file is part of Kontact.
3 Copyright (c) 2003 Tobias Koenig <tokoe@kde.org>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of TQt, and distribute the resulting executable,
21 without including the source code for TQt in the source distribution.
22*/
23
24#ifndef SUMMARYWIDGET_H
25#define SUMMARYWIDGET_H
26
27#include "summary.h"
28
29#include <tqmap.h>
30#include <tqptrlist.h>
31#include <tqwidget.h>
32
33#include <libkcal/resourcelocal.h>
35
36class TQGridLayout;
37class TQLabel;
38
39namespace Kontact {
40 class Plugin;
41}
42
43class KNotesSummaryWidget : public Kontact::Summary
44{
45 TQ_OBJECT
46
47
48 public:
49 KNotesSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 );
50
51 void updateSummary( bool force = false ) { Q_UNUSED( force ); updateView(); }
52
53 protected:
54 virtual bool eventFilter( TQObject *obj, TQEvent* e );
55
56 protected slots:
57 void urlClicked( const TQString& );
58 void updateView();
59 void addNote( KCal::Journal* );
60 void removeNote( KCal::Journal* );
61
62 private:
63 KCal::CalendarLocal *mCalendar;
64 KCal::Journal::List mNotes;
65
66 TQGridLayout *mLayout;
67
68 TQPtrList<TQLabel> mLabels;
69 Kontact::Plugin *mPlugin;
70};
71
72#endif
Base class for all Plugins in Kontact.
Definition: plugin.h:59
Summary widget for display in the Summary View plugin.
Definition: summary.h:37
virtual void updateSummary(bool force=false)
This is called if the displayed information should be updated.
Definition: summary.h:73