2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-02-08 15:54:59 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2012-02-08 15:54:59 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-02-08 15:54:59 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2012-02-08 15:54:59 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02: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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-02-08 15:54:59 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-02-08 15:54:59 +01:00
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
#include "qtmessagelogview.h"
|
|
|
|
|
#include "qtmessagelogitemdelegate.h"
|
|
|
|
|
#include "qtmessageloghandler.h"
|
2012-02-22 11:50:05 +01:00
|
|
|
#include "debuggerstringutils.h"
|
|
|
|
|
#include "debuggercore.h"
|
|
|
|
|
#include "debuggerengine.h"
|
|
|
|
|
|
|
|
|
|
#include <texteditor/basetexteditor.h>
|
2012-02-08 15:54:59 +01:00
|
|
|
|
2012-02-17 22:33:40 +02:00
|
|
|
#include <QMouseEvent>
|
|
|
|
|
#include <QProxyStyle>
|
|
|
|
|
#include <QPainter>
|
2012-02-22 11:50:05 +01:00
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QClipboard>
|
|
|
|
|
#include <QAbstractProxyModel>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QUrl>
|
2012-02-27 11:25:30 +01:00
|
|
|
#include <QScrollBar>
|
2012-02-08 15:54:59 +01:00
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
class QtMessageLogViewViewStyle : public QProxyStyle
|
2012-02-08 15:54:59 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void drawPrimitive(PrimitiveElement element,
|
|
|
|
|
const QStyleOption *option,
|
|
|
|
|
QPainter *painter,
|
|
|
|
|
const QWidget *widget = 0) const
|
|
|
|
|
{
|
|
|
|
|
if (element != QStyle::PE_PanelItemViewRow)
|
|
|
|
|
QProxyStyle::drawPrimitive(element, option, painter, widget);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
int styleHint(StyleHint hint,
|
|
|
|
|
const QStyleOption *option = 0,
|
2012-02-08 15:54:59 +01:00
|
|
|
const QWidget *widget = 0,
|
|
|
|
|
QStyleHintReturn *returnData = 0) const {
|
|
|
|
|
if (hint == SH_ItemView_ShowDecorationSelected)
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return QProxyStyle::styleHint(hint, option, widget, returnData);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2012-02-15 12:35:43 +01:00
|
|
|
// QtMessageLogView
|
2012-02-08 15:54:59 +01:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
QtMessageLogView::QtMessageLogView(QWidget *parent) :
|
2012-02-08 15:54:59 +01:00
|
|
|
QTreeView(parent)
|
|
|
|
|
{
|
|
|
|
|
setFrameStyle(QFrame::NoFrame);
|
|
|
|
|
setHeaderHidden(true);
|
|
|
|
|
setRootIsDecorated(false);
|
|
|
|
|
setEditTriggers(QAbstractItemView::AllEditTriggers);
|
|
|
|
|
setStyleSheet(QLatin1String("QTreeView::branch:has-siblings:!adjoins-item {"
|
|
|
|
|
"border-image: none;"
|
|
|
|
|
"image: none; }"
|
|
|
|
|
"QTreeView::branch:has-siblings:adjoins-item {"
|
|
|
|
|
"border-image: none;"
|
|
|
|
|
"image: none; }"
|
|
|
|
|
"QTreeView::branch:!has-children:!has-siblings:adjoins-item {"
|
|
|
|
|
"border-image: none;"
|
|
|
|
|
"image: none; }"
|
|
|
|
|
"QTreeView::branch:has-children:!has-siblings:closed,"
|
|
|
|
|
"QTreeView::branch:closed:has-children:has-siblings {"
|
|
|
|
|
"border-image: none;"
|
|
|
|
|
"image: none; }"
|
|
|
|
|
"QTreeView::branch:open:has-children:!has-siblings,"
|
|
|
|
|
"QTreeView::branch:open:has-children:has-siblings {"
|
|
|
|
|
"border-image: none;"
|
|
|
|
|
"image: none; }"));
|
2012-02-15 12:35:43 +01:00
|
|
|
QtMessageLogViewViewStyle *style = new QtMessageLogViewViewStyle;
|
2012-02-08 15:54:59 +01:00
|
|
|
setStyle(style);
|
|
|
|
|
style->setParent(this);
|
2012-02-22 11:50:05 +01:00
|
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
|
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
|
|
|
|
|
setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
|
|
|
|
|
|
|
|
|
|
connect(this, SIGNAL(activated(QModelIndex)),
|
|
|
|
|
SLOT(onRowActivated(QModelIndex)));
|
2012-02-08 15:54:59 +01:00
|
|
|
}
|
|
|
|
|
|
2012-02-27 11:25:30 +01:00
|
|
|
void QtMessageLogView::onScrollToBottom()
|
|
|
|
|
{
|
|
|
|
|
//Keep scrolling to bottom if scroll bar is at maximum()
|
|
|
|
|
if (verticalScrollBar()->value() == verticalScrollBar()->maximum())
|
|
|
|
|
scrollToBottom();
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
void QtMessageLogView::mousePressEvent(QMouseEvent *event)
|
2012-02-08 15:54:59 +01:00
|
|
|
{
|
|
|
|
|
QPoint pos = event->pos();
|
|
|
|
|
QModelIndex index = indexAt(pos);
|
|
|
|
|
if (index.isValid()) {
|
2012-02-15 12:35:43 +01:00
|
|
|
QtMessageLogHandler::ItemType type = (QtMessageLogHandler::ItemType)index.data(
|
|
|
|
|
QtMessageLogHandler::TypeRole).toInt();
|
2012-02-22 11:50:05 +01:00
|
|
|
bool handled = false;
|
|
|
|
|
if (type == QtMessageLogHandler::UndefinedType) {
|
|
|
|
|
bool showTypeIcon = index.parent() == QModelIndex();
|
|
|
|
|
ConsoleItemPositions positions(visualRect(index), viewOptions().font,
|
|
|
|
|
showTypeIcon, true);
|
|
|
|
|
|
|
|
|
|
if (positions.expandCollapseIcon().contains(pos)) {
|
|
|
|
|
if (isExpanded(index))
|
|
|
|
|
setExpanded(index, false);
|
|
|
|
|
else
|
|
|
|
|
setExpanded(index, true);
|
|
|
|
|
handled = true;
|
|
|
|
|
}
|
2012-02-08 15:54:59 +01:00
|
|
|
}
|
2012-02-22 11:50:05 +01:00
|
|
|
if (!handled)
|
|
|
|
|
QTreeView::mousePressEvent(event);
|
2012-02-08 15:54:59 +01:00
|
|
|
} else {
|
|
|
|
|
selectionModel()->setCurrentIndex(model()->index(
|
|
|
|
|
model()->rowCount() - 1, 0),
|
|
|
|
|
QItemSelectionModel::ClearAndSelect);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-22 11:50:05 +01:00
|
|
|
void QtMessageLogView::keyPressEvent(QKeyEvent *e)
|
|
|
|
|
{
|
|
|
|
|
if (!e->modifiers() && e->key() == Qt::Key_Return) {
|
|
|
|
|
emit activated(currentIndex());
|
|
|
|
|
e->accept();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
QTreeView::keyPressEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
void QtMessageLogView::resizeEvent(QResizeEvent *e)
|
2012-02-08 15:54:59 +01:00
|
|
|
{
|
2012-02-15 12:35:43 +01:00
|
|
|
static_cast<QtMessageLogItemDelegate *>(itemDelegate())->emitSizeHintChanged(
|
2012-02-08 15:54:59 +01:00
|
|
|
selectionModel()->currentIndex());
|
|
|
|
|
QTreeView::resizeEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 12:35:43 +01:00
|
|
|
void QtMessageLogView::drawBranches(QPainter *painter, const QRect &rect,
|
2012-02-08 15:54:59 +01:00
|
|
|
const QModelIndex &index) const
|
|
|
|
|
{
|
2012-02-15 12:35:43 +01:00
|
|
|
static_cast<QtMessageLogItemDelegate *>(itemDelegate())->drawBackground(
|
|
|
|
|
painter, rect, index, false);
|
2012-02-08 15:54:59 +01:00
|
|
|
QTreeView::drawBranches(painter, rect, index);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-22 11:50:05 +01:00
|
|
|
void QtMessageLogView::contextMenuEvent(QContextMenuEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QModelIndex itemIndex = indexAt(event->pos());
|
|
|
|
|
QMenu menu;
|
|
|
|
|
|
|
|
|
|
QAction *copy = new QAction(tr("&Copy"), this);
|
|
|
|
|
copy->setEnabled(itemIndex.isValid());
|
|
|
|
|
menu.addAction(copy);
|
|
|
|
|
QAction *show = new QAction(tr("&Show in Editor"), this);
|
|
|
|
|
show->setEnabled(canShowItemInTextEditor(itemIndex));
|
|
|
|
|
menu.addAction(show);
|
|
|
|
|
menu.addSeparator();
|
|
|
|
|
QAction *clear = new QAction(tr("C&lear"), this);
|
|
|
|
|
menu.addAction(clear);
|
|
|
|
|
|
|
|
|
|
QAction *a = menu.exec(event->globalPos());
|
|
|
|
|
if (a == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (a == copy)
|
|
|
|
|
copyToClipboard(itemIndex);
|
|
|
|
|
else if (a == show)
|
|
|
|
|
onRowActivated(itemIndex);
|
|
|
|
|
else if (a == clear) {
|
|
|
|
|
QAbstractProxyModel *proxyModel =
|
|
|
|
|
qobject_cast<QAbstractProxyModel *>(model());
|
|
|
|
|
QtMessageLogHandler *handler =
|
|
|
|
|
qobject_cast<QtMessageLogHandler *>(proxyModel->sourceModel());
|
|
|
|
|
handler->clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QtMessageLogView::onRowActivated(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
//See if we have file and line Info
|
|
|
|
|
QString filePath = model()->data(index,
|
|
|
|
|
QtMessageLogHandler::FileRole).toString();
|
|
|
|
|
if (!filePath.isEmpty()) {
|
|
|
|
|
filePath = debuggerCore()->currentEngine()->toFileInProject(
|
|
|
|
|
QUrl(filePath));
|
|
|
|
|
QFileInfo fi(filePath);
|
|
|
|
|
if (fi.exists() && fi.isFile() && fi.isReadable()) {
|
|
|
|
|
int line = model()->data(index,
|
|
|
|
|
QtMessageLogHandler::LineRole).toInt();
|
|
|
|
|
TextEditor::BaseTextEditorWidget::openEditorAt(
|
|
|
|
|
fi.canonicalFilePath(), line);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QtMessageLogView::copyToClipboard(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QString contents = model()->data(index).toString();
|
|
|
|
|
//See if we have file and line Info
|
|
|
|
|
QString filePath = model()->data(index,
|
|
|
|
|
QtMessageLogHandler::FileRole).toString();
|
|
|
|
|
if (!filePath.isEmpty()) {
|
|
|
|
|
contents = QString(_("%1 %2: %3")).arg(contents).arg(filePath).arg(
|
|
|
|
|
model()->data(index,
|
|
|
|
|
QtMessageLogHandler::LineRole).toString());
|
|
|
|
|
}
|
|
|
|
|
QClipboard *cb = QApplication::clipboard();
|
|
|
|
|
cb->setText(contents);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QtMessageLogView::canShowItemInTextEditor(const QModelIndex &index)
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
//See if we have file and line Info
|
|
|
|
|
QString filePath = model()->data(index,
|
|
|
|
|
QtMessageLogHandler::FileRole).toString();
|
|
|
|
|
if (!filePath.isEmpty()) {
|
|
|
|
|
filePath = debuggerCore()->currentEngine()->toFileInProject(
|
|
|
|
|
QUrl(filePath));
|
|
|
|
|
QFileInfo fi(filePath);
|
|
|
|
|
if (fi.exists() && fi.isFile() && fi.isReadable()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-08 15:54:59 +01:00
|
|
|
} //Internal
|
|
|
|
|
} //Debugger
|