You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.2 KiB
117 lines
3.2 KiB
/*
|
|
This file is part of KDE Kontact.
|
|
|
|
Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
|
|
Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "summary.h"
|
|
|
|
#include <qimage.h>
|
|
#include <qdragobject.h>
|
|
#include <qhbox.h>
|
|
#include <qfont.h>
|
|
#include <qlabel.h>
|
|
#include <qpainter.h>
|
|
|
|
#include <kiconloader.h>
|
|
#include <kdialog.h>
|
|
|
|
using namespace Kontact;
|
|
|
|
Summary::Summary( QWidget *parent, const char *name )
|
|
: QWidget( parent, name )
|
|
{
|
|
setAcceptDrops( true );
|
|
}
|
|
|
|
Summary::~Summary()
|
|
{
|
|
}
|
|
|
|
QWidget* Summary::createHeader(QWidget *parent, const QPixmap& icon, const QString& heading)
|
|
{
|
|
QHBox* hbox = new QHBox( parent );
|
|
hbox->setMargin( 2 );
|
|
|
|
QFont boldFont;
|
|
boldFont.setBold( true );
|
|
boldFont.setPointSize( boldFont.pointSize() + 2 );
|
|
|
|
QLabel *label = new QLabel( hbox );
|
|
label->setPixmap( icon );
|
|
label->setFixedSize( label->sizeHint() );
|
|
label->setPaletteBackgroundColor( colorGroup().mid() );
|
|
label->setAcceptDrops( true );
|
|
|
|
label = new QLabel( heading, hbox );
|
|
label->setAlignment( AlignLeft|AlignVCenter );
|
|
label->setIndent( KDialog::spacingHint() );
|
|
label->setFont( boldFont );
|
|
label->setPaletteForegroundColor( colorGroup().light() );
|
|
label->setPaletteBackgroundColor( colorGroup().mid() );
|
|
|
|
hbox->setPaletteBackgroundColor( colorGroup().mid() );
|
|
|
|
hbox->setMaximumHeight( hbox->minimumSizeHint().height() );
|
|
|
|
return hbox;
|
|
}
|
|
|
|
void Summary::mousePressEvent( QMouseEvent *event )
|
|
{
|
|
mDragStartPoint = event->pos();
|
|
|
|
QWidget::mousePressEvent( event );
|
|
}
|
|
|
|
void Summary::mouseMoveEvent( QMouseEvent *event )
|
|
{
|
|
if ( (event->state() & LeftButton) &&
|
|
(event->pos() - mDragStartPoint).manhattanLength() > 4 ) {
|
|
|
|
QDragObject *drag = new QTextDrag( "", this, "SummaryWidgetDrag" );
|
|
|
|
QPixmap pm = QPixmap::grabWidget( this );
|
|
if ( pm.width() > 300 )
|
|
pm = pm.convertToImage().smoothScale( 300, 300, QImage::ScaleMin );
|
|
|
|
QPainter painter;
|
|
painter.begin( &pm );
|
|
painter.setPen( Qt::gray );
|
|
painter.drawRect( 0, 0, pm.width(), pm.height() );
|
|
painter.end();
|
|
drag->setPixmap( pm );
|
|
drag->dragMove();
|
|
} else
|
|
QWidget::mouseMoveEvent( event );
|
|
}
|
|
|
|
void Summary::dragEnterEvent( QDragEnterEvent *event )
|
|
{
|
|
event->accept( QTextDrag::canDecode( event ) );
|
|
}
|
|
|
|
void Summary::dropEvent( QDropEvent *event )
|
|
{
|
|
int alignment = (event->pos().y() < (height() / 2) ? Qt::AlignTop : Qt::AlignBottom);
|
|
emit summaryWidgetDropped( this, event->source(), alignment );
|
|
}
|
|
|
|
#include "summary.moc"
|