Applets
kickoffmodel.cpp
Go to the documentation of this file.00001 /* 00002 Copyright 2008 Marco Martin <notmart@gmail.com> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 // Own 00021 #include "core/kickoffmodel.h" 00022 00023 // Qt 00024 #include <QMimeData> 00025 00026 // KDE 00027 #include <KUrl> 00028 #include <KDebug> 00029 00030 // Local 00031 #include "core/models.h" 00032 00033 using namespace Kickoff; 00034 00035 KickoffModel::KickoffModel(QObject *parent) 00036 : QStandardItemModel(parent) 00037 { 00038 } 00039 00040 KickoffModel::~KickoffModel() 00041 {} 00042 00043 Qt::ItemFlags KickoffModel::flags(const QModelIndex &index) const 00044 { 00045 Qt::ItemFlags defaultFlags = QStandardItemModel::flags(index); 00046 00047 if (index.isValid()) { 00048 return Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled | defaultFlags; 00049 } else { 00050 return 0; 00051 } 00052 } 00053 00054 QMimeData *KickoffModel::mimeData(const QModelIndexList &indexes) const 00055 { 00056 KUrl::List urls; 00057 QByteArray itemData; 00058 00059 foreach(const QModelIndex &index, indexes) { 00060 KUrl itemUrl = KUrl(data(index, UrlRole).toString()); 00061 if (itemUrl.isValid()) { 00062 urls << itemUrl; 00063 } 00064 } 00065 00066 QMimeData *mimeData = new QMimeData(); 00067 00068 if (!urls.isEmpty()) { 00069 urls.populateMimeData(mimeData); 00070 } 00071 00072 return mimeData; 00073 } 00074 00075 QStringList KickoffModel::mimeTypes() const 00076 { 00077 QStringList types; 00078 types << "text/uri-list"; 00079 return types; 00080 } 00081 00082 Qt::DropActions KickoffModel::supportedDropActions() const 00083 { 00084 return Qt::MoveAction; 00085 } 00086 00087 Qt::DropActions KickoffModel::supportedDragActions() const 00088 { 00089 return Qt::CopyAction; 00090 } 00091 00092 #include "kickoffmodel.moc" 00093