mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
173 lines
4.3 KiB
C++
173 lines
4.3 KiB
C++
/*
|
|
This file is part of the KDE Kontact Plugin Interface Library.
|
|
|
|
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>
|
|
#include <QFont>
|
|
#include <QLabel>
|
|
#include <QDrag>
|
|
#include <QPainter>
|
|
#include <QPixmap>
|
|
#include <QMouseEvent>
|
|
#include <QDragEnterEvent>
|
|
#include <QMimeData>
|
|
#include <QDropEvent>
|
|
|
|
#include <KGlobalSettings>
|
|
#include <KHBox>
|
|
#include <KIconLoader>
|
|
#include <KDialog>
|
|
|
|
using namespace KontactInterface;
|
|
|
|
//@cond PRIVATE
|
|
namespace KontactInterface {
|
|
class SummaryMimeData : public QMimeData
|
|
{
|
|
public:
|
|
virtual bool hasFormat( const QString &format ) const
|
|
{
|
|
if ( format == QLatin1String("application/x-kontact-summary") ) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
}
|
|
//@endcond
|
|
|
|
//@cond PRIVATE
|
|
class Summary::Private
|
|
{
|
|
public:
|
|
KStatusBar *mStatusBar;
|
|
QPoint mDragStartPoint;
|
|
};
|
|
//@endcond
|
|
|
|
Summary::Summary( QWidget *parent )
|
|
: QWidget( parent ), d( new Private )
|
|
{
|
|
setFont( KGlobalSettings::generalFont() );
|
|
setAcceptDrops( true );
|
|
}
|
|
|
|
Summary::~Summary()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
int Summary::summaryHeight() const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QWidget *Summary::createHeader( QWidget *parent, const QString &iconname, const QString &heading )
|
|
{
|
|
setStyleSheet( QLatin1String("KHBox {"
|
|
"border: 0px;"
|
|
"font: bold large;"
|
|
"padding: 2px;"
|
|
"background: palette(window);"
|
|
"color: palette(windowtext);"
|
|
"}"
|
|
"KHBox > QLabel { font: bold larger; } ") );
|
|
|
|
KHBox *hbox = new KHBox( parent );
|
|
|
|
QLabel *label = new QLabel( hbox );
|
|
label->setPixmap( KIconLoader::global()->loadIcon( iconname, KIconLoader::Toolbar ) );
|
|
|
|
label->setFixedSize( label->sizeHint() );
|
|
label->setAcceptDrops( true );
|
|
|
|
label = new QLabel( heading, hbox );
|
|
label->setAlignment( Qt::AlignLeft | Qt::AlignVCenter );
|
|
label->setIndent( KDialog::spacingHint() );
|
|
|
|
hbox->setMaximumHeight( hbox->minimumSizeHint().height() );
|
|
|
|
return hbox;
|
|
}
|
|
|
|
QStringList Summary::configModules() const
|
|
{
|
|
return QStringList();
|
|
}
|
|
|
|
void Summary::configChanged()
|
|
{
|
|
}
|
|
|
|
void Summary::updateSummary( bool force )
|
|
{
|
|
Q_UNUSED( force );
|
|
}
|
|
|
|
void Summary::mousePressEvent( QMouseEvent *event )
|
|
{
|
|
d->mDragStartPoint = event->pos();
|
|
|
|
QWidget::mousePressEvent( event );
|
|
}
|
|
|
|
void Summary::mouseMoveEvent( QMouseEvent *event )
|
|
{
|
|
if ( ( event->buttons() & Qt::LeftButton ) &&
|
|
( event->pos() - d->mDragStartPoint ).manhattanLength() > 4 ) {
|
|
|
|
QDrag *drag = new QDrag( this );
|
|
drag->setMimeData( new SummaryMimeData() );
|
|
drag->setObjectName( QLatin1String("SummaryWidgetDrag") );
|
|
|
|
QPixmap pm = QPixmap::grabWidget( this );
|
|
if ( pm.width() > 300 ) {
|
|
pm = QPixmap::fromImage(
|
|
pm.toImage().scaled( 300, 300, Qt::KeepAspectRatio, Qt::SmoothTransformation ) );
|
|
}
|
|
|
|
QPainter painter;
|
|
painter.begin( &pm );
|
|
painter.setPen( QPalette::AlternateBase );
|
|
painter.drawRect( 0, 0, pm.width(), pm.height() );
|
|
painter.end();
|
|
drag->setPixmap( pm );
|
|
drag->start( Qt::MoveAction );
|
|
} else {
|
|
QWidget::mouseMoveEvent( event );
|
|
}
|
|
}
|
|
|
|
void Summary::dragEnterEvent( QDragEnterEvent *event )
|
|
{
|
|
if ( event->mimeData()->hasFormat( QLatin1String("application/x-kontact-summary") ) ) {
|
|
event->acceptProposedAction();
|
|
}
|
|
}
|
|
|
|
void Summary::dropEvent( QDropEvent *event )
|
|
{
|
|
int alignment = ( event->pos().y() < ( height() / 2 ) ? Qt::AlignTop : Qt::AlignBottom );
|
|
emit summaryWidgetDropped( this, event->source(), alignment );
|
|
}
|
|
|