kontact

summary.h

00001 /*
00002    This file is part of KDE Kontact.
00003 
00004    Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
00005 
00006    This library is free software; you can redistribute it and/or
00007    modify it under the terms of the GNU Library General Public
00008    License as published by the Free Software Foundation; either
00009    version 2 of the License, or (at your option) any later version.
00010 
00011    This library is distributed in the hope that it will be useful,
00012    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014    Library General Public License for more details.
00015 
00016    You should have received a copy of the GNU Library General Public License
00017    along with this library; see the file COPYING.LIB.  If not, write to
00018    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00019    Boston, MA 02110-1301, USA.
00020 */
00021 #ifndef KONTACT_SUMMARY_H
00022 #define KONTACT_SUMMARY_H
00023 
00024 #include <tqwidget.h>
00025 #include <tqpixmap.h>
00026 #include <tdepimmacros.h>
00027 
00028 class KStatusBar;
00029 
00030 namespace Kontact
00031 {
00032 
00036 class KDE_EXPORT Summary : public TQWidget
00037 {
00038   Q_OBJECT
00039   
00040 
00041   public:
00042     Summary( TQWidget *parent, const char *name = 0 );
00043 
00044     virtual ~Summary();
00045 
00051     virtual int summaryHeight() const { return 1; }
00052 
00056     TQWidget *createHeader( TQWidget* parent, const TQPixmap &icon,
00057                            const TQString& heading );
00058 
00064     virtual TQStringList configModules() const { return TQStringList(); }
00065 
00066   public slots:
00067     virtual void configChanged() {}
00068 
00073     virtual void updateSummary( bool force = false ) { Q_UNUSED( force ); }
00074 
00075   signals:
00076     void message( const TQString &message );
00077     void summaryWidgetDropped( TQWidget *target, TQWidget *widget, int alignment );
00078 
00079   protected:
00080     virtual void mousePressEvent( TQMouseEvent* );
00081     virtual void mouseMoveEvent( TQMouseEvent* );
00082     virtual void dragEnterEvent( TQDragEnterEvent* );
00083     virtual void dropEvent( TQDropEvent* );
00084 
00085   private:
00086     KStatusBar *mStatusBar;
00087     TQPoint mDragStartPoint;
00088 
00089     class Private;
00090     Private *d;
00091 };
00092 
00093 }
00094 
00095 #endif