2010-02-26 11:08:17 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-03-10 12:48:17 +01:00
|
|
|
#include "editortoolbar.h"
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
2010-03-09 09:42:22 +01:00
|
|
|
#include <coreplugin/minisplitter.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
#include <coreplugin/sidebar.h>
|
2010-03-12 16:47:46 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/editormanager/editorview.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/openeditorsmodel.h>
|
|
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/parameteraction.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
2010-03-09 17:40:55 +01:00
|
|
|
#include <utils/styledbar.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtCore/QEvent>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
|
#include <QtGui/QPlainTextEdit>
|
|
|
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
|
#include <QtGui/QScrollArea>
|
|
|
|
|
#include <QtGui/QTabWidget>
|
|
|
|
|
#include <QtGui/QToolButton>
|
|
|
|
|
#include <QtGui/QMenu>
|
|
|
|
|
#include <QtGui/QClipboard>
|
|
|
|
|
#include <QtGui/QLabel>
|
|
|
|
|
#include <QtGui/QToolBar>
|
|
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(Core::IEditor*)
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
debug = false
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-09 09:42:22 +01:00
|
|
|
namespace Core {
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Mimic the look of the text editor toolbar as defined in e.g. EditorView::EditorView
|
|
|
|
|
*/
|
2010-03-09 17:40:55 +01:00
|
|
|
EditorToolBar::EditorToolBar(QWidget *parent) :
|
|
|
|
|
Utils::StyledBar(parent),
|
|
|
|
|
m_editorList(new QComboBox(this)),
|
2010-02-26 11:08:17 +01:00
|
|
|
m_closeButton(new QToolButton),
|
|
|
|
|
m_lockButton(new QToolButton),
|
2010-03-09 17:40:55 +01:00
|
|
|
|
2010-07-30 19:21:01 +02:00
|
|
|
m_goBackAction(new QAction(QIcon(QLatin1String(Constants::ICON_PREV)), EditorManager::tr("Go Back"), parent)),
|
|
|
|
|
m_goForwardAction(new QAction(QIcon(QLatin1String(Constants::ICON_NEXT)), EditorManager::tr("Go Forward"), parent)),
|
2010-03-09 17:40:55 +01:00
|
|
|
|
|
|
|
|
m_activeToolBar(0),
|
|
|
|
|
m_toolBarPlaceholder(new QWidget),
|
|
|
|
|
m_defaultToolBar(new QWidget(this)),
|
2010-03-15 16:02:38 +01:00
|
|
|
m_isStandalone(false)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-09 17:40:55 +01:00
|
|
|
QHBoxLayout *toolBarLayout = new QHBoxLayout(this);
|
|
|
|
|
toolBarLayout->setMargin(0);
|
|
|
|
|
toolBarLayout->setSpacing(0);
|
|
|
|
|
toolBarLayout->addWidget(m_defaultToolBar);
|
|
|
|
|
m_toolBarPlaceholder->setLayout(toolBarLayout);
|
|
|
|
|
m_toolBarPlaceholder->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
m_defaultToolBar->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
|
|
|
|
m_activeToolBar = m_defaultToolBar;
|
|
|
|
|
|
|
|
|
|
m_editorsListModel = EditorManager::instance()->openedEditorsModel();
|
|
|
|
|
connect(m_goBackAction, SIGNAL(triggered()), this, SIGNAL(goBackClicked()));
|
|
|
|
|
connect(m_goForwardAction, SIGNAL(triggered()), this, SIGNAL(goForwardClicked()));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
m_editorList->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
|
|
|
|
m_editorList->setMinimumContentsLength(20);
|
|
|
|
|
m_editorList->setModel(m_editorsListModel);
|
|
|
|
|
m_editorList->setMaxVisibleItems(40);
|
|
|
|
|
m_editorList->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
|
|
|
|
|
m_lockButton->setAutoRaise(true);
|
|
|
|
|
m_lockButton->setProperty("type", QLatin1String("dockbutton"));
|
2010-03-09 17:40:55 +01:00
|
|
|
m_lockButton->setVisible(false);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
m_closeButton->setAutoRaise(true);
|
|
|
|
|
m_closeButton->setIcon(QIcon(":/core/images/closebutton.png"));
|
|
|
|
|
m_closeButton->setProperty("type", QLatin1String("dockbutton"));
|
2010-03-09 17:40:55 +01:00
|
|
|
m_closeButton->setEnabled(false);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
m_toolBarPlaceholder->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
|
|
|
|
|
|
|
|
|
m_backButton = new QToolButton(this);
|
|
|
|
|
m_backButton->setDefaultAction(m_goBackAction);
|
|
|
|
|
|
|
|
|
|
m_forwardButton= new QToolButton(this);
|
|
|
|
|
m_forwardButton->setDefaultAction(m_goForwardAction);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
QHBoxLayout *toplayout = new QHBoxLayout(this);
|
|
|
|
|
toplayout->setSpacing(0);
|
|
|
|
|
toplayout->setMargin(0);
|
2010-03-09 17:40:55 +01:00
|
|
|
toplayout->addWidget(m_backButton);
|
|
|
|
|
toplayout->addWidget(m_forwardButton);
|
|
|
|
|
toplayout->addWidget(m_editorList);
|
|
|
|
|
toplayout->addWidget(m_toolBarPlaceholder, 1); // Custom toolbar stretches
|
2010-03-29 17:01:53 +02:00
|
|
|
toplayout->addWidget(m_lockButton);
|
|
|
|
|
toplayout->addWidget(m_closeButton);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
setLayout(toplayout);
|
|
|
|
|
|
2010-03-15 16:02:38 +01:00
|
|
|
// this signal is disconnected for standalone toolbars and replaced with
|
|
|
|
|
// a private slot connection
|
|
|
|
|
connect(m_editorList, SIGNAL(activated(int)), this, SIGNAL(listSelectionActivated(int)));
|
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
connect(m_editorList, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(listContextMenu(QPoint)));
|
|
|
|
|
connect(m_lockButton, SIGNAL(clicked()), this, SLOT(makeEditorWritable()));
|
2010-03-09 17:40:55 +01:00
|
|
|
connect(m_closeButton, SIGNAL(clicked()), this, SLOT(closeView()), Qt::QueuedConnection);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
ActionManager *am = ICore::instance()->actionManager();
|
|
|
|
|
connect(am->command(Constants::CLOSE), SIGNAL(keySequenceChanged()),
|
|
|
|
|
this, SLOT(updateActionShortcuts()));
|
|
|
|
|
connect(am->command(Constants::GO_BACK), SIGNAL(keySequenceChanged()),
|
|
|
|
|
this, SLOT(updateActionShortcuts()));
|
|
|
|
|
connect(am->command(Constants::GO_FORWARD), SIGNAL(keySequenceChanged()),
|
|
|
|
|
this, SLOT(updateActionShortcuts()));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
void EditorToolBar::removeToolbarForEditor(IEditor *editor)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-26 13:09:49 +01:00
|
|
|
QTC_ASSERT(editor, return)
|
2010-03-09 17:40:55 +01:00
|
|
|
disconnect(editor, SIGNAL(changed()), this, SLOT(checkEditorStatus()));
|
|
|
|
|
|
|
|
|
|
QWidget *toolBar = editor->toolBar();
|
|
|
|
|
if (toolBar != 0) {
|
|
|
|
|
if (m_activeToolBar == toolBar) {
|
|
|
|
|
m_activeToolBar = m_defaultToolBar;
|
|
|
|
|
m_activeToolBar->setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
m_toolBarPlaceholder->layout()->removeWidget(toolBar);
|
|
|
|
|
toolBar->setVisible(false);
|
|
|
|
|
toolBar->setParent(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::closeView()
|
|
|
|
|
{
|
|
|
|
|
if (!currentEditor())
|
|
|
|
|
return;
|
|
|
|
|
|
2010-03-15 16:02:38 +01:00
|
|
|
if (m_isStandalone) {
|
|
|
|
|
EditorManager *em = ICore::instance()->editorManager();
|
|
|
|
|
if (IEditor *editor = currentEditor()) {
|
|
|
|
|
em->closeEditor(editor);
|
|
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
2010-03-09 17:40:55 +01:00
|
|
|
emit closeClicked();
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-10 10:50:11 +01:00
|
|
|
void EditorToolBar::addEditor(IEditor *editor)
|
2010-03-09 17:40:55 +01:00
|
|
|
{
|
2010-03-26 13:09:49 +01:00
|
|
|
QTC_ASSERT(editor, return)
|
2010-03-09 17:40:55 +01:00
|
|
|
connect(editor, SIGNAL(changed()), this, SLOT(checkEditorStatus()));
|
|
|
|
|
QWidget *toolBar = editor->toolBar();
|
|
|
|
|
|
2010-03-15 16:02:38 +01:00
|
|
|
if (toolBar && !m_isStandalone)
|
2010-03-09 17:40:55 +01:00
|
|
|
addCenterToolBar(toolBar);
|
2010-03-09 09:42:22 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
updateEditorStatus(editor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::addCenterToolBar(QWidget *toolBar)
|
|
|
|
|
{
|
2010-03-26 13:09:49 +01:00
|
|
|
QTC_ASSERT(toolBar, return)
|
2010-03-09 17:40:55 +01:00
|
|
|
toolBar->setVisible(false); // will be made visible in setCurrentEditor
|
|
|
|
|
m_toolBarPlaceholder->layout()->addWidget(toolBar);
|
|
|
|
|
|
|
|
|
|
updateToolBar(toolBar);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::updateToolBar(QWidget *toolBar)
|
|
|
|
|
{
|
|
|
|
|
if (!toolBar)
|
|
|
|
|
toolBar = m_defaultToolBar;
|
|
|
|
|
if (m_activeToolBar == toolBar)
|
|
|
|
|
return;
|
|
|
|
|
toolBar->setVisible(true);
|
|
|
|
|
m_activeToolBar->setVisible(false);
|
|
|
|
|
m_activeToolBar = toolBar;
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-10 10:50:11 +01:00
|
|
|
void EditorToolBar::setToolbarCreationFlags(ToolbarCreationFlags flags)
|
|
|
|
|
{
|
2010-03-15 16:02:38 +01:00
|
|
|
m_isStandalone = flags & FlagsStandalone;
|
|
|
|
|
if (m_isStandalone) {
|
2010-03-12 16:47:46 +01:00
|
|
|
EditorManager *em = EditorManager::instance();
|
|
|
|
|
connect(em, SIGNAL(currentEditorChanged(Core::IEditor*)), SLOT(updateEditorListSelection(Core::IEditor*)));
|
2010-03-15 16:02:38 +01:00
|
|
|
|
|
|
|
|
disconnect(m_editorList, SIGNAL(activated(int)), this, SIGNAL(listSelectionActivated(int)));
|
|
|
|
|
connect(m_editorList, SIGNAL(activated(int)), this, SLOT(changeActiveEditor(int)));
|
2010-03-12 16:47:46 +01:00
|
|
|
}
|
2010-03-10 10:50:11 +01:00
|
|
|
}
|
2010-03-09 17:40:55 +01:00
|
|
|
|
|
|
|
|
void EditorToolBar::setCurrentEditor(IEditor *editor)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-26 13:09:49 +01:00
|
|
|
QTC_ASSERT(editor, return)
|
2010-03-09 17:40:55 +01:00
|
|
|
m_editorList->setCurrentIndex(m_editorsListModel->indexOf(editor).row());
|
|
|
|
|
|
|
|
|
|
// If we never added the toolbar from the editor, we will never change
|
|
|
|
|
// the editor, so there's no need to update the toolbar either.
|
2010-03-15 16:02:38 +01:00
|
|
|
if (!m_isStandalone)
|
2010-03-09 17:40:55 +01:00
|
|
|
updateToolBar(editor->toolBar());
|
|
|
|
|
|
|
|
|
|
updateEditorStatus(editor);
|
2010-03-09 09:42:22 +01:00
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
void EditorToolBar::updateEditorListSelection(IEditor *newSelection)
|
2010-03-09 09:42:22 +01:00
|
|
|
{
|
2010-03-12 16:47:46 +01:00
|
|
|
if (newSelection)
|
2010-03-09 09:42:22 +01:00
|
|
|
m_editorList->setCurrentIndex(m_editorsListModel->indexOf(newSelection).row());
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-15 16:02:38 +01:00
|
|
|
void EditorToolBar::changeActiveEditor(int row)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-09 09:42:22 +01:00
|
|
|
EditorManager *em = ICore::instance()->editorManager();
|
|
|
|
|
QAbstractItemModel *model = m_editorList->model();
|
2010-02-26 11:08:17 +01:00
|
|
|
const QModelIndex modelIndex = model->index(row, 0);
|
2010-03-09 09:42:22 +01:00
|
|
|
IEditor *editor = model->data(modelIndex, Qt::UserRole).value<IEditor*>();
|
2010-03-15 16:02:38 +01:00
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
if (editor) {
|
|
|
|
|
if (editor != em->currentEditor())
|
|
|
|
|
em->activateEditor(editor, EditorManager::NoModeSwitch);
|
|
|
|
|
} else {
|
2010-03-09 17:40:55 +01:00
|
|
|
//em->activateEditor(model->index(index, 0), this);
|
2010-02-26 11:08:17 +01:00
|
|
|
QString fileName = model->data(modelIndex, Qt::UserRole + 1).toString();
|
|
|
|
|
QByteArray kind = model->data(modelIndex, Qt::UserRole + 2).toByteArray();
|
|
|
|
|
editor = em->openEditor(fileName, kind, EditorManager::NoModeSwitch);
|
|
|
|
|
}
|
|
|
|
|
if (editor) {
|
|
|
|
|
m_editorList->setCurrentIndex(m_editorsListModel->indexOf(editor).row());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
void EditorToolBar::listContextMenu(QPoint pos)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
|
|
|
|
QModelIndex index = m_editorsListModel->index(m_editorList->currentIndex(), 0);
|
|
|
|
|
QString fileName = m_editorsListModel->data(index, Qt::UserRole + 1).toString();
|
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
QMenu menu;
|
2010-07-09 14:54:10 +02:00
|
|
|
menu.addAction(tr("Copy Full Path to Clipboard"));
|
2010-02-26 11:08:17 +01:00
|
|
|
if (menu.exec(m_editorList->mapToGlobal(pos))) {
|
2010-06-25 20:05:41 +02:00
|
|
|
QApplication::clipboard()->setText(QDir::toNativeSeparators(fileName));
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
void EditorToolBar::makeEditorWritable()
|
|
|
|
|
{
|
|
|
|
|
if (currentEditor())
|
|
|
|
|
ICore::instance()->editorManager()->makeEditorWritable(currentEditor());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::setCanGoBack(bool canGoBack)
|
|
|
|
|
{
|
|
|
|
|
m_goBackAction->setEnabled(canGoBack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::setCanGoForward(bool canGoForward)
|
|
|
|
|
{
|
|
|
|
|
m_goForwardAction->setEnabled(canGoForward);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::updateActionShortcuts()
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-09 17:40:55 +01:00
|
|
|
ActionManager *am = ICore::instance()->actionManager();
|
|
|
|
|
m_closeButton->setToolTip(am->command(Constants::CLOSE)->stringWithAppendedShortcut(EditorManager::tr("Close")));
|
|
|
|
|
m_goBackAction->setToolTip(am->command(Constants::GO_BACK)->action()->toolTip());
|
|
|
|
|
m_goForwardAction->setToolTip(am->command(Constants::GO_FORWARD)->action()->toolTip());
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
IEditor *EditorToolBar::currentEditor() const
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-03-09 17:40:55 +01:00
|
|
|
return ICore::instance()->editorManager()->currentEditor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::checkEditorStatus()
|
|
|
|
|
{
|
|
|
|
|
IEditor *editor = qobject_cast<IEditor *>(sender());
|
|
|
|
|
IEditor *current = currentEditor();
|
|
|
|
|
|
|
|
|
|
if (current == editor)
|
|
|
|
|
updateEditorStatus(editor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::updateEditorStatus(IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
m_lockButton->setVisible(editor != 0);
|
|
|
|
|
m_closeButton->setEnabled(editor != 0);
|
|
|
|
|
|
|
|
|
|
if (!editor || !editor->file()) {
|
|
|
|
|
m_editorList->setToolTip(QString());
|
2010-02-26 11:08:17 +01:00
|
|
|
return;
|
2010-03-09 17:40:55 +01:00
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-09 17:40:55 +01:00
|
|
|
m_editorList->setCurrentIndex(m_editorsListModel->indexOf(editor).row());
|
|
|
|
|
|
|
|
|
|
if (editor->file()->isReadOnly()) {
|
|
|
|
|
m_lockButton->setIcon(QIcon(m_editorsListModel->lockedIcon()));
|
|
|
|
|
m_lockButton->setEnabled(!editor->file()->fileName().isEmpty());
|
2010-02-26 11:08:17 +01:00
|
|
|
m_lockButton->setToolTip(tr("Make writable"));
|
|
|
|
|
} else {
|
2010-03-09 17:40:55 +01:00
|
|
|
m_lockButton->setIcon(QIcon(m_editorsListModel->unlockedIcon()));
|
2010-02-26 11:08:17 +01:00
|
|
|
m_lockButton->setEnabled(false);
|
|
|
|
|
m_lockButton->setToolTip(tr("File is writable"));
|
|
|
|
|
}
|
2010-03-09 17:40:55 +01:00
|
|
|
if (editor == currentEditor())
|
|
|
|
|
m_editorList->setToolTip(
|
|
|
|
|
currentEditor()->file()->fileName().isEmpty()
|
|
|
|
|
? currentEditor()->displayName()
|
|
|
|
|
: QDir::toNativeSeparators(editor->file()->fileName())
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorToolBar::setNavigationVisible(bool isVisible)
|
|
|
|
|
{
|
|
|
|
|
m_goBackAction->setVisible(isVisible);
|
|
|
|
|
m_goForwardAction->setVisible(isVisible);
|
|
|
|
|
m_backButton->setVisible(isVisible);
|
|
|
|
|
m_forwardButton->setVisible(isVisible);
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-09 09:42:22 +01:00
|
|
|
} // Core
|