kde-extraapps/ark/part/archiveview.cpp
Ivailo Monev 763d88a96d ark: remove redundant kDebug() calls
log nothing

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2024-05-16 03:34:03 +03:00

141 lines
3.9 KiB
C++

/*
* ark -- archiver for the KDE project
*
* Copyright (C) 2008-2009 Harald Hvaal <haraldhv (at@at) stud.ntnu.no>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program 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.
*
*/
#include "archiveview.h"
#include <KDebug>
#include <KGlobalSettings>
#include <QApplication>
#include <QtGui/qevent.h>
ArchiveView::ArchiveView(QWidget *parent)
: QTreeView(parent)
, m_mouseButtons(Qt::NoButton)
{
connect(this, SIGNAL(pressed(QModelIndex)),
SLOT(updateMouseButtons()));
connect(this, SIGNAL(clicked(QModelIndex)),
SLOT(slotClicked(QModelIndex)));
connect(this, SIGNAL(doubleClicked(QModelIndex)),
SLOT(slotDoubleClicked(QModelIndex)));
}
// FIXME: this is a workaround taken from Dolphin until QTBUG-1067 is resolved
void ArchiveView::updateMouseButtons()
{
m_mouseButtons = QApplication::mouseButtons();
}
void ArchiveView::slotClicked(const QModelIndex& index)
{
if (KGlobalSettings::singleClick()) {
if (m_mouseButtons != Qt::LeftButton) { // FIXME: see QTBUG-1067
return;
}
// If the user is pressing shift or control, more than one item is being selected
const Qt::KeyboardModifiers modifier = QApplication::keyboardModifiers();
if ((modifier & Qt::ShiftModifier) || (modifier & Qt::ControlModifier)) {
return;
}
emit itemTriggered(index);
}
}
void ArchiveView::slotDoubleClicked(const QModelIndex& index)
{
if (!KGlobalSettings::singleClick()) {
emit itemTriggered(index);
}
}
void ArchiveView::setModel(QAbstractItemModel *model)
{
QTreeView::setModel(model);
setSelectionMode(QAbstractItemView::ExtendedSelection);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
setAlternatingRowColors(true);
setAnimated(true);
setAllColumnsShowFocus(true);
setSortingEnabled(true);
//drag and drop
setDragEnabled(true);
setAcceptDrops(true);
setDropIndicatorShown(true);
setDragDropMode(QAbstractItemView::DragDrop);
}
void ArchiveView::startDrag(Qt::DropActions supportedActions)
{
//only start the drag if it's over the filename column. this allows dragging selection in
//tree/detail view
if (currentIndex().column() != 0) {
return;
}
kDebug() << "Singling out the current selection...";
selectionModel()->setCurrentIndex(currentIndex(), QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);
QTreeView::startDrag(supportedActions);
}
void ArchiveView::dragEnterEvent(QDragEnterEvent * event)
{
//TODO: if no model, trigger some mechanism to create one automatically!
kDebug() << event;
if (event->source() == this) {
//we don't support internal drops yet.
return;
}
QTreeView::dragEnterEvent(event);
}
void ArchiveView::dropEvent(QDropEvent * event)
{
kDebug() << event;
if (event->source() == this) {
//we don't support internal drops yet.
return;
}
QTreeView::dropEvent(event);
}
void ArchiveView::dragMoveEvent(QDragMoveEvent * event)
{
if (event->source() == this) {
//we don't support internal drops yet.
return;
}
QTreeView::dragMoveEvent(event);
if (event->mimeData()->hasFormat(QLatin1String("text/uri-list"))) {
event->acceptProposedAction();
}
}