kde-playground/kdepim/kmail/identity/identitylistview.cpp
2015-04-14 21:49:29 +00:00

218 lines
6.5 KiB
C++

/* -*- c++ -*-
identitylistview.cpp
This file is part of KMail, the KDE mail client.
Copyright (c) 2002 Marc Mutz <mutz@kde.org>
2007 Mathias Soeken <msoeken@tzi.de>
KMail is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
KMail 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include "identitylistview.h"
#include <kpimidentities/identitymanager.h>
#include <kpimidentities/identity.h>
#ifndef KCM_KPIMIDENTITIES_STANDALONE
#include "kmkernel.h"
#endif
#include <KDebug>
#include <KLocalizedString> // i18n
#include <KIconLoader> // SmallIcon
#include <QDrag>
#include <QHeaderView>
#include <QLineEdit>
#include <QMimeData>
namespace KMail {
//
//
// IdentityListViewItem
//
//
IdentityListViewItem::IdentityListViewItem( IdentityListView *parent,
const KPIMIdentities::Identity &ident )
: QTreeWidgetItem( parent ), mUOID( ident.uoid() )
{
init( ident );
}
IdentityListViewItem::IdentityListViewItem( IdentityListView *parent,
QTreeWidgetItem *after,
const KPIMIdentities::Identity &ident )
: QTreeWidgetItem( parent, after ), mUOID( ident.uoid() )
{
init( ident );
}
KPIMIdentities::Identity & IdentityListViewItem::identity() const
{
KPIMIdentities::IdentityManager *im = qobject_cast<IdentityListView*>( treeWidget() )->identityManager();
Q_ASSERT( im );
return im->modifyIdentityForUoid( mUOID );
}
void IdentityListViewItem::setIdentity( const KPIMIdentities::Identity &ident )
{
mUOID = ident.uoid();
init( ident );
}
void IdentityListViewItem::redisplay()
{
init( identity() );
}
void IdentityListViewItem::init( const KPIMIdentities::Identity &ident )
{
if ( ident.isDefault() ) {
// Add "(Default)" to the end of the default identity's name:
setText( 0, i18nc( "%1: identity name. Used in the config "
"dialog, section Identity, to indicate the "
"default identity", "%1 (Default)",
ident.identityName() ) );
QFont fontItem(font(0));
fontItem.setBold(true);
setFont(0,fontItem);
} else {
QFont fontItem(font(0));
fontItem.setBold(false);
setFont(0,fontItem);
setText( 0, ident.identityName() );
}
setText( 1, ident.fullEmailAddr() );
}
//
//
// IdentityListView
//
//
IdentityListView::IdentityListView( QWidget *parent )
: QTreeWidget( parent ),
mIdentityManager( 0 )
{
#ifndef QT_NO_DRAGANDDROP
setDragEnabled( true );
setAcceptDrops( true );
#endif
setHeaderLabels( QStringList() << i18n( "Identity Name" ) << i18n( "Email Address" ) );
setRootIsDecorated( false );
header()->setMovable( false );
header()->setResizeMode( QHeaderView::ResizeToContents );
setAllColumnsShowFocus( true );
setAlternatingRowColors( true );
setSortingEnabled( true );
sortByColumn( 0, Qt::AscendingOrder );
setSelectionMode( SingleSelection ); // ### Extended would be nicer...
setColumnWidth( 0, 175 );
setContextMenuPolicy( Qt::CustomContextMenu );
connect( this, SIGNAL(customContextMenuRequested(QPoint)),
this, SLOT(slotCustomContextMenuRequested(QPoint)) );
}
void IdentityListView::editItem( QTreeWidgetItem *item, int column )
{
if ( column == 0 && item ) {
IdentityListViewItem *lvItem = dynamic_cast<IdentityListViewItem*>( item );
if ( lvItem ) {
KPIMIdentities::Identity& ident = lvItem->identity();
if ( ident.isDefault() ) {
lvItem->setText( 0, ident.identityName() );
}
}
Qt::ItemFlags oldFlags = item->flags();
item->setFlags( oldFlags | Qt::ItemIsEditable );
QTreeWidget::editItem( item, 0 );
item->setFlags( oldFlags );
}
}
void IdentityListView::commitData( QWidget *editor )
{
kDebug() << "after editing";
if ( !selectedItems().isEmpty() ) {
QLineEdit *edit = dynamic_cast<QLineEdit*>( editor ); // krazy:exclude=qclasses
if ( edit ) {
IdentityListViewItem *item = dynamic_cast<IdentityListViewItem*>( selectedItems()[0] );
const QString text = edit->text();
emit rename( item, text );
}
}
}
void IdentityListView::slotCustomContextMenuRequested( const QPoint &pos )
{
QTreeWidgetItem *item = itemAt( pos );
if ( item ) {
IdentityListViewItem *lvItem = dynamic_cast<IdentityListViewItem*>( item );
if ( lvItem ) {
emit contextMenu( lvItem, viewport()->mapToGlobal( pos ) );
}
} else {
emit contextMenu( 0, viewport()->mapToGlobal( pos ) );
}
}
#ifndef QT_NO_DRAGANDDROP
void IdentityListView::startDrag ( Qt::DropActions /*supportedActions*/ )
{
IdentityListViewItem * item = dynamic_cast<IdentityListViewItem*>( currentItem() );
if ( !item )
return;
QDrag *drag = new QDrag( viewport() );
QMimeData *md = new QMimeData;
drag->setMimeData( md );
item->identity().populateMimeData( md );
drag->setPixmap( SmallIcon(QLatin1String("user-identity")) );
drag->start();
}
#endif
KPIMIdentities::IdentityManager* IdentityListView::identityManager() const
{
Q_ASSERT( mIdentityManager );
return mIdentityManager;
}
void IdentityListView::setIdentityManager(KPIMIdentities::IdentityManager* im)
{
mIdentityManager = im;
}
} // namespace KMail