1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/*
* This file is part of KDevelop
* Copyright 2010 Aleix Pol Gonzalez <aleixpol@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 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 "vcschangesview.h"
#include <interfaces/icore.h>
#include <interfaces/context.h>
#include <interfaces/iproject.h>
#include <interfaces/idocumentcontroller.h>
#include <interfaces/iplugincontroller.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/contextmenuextension.h>
#include <vcs/vcsstatusinfo.h>
#include <vcs/models/projectchangesmodel.h>
#include <project/projectmodel.h>
#include <KIcon>
#include <KActionCollection>
#include <KMenu>
#include "vcschangesviewplugin.h"
using namespace KDevelop;
VcsChangesView::VcsChangesView(VcsProjectIntegrationPlugin* plugin, QWidget* parent)
: QTreeView(parent)
{
setRootIsDecorated(false);
setEditTriggers(QAbstractItemView::NoEditTriggers);
setSelectionMode(ContiguousSelection);
setContextMenuPolicy(Qt::CustomContextMenu);
setTextElideMode(Qt::ElideLeft);
setWordWrap(true);
connect(this, SIGNAL(customContextMenuRequested(QPoint)), SLOT(popupContextMenu(QPoint)));
foreach(QAction* action, plugin->actionCollection()->actions())
addAction(action);
QAction* action = plugin->actionCollection()->action("locate_document");
connect(action, SIGNAL(triggered(bool)), SLOT(selectCurrentDocument()));
connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(openSelected(QModelIndex)));
}
static void appendActions(KMenu* menu, const QList<QAction*>& actions)
{
menu->addSeparator();
menu->addActions(actions);
}
void VcsChangesView::popupContextMenu( const QPoint &pos )
{
KUrl::List urls;
QList<IProject*> projects;
QModelIndexList selectionIdxs = selectedIndexes();
if(selectionIdxs.isEmpty())
return;
foreach(const QModelIndex& idx, selectionIdxs) {
if(idx.column()==0) {
if(idx.parent().isValid())
urls += idx.data(KDevelop::VcsFileChangesModel::VcsStatusInfoRole).value<VcsStatusInfo>().url();
else
projects += ICore::self()->projectController()->findProjectByName(idx.data().toString());
}
}
QPointer<KMenu> menu = new KMenu;
QAction* refreshAction = menu->addAction(KIcon("view-refresh"), i18n("Refresh"));
QList<ContextMenuExtension> extensions;
if(!urls.isEmpty()) {
KDevelop::FileContext context(urls);
extensions = ICore::self()->pluginController()->queryPluginsForContextMenuExtensions( &context );
} else {
QList<ProjectBaseItem*> items;
foreach(IProject* p, projects)
items += p->projectItem();
KDevelop::ProjectItemContext context(items);
extensions = ICore::self()->pluginController()->queryPluginsForContextMenuExtensions( &context );
}
QList<QAction*> buildActions;
QList<QAction*> vcsActions;
QList<QAction*> extActions;
QList<QAction*> projectActions;
QList<QAction*> fileActions;
QList<QAction*> runActions;
foreach( const ContextMenuExtension& ext, extensions )
{
buildActions += ext.actions(ContextMenuExtension::BuildGroup);
fileActions += ext.actions(ContextMenuExtension::FileGroup);
projectActions += ext.actions(ContextMenuExtension::ProjectGroup);
vcsActions += ext.actions(ContextMenuExtension::VcsGroup);
extActions += ext.actions(ContextMenuExtension::ExtensionGroup);
runActions += ext.actions(ContextMenuExtension::RunGroup);
}
appendActions(menu, buildActions);
appendActions(menu, runActions );
appendActions(menu, fileActions);
appendActions(menu, vcsActions);
appendActions(menu, extActions);
appendActions(menu, projectActions);
if ( !menu->isEmpty() ) {
QAction* res = menu->exec( mapToGlobal( pos ) );
if(res == refreshAction) {
if(!urls.isEmpty())
emit reload(urls);
else
emit reload(projects);
}
}
delete menu;
}
void VcsChangesView::selectCurrentDocument()
{
IDocument* doc = ICore::self()->documentController()->activeDocument();
if(!doc)
return;
KUrl url = doc->url();
IProject* p = ICore::self()->projectController()->findProjectForUrl(url);
QStandardItem* item = 0;
if(p) {
ProjectChangesModel* pcmodel = static_cast<ProjectChangesModel*>(model());
item = pcmodel->fileItemForUrl(pcmodel->projectItem(p), url);
}
if(item) {
expand(item->index().parent());
setCurrentIndex(item->index());
} else
collapseAll();
}
void VcsChangesView::setModel(QAbstractItemModel* model)
{
connect(model, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(expand(QModelIndex)));
QTreeView::setModel(model);
}
void VcsChangesView::openSelected(const QModelIndex& idx)
{
VcsStatusInfo info = idx.data(ProjectChangesModel::VcsStatusInfoRole).value<VcsStatusInfo>();
KUrl url = info.url();
ICore::self()->documentController()->openDocument(url);
}
|