todosummarywidget.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 TODO_SUMMARYWIDGET_H
25 #define TODO_SUMMARYWIDGET_H
26 
27 #include <tqptrlist.h>
28 #include <tqwidget.h>
29 
31 
32 #include "summary.h"
33 
34 class TQGridLayout;
35 class TQLabel;
36 
37 class TodoPlugin;
38 
39 class TodoSummaryWidget : public Kontact::Summary
40 {
41  TQ_OBJECT
42 
43 
44  public:
45  TodoSummaryWidget( TodoPlugin *plugin, TQWidget *parent,
46  const char *name = 0 );
47  ~TodoSummaryWidget();
48 
49  int summaryHeight() const { return 3; }
50  TQStringList configModules() const;
51 
52  public slots:
53  void updateSummary( bool force = false ) { Q_UNUSED( force ); updateView(); }
54 
55  protected:
56  virtual bool eventFilter( TQObject *obj, TQEvent* e );
57 
58  private slots:
59  void updateView();
60  void popupMenu( const TQString &uid );
61  void viewTodo( const TQString &uid );
62  void removeTodo( const TQString &uid );
63  void completeTodo( const TQString &uid );
64 
65  private:
66  TodoPlugin *mPlugin;
67  TQGridLayout *mLayout;
68 
69  TQPtrList<TQLabel> mLabels;
70  KCal::CalendarResources *mCalendar;
71 };
72 
73 #endif
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