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
|
# This file is part of the Frescobaldi project, http://www.frescobaldi.org/
#
# Copyright (c) 2008 - 2014 by Wilbert Berendsen
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU 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 St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
The tab bar with the documents.
"""
from PyQt5.QtCore import QSettings, Qt, QUrl, pyqtSignal
from PyQt5.QtWidgets import QMenu, QTabBar
import app
import icons
import document
import documentcontextmenu
import documenticon
import engrave
import util
class TabBar(QTabBar):
"""The tabbar above the editor window."""
currentDocumentChanged = pyqtSignal(document.Document)
def __init__(self, parent=None):
super(TabBar, self).__init__(parent)
self.setFocusPolicy(Qt.NoFocus)
self.setMovable(True) # TODO: make configurable
self.setExpanding(False)
self.setUsesScrollButtons(True)
self.setElideMode(Qt.ElideNone)
mainwin = self.window()
self.docs = []
for doc in app.documents:
self.addDocument(doc)
if doc is mainwin.currentDocument():
self.setCurrentDocument(doc)
app.documentCreated.connect(self.addDocument)
app.documentClosed.connect(self.removeDocument)
app.documentUrlChanged.connect(self.setDocumentStatus)
app.documentModificationChanged.connect(self.setDocumentStatus)
app.jobStarted.connect(self.setDocumentStatus)
app.jobFinished.connect(self.setDocumentStatus)
app.settingsChanged.connect(self.readSettings)
engrave.engraver(mainwin).stickyChanged.connect(self.setDocumentStatus)
mainwin.currentDocumentChanged.connect(self.setCurrentDocument)
self.currentChanged.connect(self.slotCurrentChanged)
self.tabMoved.connect(self.slotTabMoved)
self.tabCloseRequested.connect(self.slotTabCloseRequested)
self.readSettings()
def readSettings(self):
"""Called on init, and when the user changes the settings."""
s = QSettings()
self.setTabsClosable(s.value("tabs_closable", True, bool))
def documents(self):
return list(self.docs)
def addDocument(self, doc):
if doc not in self.docs:
self.docs.append(doc)
self.blockSignals(True)
self.addTab('')
self.blockSignals(False)
self.setDocumentStatus(doc)
def removeDocument(self, doc):
if doc in self.docs:
index = self.docs.index(doc)
self.docs.remove(doc)
self.blockSignals(True)
self.removeTab(index)
self.blockSignals(False)
def setDocumentStatus(self, doc):
if doc in self.docs:
index = self.docs.index(doc)
text = doc.documentName().replace('&', '&&')
if self.tabText(index) != text:
self.setTabText(index, text)
if doc.url().toLocalFile():
tooltip = util.homify(doc.url().toLocalFile())
elif not doc.url().isEmpty():
tooltip = doc.url().toString(QUrl.RemoveUserInfo)
else:
tooltip = None
self.setTabToolTip(index, tooltip)
self.setTabIcon(index, documenticon.icon(doc, self.window()))
def setCurrentDocument(self, doc):
""" Raise the tab belonging to this document."""
if doc in self.docs:
index = self.docs.index(doc)
self.blockSignals(True)
self.setCurrentIndex(index)
self.blockSignals(False)
def slotCurrentChanged(self, index):
""" Called when the user clicks a tab. """
self.currentDocumentChanged.emit(self.docs[index])
def slotTabCloseRequested(self, index):
""" Called when the user clicks the close button. """
self.window().closeDocument(self.docs[index])
def slotTabMoved(self, index_from, index_to):
""" Called when the user moved a tab. """
doc = self.docs.pop(index_from)
self.docs.insert(index_to, doc)
def nextDocument(self):
""" Switches to the next document. """
index = self.currentIndex() + 1
if index == self.count():
index = 0
self.setCurrentIndex(index)
def previousDocument(self):
index = self.currentIndex() - 1
if index < 0:
index = self.count() - 1
self.setCurrentIndex(index)
def contextMenuEvent(self, ev):
index = self.tabAt(ev.pos())
if index >= 0:
self.contextMenu().exec_(self.docs[index], ev.globalPos())
def contextMenu(self):
try:
return self._contextMenu
except AttributeError:
import documentcontextmenu
self._contextMenu = documentcontextmenu.DocumentContextMenu(
self.window())
return self._contextMenu
|