ViewManager/ViewManager.py

changeset 6072
059c8f981ef4
parent 6053
c2d1566692d3
child 6097
bf18415da0c7
child 6116
f3d3c996c193
equal deleted inserted replaced
6070:84e868de5a24 6072:059c8f981ef4
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 13
14 from PyQt5.QtCore import pyqtSignal, QSignalMapper, QTimer, \ 14 from PyQt5.QtCore import pyqtSignal, pyqtSlot, QSignalMapper, QTimer, \
15 QFileInfo, QRegExp, Qt, QCoreApplication 15 QFileInfo, QRegExp, Qt, QCoreApplication
16 from PyQt5.QtGui import QColor, QKeySequence, QPalette, QPixmap 16 from PyQt5.QtGui import QColor, QKeySequence, QPalette, QPixmap
17 from PyQt5.QtWidgets import QLineEdit, QToolBar, QWidgetAction, QDialog, \ 17 from PyQt5.QtWidgets import QLineEdit, QToolBar, QWidgetAction, QDialog, \
18 QApplication, QMenu, QComboBox, QWidget 18 QApplication, QMenu, QComboBox, QWidget
19 from PyQt5.Qsci import QsciScintilla 19 from PyQt5.Qsci import QsciScintilla
476 """ 476 """
477 Public method used to split the current view. 477 Public method used to split the current view.
478 """ 478 """
479 pass 479 pass
480 480
481 @pyqtSlot()
481 def removeSplit(self, index=-1): 482 def removeSplit(self, index=-1):
482 """ 483 """
483 Public method used to remove the current split view or a split view 484 Public method used to remove the current split view or a split view
484 by index. 485 by index.
485 486

eric ide

mercurial