plasma: remove unused dirmodel import

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-09-09 22:10:13 +03:00
parent b59da184df
commit 5f1935561f
7 changed files with 0 additions and 352 deletions

View file

@ -1,5 +1,4 @@
add_subdirectory(core)
add_subdirectory(dirmodel)
add_subdirectory(draganddrop)
add_subdirectory(graphicslayouts)
add_subdirectory(graphicswidgets)

View file

@ -1,18 +0,0 @@
project(dirmodel)
set(dirmodel_SRCS
dirmodel.cpp
dirmodelplugin.cpp
)
add_library(dirmodelplugin SHARED ${dirmodel_SRCS})
target_link_libraries(dirmodelplugin
${QT_QTCORE_LIBRARY}
${QT_QTDECLARATIVE_LIBRARY}
KDE4::kio
)
install(TARGETS dirmodelplugin DESTINATION ${KDE4_IMPORTS_INSTALL_DIR}/org/kde/dirmodel)
install(FILES qmldir DESTINATION ${KDE4_IMPORTS_INSTALL_DIR}/org/kde/dirmodel)
#add_subdirectory(test)

View file

@ -1,177 +0,0 @@
/*
Copyright (C) 20111 Marco Martin <mart@kde.org>
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 "dirmodel.h"
#include <KDirLister>
#include <KDebug>
#include <KIO/PreviewJob>
#include <QTimer>
DirModel::DirModel(QObject *parent)
: KDirModel(parent),
m_screenshotSize(180, 120)
{
//TODO: configurable mime filter
//dirLister()->setMimeFilter(m_mimeTypes);
QHash<int, QByteArray>roleNames;
roleNames[Qt::DisplayRole] = "display";
roleNames[Qt::DecorationRole] = "decoration";
roleNames[UrlRole] = "url";
roleNames[MimeTypeRole] = "mimeType";
roleNames[Thumbnail] = "thumbnail";
setRoleNames(roleNames);
m_previewTimer = new QTimer(this);
m_previewTimer->setSingleShot(true);
connect(m_previewTimer, SIGNAL(timeout()),
this, SLOT(delayedPreview()));
connect(this, SIGNAL(rowsInserted(QModelIndex,int,int)),
this, SIGNAL(countChanged()));
connect(this, SIGNAL(rowsRemoved(QModelIndex,int,int)),
this, SIGNAL(countChanged()));
connect(this, SIGNAL(modelReset()),
this, SIGNAL(countChanged()));
}
DirModel::~DirModel()
{
}
QString DirModel::url() const
{
return dirLister()->url().prettyUrl();
}
void DirModel::setUrl(const QString& url)
{
if (url.isEmpty()) {
return;
}
if (dirLister()->url().path() == url) {
dirLister()->updateDirectory();
return;
}
beginResetModel();
dirLister()->openUrl(url);
endResetModel();
emit urlChanged();
}
int DirModel::indexForUrl(const QString &url) const
{
QModelIndex index = KDirModel::indexForUrl(KUrl(url));
return index.row();
}
QVariantMap DirModel::get(int i) const
{
QModelIndex modelIndex = index(i, 0);
KFileItem item = itemForIndex(modelIndex);
QString url = item.url().prettyUrl();
QString mimeType = item.mimetype();
QVariantMap ret;
ret.insert("url", QVariant(url));
ret.insert("mimeType", QVariant(mimeType));
return ret;
}
QVariant DirModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid()) {
return QVariant();
}
switch (role) {
case UrlRole: {
KFileItem item = itemForIndex(index);
return item.url().prettyUrl();
}
case MimeTypeRole: {
KFileItem item = itemForIndex(index);
return item.mimetype();
}
case Thumbnail: {
KFileItem item = itemForIndex(index);
m_previewTimer->start(100);
const_cast<DirModel *>(this)->m_filesToPreview[item.url()] = QPersistentModelIndex(index);
}
default:
return KDirModel::data(index, role);
}
}
void DirModel::delayedPreview()
{
QHash<KUrl, QPersistentModelIndex>::const_iterator i = m_filesToPreview.constBegin();
KFileItemList list;
while (i != m_filesToPreview.constEnd()) {
KUrl file = i.key();
QPersistentModelIndex index = i.value();
if (!m_previewJobs.contains(file) && file.isValid()) {
list.append(KFileItem(file, QString(), 0));
m_previewJobs.insert(file, QPersistentModelIndex(index));
}
++i;
}
if (list.size() > 0) {
KIO::PreviewJob* job = KIO::filePreview(list, m_screenshotSize);
job->setIgnoreMaximumSize(true);
kDebug() << "Created job" << job;
connect(job, SIGNAL(gotPreview(KFileItem,QPixmap)),
this, SLOT(showPreview(KFileItem,QPixmap)));
connect(job, SIGNAL(failed(KFileItem)),
this, SLOT(previewFailed(KFileItem)));
}
m_filesToPreview.clear();
}
void DirModel::showPreview(const KFileItem &item, const QPixmap &preview)
{
QPersistentModelIndex index = m_previewJobs.value(item.url());
m_previewJobs.remove(item.url());
if (!index.isValid()) {
return;
}
//kDebug() << "preview size:" << preview.size();
emit dataChanged(index, index);
}
void DirModel::previewFailed(const KFileItem &item)
{
m_previewJobs.remove(item.url());
}
#include "moc_dirmodel.cpp"

View file

@ -1,85 +0,0 @@
/*
Copyright (C) 20111 Marco Martin <mart@kde.org>
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.
*/
#ifndef DIRMODEL_H
#define DIRMODEL_H
#include <KDirModel>
#include <QVariant>
#include <QTimer>
/**
* This class provides a QML binding to KDirModel
* Provides an easy way to navigate a filesystem from within QML
*
* @author Marco Martin <mart@kde.org>
*/
class DirModel : public KDirModel
{
Q_OBJECT
/**
* @property string The url we want to browse. it may be an absolute path or a correct url of any protocol KIO supports
*/
Q_PROPERTY(QString url READ url WRITE setUrl NOTIFY urlChanged)
/**
* @property count Total number of rows
*/
Q_PROPERTY(int count READ count NOTIFY countChanged)
public:
enum Roles {
UrlRole = Qt::UserRole + 1,
MimeTypeRole = Qt::UserRole + 2,
Thumbnail = Qt::UserRole + 3
};
DirModel(QObject* parent=0);
virtual ~DirModel();
void setUrl(const QString& url);
QString url() const;
QVariant data(const QModelIndex &index, int role) const;
int count() const {return rowCount();}
Q_INVOKABLE int indexForUrl(const QString &url) const;
Q_INVOKABLE QVariantMap get(int index) const;
protected Q_SLOTS:
void showPreview(const KFileItem &item, const QPixmap &preview);
void previewFailed(const KFileItem &item);
void delayedPreview();
Q_SIGNALS:
void countChanged();
void urlChanged();
private:
//previews
QTimer *m_previewTimer;
QHash<KUrl, QPersistentModelIndex> m_filesToPreview;
QSize m_screenshotSize;
QHash<KUrl, QPersistentModelIndex> m_previewJobs;
};
#endif // DIRMODEL_H

View file

@ -1,33 +0,0 @@
/*
* Copyright 2012 by Marco Martin <mart@kde.org>
* This program 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, 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 Library General Public License for more details
*
* You should have received a copy of the GNU Library 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 "dirmodelplugin.h"
#include <QtDeclarative/qdeclarative.h>
#include "dirmodel.h"
void DirModelPlugin::registerTypes(const char *uri)
{
Q_ASSERT(uri == QLatin1String("org.kde.dirmodel"));
qmlRegisterType<DirModel>(uri, 0, 1, "DirModel");
}
#include "moc_dirmodelplugin.cpp"

View file

@ -1,36 +0,0 @@
/*
* Copyright 2012 by Marco Martin <mart@kde.org>
*
* This program 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, 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 Library General Public License for more details
*
* You should have received a copy of the GNU Library 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.
*/
#ifndef DIRMODELPLUGIN_H
#define DIRMODELPLUGIN_H
#include <QDeclarativeExtensionPlugin>
class DirModelPlugin : public QDeclarativeExtensionPlugin
{
Q_OBJECT
public:
void registerTypes(const char *uri);
};
Q_EXPORT_PLUGIN(DirModelPlugin)
#endif

View file

@ -1,2 +0,0 @@
plugin dirmodelplugin