kmail/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 <tqmap.h>
28#include <tqtimer.h>
29#include <tqwidget.h>
30
31#include <dcopobject.h>
32#include <kurllabel.h>
33#include <tdeparts/part.h>
34
35#include "plugin.h"
36#include "summary.h"
37
38class TQGridLayout;
39class TQString;
40
41class SummaryWidget : public Kontact::Summary, public DCOPObject
42{
43 TQ_OBJECT
44//
45 K_DCOP
46
47 public:
48 SummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 );
49
50 int summaryHeight() const { return 1; }
51 TQStringList configModules() const;
52
53 k_dcop_hidden:
54 void slotUnreadCountChanged();
55
56 protected:
57 virtual bool eventFilter( TQObject *obj, TQEvent* e );
58
59 public slots:
60 virtual void updateSummary( bool force );
61
62 private slots:
63 void selectFolder( const TQString& );
64
65 private:
66 void updateFolderList( const TQStringList& folders );
67
68 TQPtrList<TQLabel> mLabels;
69 TQGridLayout *mLayout;
70 Kontact::Plugin *mPlugin;
71 int mTimeOfLastMessageCountUpdate;
72};
73
74#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 TQStringList configModules() const
Return list of strings identifying configuration modules for this summary part.
Definition: summary.h:64
virtual int summaryHeight() const
Return logical height of summary widget.
Definition: summary.h:51
virtual void updateSummary(bool force=false)
This is called if the displayed information should be updated.
Definition: summary.h:73