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 <qwidget.h>
00025 #include <qpixmap.h>
00026 #include <kdepimmacros.h>
00027 
00028 class KStatusBar;
00029 
00030 namespace Kontact
00031 {
00032 
00036 class KDE_EXPORT Summary : public QWidget
00037 {
00038   Q_OBJECT
00039 
00040   public:
00041     Summary( QWidget *parent, const char *name = 0 );
00042 
00043     virtual ~Summary();
00044 
00050     virtual int summaryHeight() const { return 1; }
00051 
00055     QWidget *createHeader( QWidget* parent, const QPixmap &icon,
00056                            const QString& heading );
00057 
00063     virtual QStringList configModules() const { return QStringList(); }
00064 
00065   public slots:
00066     virtual void configChanged() {}
00067 
00072     virtual void updateSummary( bool force = false ) { Q_UNUSED( force ); }
00073 
00074   signals:
00075     void message( const QString &message );
00076     void summaryWidgetDropped( QWidget *target, QWidget *widget, int alignment );
00077 
00078   protected:
00079     virtual void mousePressEvent( QMouseEvent* );
00080     virtual void mouseMoveEvent( QMouseEvent* );
00081     virtual void dragEnterEvent( QDragEnterEvent* );
00082     virtual void dropEvent( QDropEvent* );
00083 
00084   private:
00085     KStatusBar *mStatusBar;
00086     QPoint mDragStartPoint;
00087 
00088     class Private;
00089     Private *d;
00090 };
00091 
00092 }
00093 
00094 #endif
KDE Home | KDE Accessibility Home | Description of Access Keys