2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 15:08:31 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "searchresultwindow.h"
|
|
|
|
|
#include "searchresulttreemodel.h"
|
|
|
|
|
|
2009-01-21 18:09:37 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
#include <QtCore/QSettings>
|
2009-04-30 12:50:52 +02:00
|
|
|
#include <QtCore/QDebug>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtGui/QListWidget>
|
|
|
|
|
#include <QtGui/QToolButton>
|
2009-09-29 16:40:52 +02:00
|
|
|
#include <QtGui/QLineEdit>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
using namespace Find;
|
|
|
|
|
using namespace Find::Internal;
|
|
|
|
|
|
|
|
|
|
static const QString SETTINGSKEYSECTIONNAME("SearchResults");
|
|
|
|
|
static const QString SETTINGSKEYEXPANDRESULTS("ExpandResults");
|
|
|
|
|
|
2009-09-29 16:59:19 +02:00
|
|
|
|
|
|
|
|
void ResultWindowItem::setData(const QVariant &data)
|
|
|
|
|
{
|
|
|
|
|
m_data = data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant ResultWindowItem::data() const
|
|
|
|
|
{
|
|
|
|
|
return m_data;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 18:09:37 +01:00
|
|
|
SearchResultWindow::SearchResultWindow()
|
2009-09-29 16:40:52 +02:00
|
|
|
: m_isShowingReplaceUI(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-01-21 18:09:37 +01:00
|
|
|
m_widget = new QStackedWidget;
|
2008-12-02 12:01:29 +01:00
|
|
|
m_widget->setWindowTitle(name());
|
|
|
|
|
|
|
|
|
|
m_searchResultTreeView = new SearchResultTreeView(m_widget);
|
|
|
|
|
m_searchResultTreeView->setFrameStyle(QFrame::NoFrame);
|
2009-01-30 17:09:09 +01:00
|
|
|
m_searchResultTreeView->setAttribute(Qt::WA_MacShowFocusRect, false);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_widget->addWidget(m_searchResultTreeView);
|
|
|
|
|
|
|
|
|
|
m_noMatchesFoundDisplay = new QListWidget(m_widget);
|
|
|
|
|
m_noMatchesFoundDisplay->addItem(tr("No matches found!"));
|
|
|
|
|
m_noMatchesFoundDisplay->setFrameStyle(QFrame::NoFrame);
|
|
|
|
|
m_widget->addWidget(m_noMatchesFoundDisplay);
|
|
|
|
|
|
|
|
|
|
m_expandCollapseToolButton = new QToolButton(m_widget);
|
|
|
|
|
m_expandCollapseToolButton->setAutoRaise(true);
|
|
|
|
|
m_expandCollapseToolButton->setCheckable(true);
|
|
|
|
|
m_expandCollapseToolButton->setIcon(QIcon(":/find/images/expand.png"));
|
|
|
|
|
m_expandCollapseToolButton->setToolTip(tr("Expand All"));
|
|
|
|
|
|
2009-09-29 16:40:52 +02:00
|
|
|
m_replaceLabel = new QLabel(tr("Replace with:"), m_widget);
|
|
|
|
|
m_replaceLabel->setContentsMargins(12, 0, 5, 0);
|
|
|
|
|
m_replaceTextEdit = new QLineEdit(m_widget);
|
|
|
|
|
m_replaceButton = new QToolButton(m_widget);
|
|
|
|
|
m_replaceButton->setToolTip(tr("Replace all occurances"));
|
|
|
|
|
m_replaceButton->setText(tr("Replace"));
|
|
|
|
|
m_replaceButton->setToolButtonStyle(Qt::ToolButtonTextOnly);
|
|
|
|
|
m_replaceButton->setAutoRaise(true);
|
2009-09-29 17:33:34 +02:00
|
|
|
m_replaceTextEdit->setTabOrder(m_replaceTextEdit, m_searchResultTreeView);
|
2009-09-29 16:40:52 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(m_searchResultTreeView, SIGNAL(jumpToSearchResult(int,const QString&,int,int,int)),
|
|
|
|
|
this, SLOT(handleJumpToSearchResult(int,const QString&,int,int,int)));
|
|
|
|
|
connect(m_expandCollapseToolButton, SIGNAL(toggled(bool)), this, SLOT(handleExpandCollapseToolButton(bool)));
|
2009-09-29 16:40:52 +02:00
|
|
|
connect(m_replaceButton, SIGNAL(clicked()), this, SLOT(handleReplaceButton()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
readSettings();
|
2009-09-29 16:40:52 +02:00
|
|
|
setShowReplaceUI(false);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SearchResultWindow::~SearchResultWindow()
|
|
|
|
|
{
|
|
|
|
|
writeSettings();
|
|
|
|
|
delete m_widget;
|
|
|
|
|
m_widget = 0;
|
|
|
|
|
qDeleteAll(m_items);
|
|
|
|
|
m_items.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-29 16:40:52 +02:00
|
|
|
void SearchResultWindow::setShowReplaceUI(bool show)
|
|
|
|
|
{
|
2009-09-29 18:16:13 +02:00
|
|
|
m_searchResultTreeView->model()->setShowReplaceUI(show);
|
2009-09-29 16:40:52 +02:00
|
|
|
m_replaceLabel->setVisible(show);
|
|
|
|
|
m_replaceTextEdit->setVisible(show);
|
|
|
|
|
m_replaceButton->setVisible(show);
|
|
|
|
|
// TODO m_searchResultTreeView->setShowCheckboxes(show);
|
|
|
|
|
m_isShowingReplaceUI = show;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SearchResultWindow::isShowingReplaceUI() const
|
|
|
|
|
{
|
|
|
|
|
return m_isShowingReplaceUI;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::handleReplaceButton()
|
|
|
|
|
{
|
|
|
|
|
emit replaceButtonClicked(m_replaceTextEdit->text());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ResultWindowItem *> SearchResultWindow::selectedItems() const
|
|
|
|
|
{
|
|
|
|
|
QList<ResultWindowItem *> items;
|
|
|
|
|
// TODO
|
|
|
|
|
// foreach (ResultWindowItem *item, m_items) {
|
|
|
|
|
// if (item->isSelected)
|
|
|
|
|
// items << item;
|
|
|
|
|
// }
|
|
|
|
|
return items;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void SearchResultWindow::visibilityChanged(bool /*visible*/)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *SearchResultWindow::outputWidget(QWidget *)
|
|
|
|
|
{
|
|
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-07 16:59:48 +02:00
|
|
|
QList<QWidget*> SearchResultWindow::toolBarWidgets() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-09-29 16:40:52 +02:00
|
|
|
return QList<QWidget*>() << m_expandCollapseToolButton << m_replaceLabel << m_replaceTextEdit << m_replaceButton;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::clearContents()
|
|
|
|
|
{
|
2009-09-29 17:33:34 +02:00
|
|
|
setShowReplaceUI(false);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_widget->setCurrentWidget(m_searchResultTreeView);
|
|
|
|
|
m_searchResultTreeView->clear();
|
|
|
|
|
qDeleteAll(m_items);
|
|
|
|
|
m_items.clear();
|
2009-04-30 12:50:52 +02:00
|
|
|
navigateStateChanged();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-04-07 16:59:48 +02:00
|
|
|
void SearchResultWindow::showNoMatchesFound()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_widget->setCurrentWidget(m_noMatchesFoundDisplay);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SearchResultWindow::isEmpty() const
|
|
|
|
|
{
|
|
|
|
|
return (m_searchResultTreeView->model()->rowCount() < 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SearchResultWindow::numberOfResults() const
|
|
|
|
|
{
|
|
|
|
|
return m_searchResultTreeView->model()->rowCount();
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-08 14:32:31 +02:00
|
|
|
bool SearchResultWindow::hasFocus()
|
|
|
|
|
{
|
2009-09-29 17:33:34 +02:00
|
|
|
return m_searchResultTreeView->hasFocus() || (m_isShowingReplaceUI && m_replaceTextEdit->hasFocus());
|
2009-04-08 14:32:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SearchResultWindow::canFocus()
|
|
|
|
|
{
|
|
|
|
|
return !m_items.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::setFocus()
|
|
|
|
|
{
|
2009-09-29 17:33:34 +02:00
|
|
|
if (!m_items.isEmpty()) {
|
|
|
|
|
if (!m_isShowingReplaceUI) {
|
|
|
|
|
m_searchResultTreeView->setFocus();
|
|
|
|
|
} else {
|
|
|
|
|
if (!m_widget->focusWidget()
|
|
|
|
|
|| m_widget->focusWidget() == m_replaceTextEdit) {
|
|
|
|
|
m_replaceTextEdit->setFocus();
|
|
|
|
|
} else {
|
|
|
|
|
m_searchResultTreeView->setFocus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-04-08 14:32:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::setTextEditorFont(const QFont &font)
|
|
|
|
|
{
|
|
|
|
|
m_searchResultTreeView->setTextEditorFont(font);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void SearchResultWindow::handleJumpToSearchResult(int index, const QString &fileName, int lineNumber,
|
|
|
|
|
int searchTermStart, int searchTermLength)
|
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(searchTermLength)
|
2008-12-02 12:01:29 +01:00
|
|
|
ResultWindowItem *item = m_items.at(index);
|
|
|
|
|
emit item->activated(fileName, lineNumber, searchTermStart);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResultWindowItem *SearchResultWindow::addResult(const QString &fileName, int lineNumber, const QString &rowText,
|
|
|
|
|
int searchTermStart, int searchTermLength)
|
|
|
|
|
{
|
2009-07-24 15:47:22 +02:00
|
|
|
//qDebug()<<"###"<<fileName;
|
2008-12-02 12:01:29 +01:00
|
|
|
m_widget->setCurrentWidget(m_searchResultTreeView);
|
|
|
|
|
int index = m_items.size();
|
|
|
|
|
ResultWindowItem *item = new ResultWindowItem;
|
|
|
|
|
m_items.append(item);
|
|
|
|
|
m_searchResultTreeView->appendResultLine(index, fileName, lineNumber, rowText, searchTermStart, searchTermLength);
|
|
|
|
|
if (index == 0) {
|
|
|
|
|
// We didn't have an item before, set the focus to the m_searchResultTreeView
|
2009-09-29 17:33:34 +02:00
|
|
|
setFocus();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_searchResultTreeView->selectionModel()->select(m_searchResultTreeView->model()->index(0, 0, QModelIndex()), QItemSelectionModel::Select);
|
2009-04-30 12:50:52 +02:00
|
|
|
emit navigateStateChanged();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::handleExpandCollapseToolButton(bool checked)
|
|
|
|
|
{
|
|
|
|
|
m_searchResultTreeView->setAutoExpandResults(checked);
|
|
|
|
|
if (checked)
|
|
|
|
|
m_searchResultTreeView->expandAll();
|
|
|
|
|
else
|
|
|
|
|
m_searchResultTreeView->collapseAll();
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-07 16:59:48 +02:00
|
|
|
void SearchResultWindow::readSettings()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-01-21 18:09:37 +01:00
|
|
|
QSettings *s = Core::ICore::instance()->settings();
|
|
|
|
|
if (s) {
|
2008-12-02 12:01:29 +01:00
|
|
|
s->beginGroup(SETTINGSKEYSECTIONNAME);
|
|
|
|
|
m_expandCollapseToolButton->setChecked(s->value(SETTINGSKEYEXPANDRESULTS, m_initiallyExpand).toBool());
|
|
|
|
|
s->endGroup();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-07 16:59:48 +02:00
|
|
|
void SearchResultWindow::writeSettings()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-01-21 18:09:37 +01:00
|
|
|
QSettings *s = Core::ICore::instance()->settings();
|
|
|
|
|
if (s) {
|
2008-12-02 12:01:29 +01:00
|
|
|
s->beginGroup(SETTINGSKEYSECTIONNAME);
|
|
|
|
|
s->setValue(SETTINGSKEYEXPANDRESULTS, m_expandCollapseToolButton->isChecked());
|
|
|
|
|
s->endGroup();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SearchResultWindow::priorityInStatusBar() const
|
|
|
|
|
{
|
|
|
|
|
return 80;
|
|
|
|
|
}
|
2009-04-30 12:50:52 +02:00
|
|
|
|
|
|
|
|
bool SearchResultWindow::canNext()
|
|
|
|
|
{
|
|
|
|
|
return m_searchResultTreeView->model()->rowCount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SearchResultWindow::canPrevious()
|
|
|
|
|
{
|
|
|
|
|
return m_searchResultTreeView->model()->rowCount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SearchResultWindow::goToNext()
|
|
|
|
|
{
|
|
|
|
|
if (!m_searchResultTreeView->model()->rowCount())
|
|
|
|
|
return;
|
|
|
|
|
QModelIndex idx = m_searchResultTreeView->model()->next(m_searchResultTreeView->currentIndex());
|
|
|
|
|
if (idx.isValid()) {
|
|
|
|
|
m_searchResultTreeView->setCurrentIndex(idx);
|
|
|
|
|
m_searchResultTreeView->emitJumpToSearchResult(idx);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
void SearchResultWindow::goToPrev()
|
|
|
|
|
{
|
|
|
|
|
if (!m_searchResultTreeView->model()->rowCount())
|
|
|
|
|
return;
|
|
|
|
|
QModelIndex idx = m_searchResultTreeView->model()->prev(m_searchResultTreeView->currentIndex());
|
|
|
|
|
if (idx.isValid()) {
|
|
|
|
|
m_searchResultTreeView->setCurrentIndex(idx);
|
|
|
|
|
m_searchResultTreeView->emitJumpToSearchResult(idx);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SearchResultWindow::canNavigate()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|