2011-10-25 23:14:27 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2012 Dmitry Savchenko.
|
|
|
|
|
** Copyright (c) 2010 Vasiliy Sorokin.
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2012-02-14 22:43:26 +04:00
|
|
|
#include "todooutputpane.h"
|
2011-10-25 23:14:27 +03:00
|
|
|
#include "constants.h"
|
2012-02-24 09:43:52 +01:00
|
|
|
#include "todoitemsmodel.h"
|
2011-10-25 23:14:27 +03:00
|
|
|
|
2012-02-14 22:43:26 +04:00
|
|
|
#include <QIcon>
|
2011-10-25 23:14:27 +03:00
|
|
|
#include <QHeaderView>
|
2012-02-24 09:43:52 +01:00
|
|
|
#include <QTreeView>
|
|
|
|
|
#include <QToolButton>
|
|
|
|
|
#include <QButtonGroup>
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
namespace Todo {
|
|
|
|
|
namespace Internal {
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
TodoOutputPane::TodoOutputPane(TodoItemsModel *todoItemsModel, QObject *parent) :
|
|
|
|
|
IOutputPane(parent),
|
|
|
|
|
m_todoItemsModel(todoItemsModel)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
createTreeView();
|
|
|
|
|
createScopeButtons();
|
|
|
|
|
setScanningScope(ScanningScopeCurrentFile); // default
|
|
|
|
|
connect(m_todoItemsModel, SIGNAL(layoutChanged()), SIGNAL(navigateStateUpdate()));
|
2012-06-14 16:33:10 +02:00
|
|
|
connect(m_todoItemsModel, SIGNAL(layoutChanged()), SLOT(updateTodoCount()));
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TodoOutputPane::~TodoOutputPane()
|
|
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
freeTreeView();
|
|
|
|
|
freeScopeButtons();
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QWidget *TodoOutputPane::outputWidget(QWidget *parent)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
Q_UNUSED(parent)
|
|
|
|
|
return m_todoTreeView;
|
|
|
|
|
}
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QList<QWidget*> TodoOutputPane::toolBarWidgets() const
|
|
|
|
|
{
|
|
|
|
|
return QList<QWidget*>()
|
|
|
|
|
<< m_spacer
|
|
|
|
|
<< m_currentFileButton
|
|
|
|
|
<< m_wholeProjectButton;
|
|
|
|
|
}
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QString TodoOutputPane::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return tr(Constants::OUTPUT_PANE_TITLE);
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
int TodoOutputPane::priorityInStatusBar() const
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
return 1;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::clearContents()
|
|
|
|
|
{
|
|
|
|
|
}
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::visibilityChanged(bool visible)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
Q_UNUSED(visible)
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::setFocus()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
m_todoTreeView->setFocus();
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
bool TodoOutputPane::hasFocus() const
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
return m_todoTreeView->hasFocus();
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
bool TodoOutputPane::canFocus() const
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
return true;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
bool TodoOutputPane::canNavigate() const
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
return true;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
bool TodoOutputPane::canNext() const
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
return m_todoTreeView->model()->rowCount() > 1;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
bool TodoOutputPane::canPrevious() const
|
|
|
|
|
{
|
|
|
|
|
return m_todoTreeView->model()->rowCount() > 1;
|
|
|
|
|
}
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::goToNext()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
m_todoTreeView->selectionModel()->select(nextModelIndex(), QItemSelectionModel::SelectCurrent);
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::goToPrev()
|
|
|
|
|
{
|
|
|
|
|
m_todoTreeView->selectionModel()->select(previousModelIndex(), QItemSelectionModel::SelectCurrent);
|
|
|
|
|
}
|
2012-02-14 22:43:26 +04:00
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::setScanningScope(ScanningScope scanningScope)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
if (scanningScope == ScanningScopeCurrentFile)
|
|
|
|
|
m_currentFileButton->setChecked(true);
|
|
|
|
|
else if (scanningScope == ScanningScopeProject)
|
|
|
|
|
m_wholeProjectButton->setChecked(true);
|
|
|
|
|
else
|
|
|
|
|
Q_ASSERT_X(false, "Updating scanning scope buttons", "Unknown scanning scope enum value");
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::scopeButtonClicked(QAbstractButton* button)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
if (button == m_currentFileButton)
|
|
|
|
|
emit scanningScopeChanged(ScanningScopeCurrentFile);
|
|
|
|
|
else if (button == m_wholeProjectButton)
|
|
|
|
|
emit scanningScopeChanged(ScanningScopeProject);
|
2012-06-14 16:33:10 +02:00
|
|
|
setBadgeNumber(m_todoItemsModel->rowCount());
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2012-02-24 09:43:52 +01:00
|
|
|
void TodoOutputPane::todoTreeViewClicked(const QModelIndex &index)
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
// Create a to-do item and notify that it was clicked on
|
|
|
|
|
|
|
|
|
|
int row = index.row();
|
|
|
|
|
|
|
|
|
|
TodoItem item;
|
|
|
|
|
item.text = index.sibling(row, Constants::OUTPUT_COLUMN_TEXT).data().toString();
|
|
|
|
|
item.file = index.sibling(row, Constants::OUTPUT_COLUMN_FILE).data().toString();
|
|
|
|
|
item.line = index.sibling(row, Constants::OUTPUT_COLUMN_LINE).data().toInt();
|
|
|
|
|
item.color = index.data(Qt::BackgroundColorRole).value<QColor>();
|
|
|
|
|
item.iconResource = index.sibling(row, Constants::OUTPUT_COLUMN_TEXT).data(Qt::DecorationRole).toString();
|
|
|
|
|
|
|
|
|
|
emit todoItemClicked(item);
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2012-06-14 16:33:10 +02:00
|
|
|
void TodoOutputPane::updateTodoCount()
|
|
|
|
|
{
|
|
|
|
|
setBadgeNumber(m_todoItemsModel->rowCount());
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::createTreeView()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
m_todoTreeView = new QTreeView();
|
|
|
|
|
|
|
|
|
|
m_todoTreeView->setRootIsDecorated(false);
|
|
|
|
|
m_todoTreeView->setFrameStyle(QFrame::NoFrame);
|
|
|
|
|
m_todoTreeView->setSortingEnabled(true);
|
|
|
|
|
m_todoTreeView->setModel(m_todoItemsModel);
|
2012-05-04 13:28:26 +02:00
|
|
|
m_todoTreeView->setAttribute(Qt::WA_MacShowFocusRect, false);
|
2011-10-25 23:14:27 +03:00
|
|
|
|
|
|
|
|
QHeaderView *header = m_todoTreeView->header();
|
|
|
|
|
header->setResizeMode(Constants::OUTPUT_COLUMN_TEXT, QHeaderView::Stretch);
|
|
|
|
|
header->setResizeMode(Constants::OUTPUT_COLUMN_LINE, QHeaderView::ResizeToContents);
|
|
|
|
|
header->setResizeMode(Constants::OUTPUT_COLUMN_FILE, QHeaderView::ResizeToContents);
|
|
|
|
|
header->setStretchLastSection(false);
|
|
|
|
|
header->setMovable(false);
|
|
|
|
|
|
|
|
|
|
connect(m_todoTreeView, SIGNAL(clicked(QModelIndex)), SLOT(todoTreeViewClicked(QModelIndex)));
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::freeTreeView()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
delete m_todoTreeView;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::createScopeButtons()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
m_currentFileButton = new QToolButton();
|
2012-02-24 09:43:52 +01:00
|
|
|
m_currentFileButton->setIcon(QIcon(QLatin1String(Constants::ICON_CURRENT_FILE)));
|
2011-10-25 23:14:27 +03:00
|
|
|
m_currentFileButton->setCheckable(true);
|
|
|
|
|
m_currentFileButton->setToolTip(tr("Scan in the current opened file"));
|
|
|
|
|
|
|
|
|
|
m_wholeProjectButton = new QToolButton();
|
2012-02-24 09:43:52 +01:00
|
|
|
m_wholeProjectButton->setIcon(QIcon(QLatin1String(Constants::ICON_WHOLE_PROJECT)));
|
2011-10-25 23:14:27 +03:00
|
|
|
m_wholeProjectButton->setCheckable(true);
|
|
|
|
|
m_wholeProjectButton->setToolTip(tr("Scan in the whole project"));
|
|
|
|
|
|
|
|
|
|
m_scopeButtons = new QButtonGroup();
|
|
|
|
|
m_scopeButtons->addButton(m_wholeProjectButton);
|
|
|
|
|
m_scopeButtons->addButton(m_currentFileButton);
|
|
|
|
|
connect(m_scopeButtons, SIGNAL(buttonClicked(QAbstractButton*)), SLOT(scopeButtonClicked(QAbstractButton*)));
|
|
|
|
|
|
|
|
|
|
m_spacer = new QWidget;
|
2012-02-24 09:43:52 +01:00
|
|
|
m_spacer->setMinimumWidth(Constants::OUTPUT_TOOLBAR_SPACER_WIDTH);
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
void TodoOutputPane::freeScopeButtons()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
delete m_currentFileButton;
|
|
|
|
|
delete m_wholeProjectButton;
|
|
|
|
|
delete m_scopeButtons;
|
|
|
|
|
delete m_spacer;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndex TodoOutputPane::selectedModelIndex()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndexList selectedIndexes = m_todoTreeView->selectionModel()->selectedIndexes();
|
|
|
|
|
if (selectedIndexes.isEmpty())
|
|
|
|
|
return QModelIndex();
|
|
|
|
|
else
|
|
|
|
|
// There is only one item selected
|
|
|
|
|
return selectedIndexes.first();
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndex TodoOutputPane::nextModelIndex()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndex indexToBeSelected = m_todoTreeView->indexBelow(selectedModelIndex());
|
|
|
|
|
if (!indexToBeSelected.isValid())
|
|
|
|
|
return m_todoTreeView->model()->index(0, 0);
|
|
|
|
|
else
|
|
|
|
|
return indexToBeSelected;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
|
|
|
|
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndex TodoOutputPane::previousModelIndex()
|
2012-02-14 22:43:26 +04:00
|
|
|
{
|
2011-10-25 23:14:27 +03:00
|
|
|
QModelIndex indexToBeSelected = m_todoTreeView->indexAbove(selectedModelIndex());
|
|
|
|
|
if (!indexToBeSelected.isValid())
|
|
|
|
|
return m_todoTreeView->model()->index(m_todoTreeView->model()->rowCount() - 1, 0);
|
|
|
|
|
else
|
|
|
|
|
return indexToBeSelected;
|
2012-02-14 22:43:26 +04:00
|
|
|
}
|
2011-10-25 23:14:27 +03:00
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Todo
|