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.
218 lines
6.4 KiB
218 lines
6.4 KiB
/* -*- 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 <KIdentityManagement/kidentitymanagement/identitymanager.h> |
|
#include <KIdentityManagement/kidentitymanagement/identity.h> |
|
|
|
#ifndef KCM_KPIMIDENTITIES_STANDALONE |
|
#include "kmkernel.h" |
|
#endif |
|
|
|
#include "kmail_debug.h" |
|
#include <KLocalizedString> // i18n |
|
#include <KIconLoader> // SmallIcon |
|
|
|
#include <QDrag> |
|
#include <QHeaderView> |
|
#include <QLineEdit> |
|
#include <QMimeData> |
|
|
|
namespace KMail |
|
{ |
|
|
|
// |
|
// |
|
// IdentityListViewItem |
|
// |
|
// |
|
|
|
IdentityListViewItem::IdentityListViewItem(IdentityListView *parent, |
|
const KIdentityManagement::Identity &ident) |
|
: QTreeWidgetItem(parent), mUOID(ident.uoid()) |
|
{ |
|
init(ident); |
|
} |
|
|
|
IdentityListViewItem::IdentityListViewItem(IdentityListView *parent, |
|
QTreeWidgetItem *after, |
|
const KIdentityManagement::Identity &ident) |
|
: QTreeWidgetItem(parent, after), mUOID(ident.uoid()) |
|
{ |
|
init(ident); |
|
} |
|
|
|
KIdentityManagement::Identity &IdentityListViewItem::identity() const |
|
{ |
|
KIdentityManagement::IdentityManager *im = qobject_cast<IdentityListView *>(treeWidget())->identityManager(); |
|
Q_ASSERT(im); |
|
return im->modifyIdentityForUoid(mUOID); |
|
} |
|
|
|
void IdentityListViewItem::setIdentity(const KIdentityManagement::Identity &ident) |
|
{ |
|
mUOID = ident.uoid(); |
|
init(ident); |
|
} |
|
|
|
void IdentityListViewItem::redisplay() |
|
{ |
|
init(identity()); |
|
} |
|
|
|
void IdentityListViewItem::init(const KIdentityManagement::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, &IdentityListView::customContextMenuRequested, this, &IdentityListView::slotCustomContextMenuRequested); |
|
} |
|
|
|
void IdentityListView::editItem(QTreeWidgetItem *item, int column) |
|
{ |
|
if (column == 0 && item) { |
|
IdentityListViewItem *lvItem = dynamic_cast<IdentityListViewItem *>(item); |
|
if (lvItem) { |
|
KIdentityManagement::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) |
|
{ |
|
qCDebug(KMAIL_LOG) << "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(QStringLiteral("user-identity"))); |
|
drag->start(); |
|
} |
|
#endif |
|
|
|
KIdentityManagement::IdentityManager *IdentityListView::identityManager() const |
|
{ |
|
Q_ASSERT(mIdentityManager); |
|
return mIdentityManager; |
|
} |
|
|
|
void IdentityListView::setIdentityManager(KIdentityManagement::IdentityManager *im) |
|
{ |
|
mIdentityManager = im; |
|
} |
|
|
|
} // namespace KMail |
|
|
|
|