|
|
|
removeToolBar(self,
objname=None)
Overrides the base class's QtGui.QMainWindow.removeToolBar method to allow
for removal of a single toolbar based on the toolbar's object name
or, if objname is None , removal of all the
window's toolbars. |
|
|
|
addToolBars(self,
toolbars)
Add toolbars to the sequence viewer. |
|
|
|
setToolBars(self,
toolbars)
Deletes all window toolbars and sets them to the new
toolbars |
|
|
|
|
|
addUndoRedoToolBar(self,
area=QtCore.Qt.TopToolBarArea)
Adds a widget that handles undo/redo operations to the area indicated
(default: top). |
|
|
|
|
|
addAlignToolBar(self,
area=QtCore.Qt.BottomToolBarArea)
Adds a toolbar to the area indicated (default: bottom) that contains
all of the actions for alignment. |
|
|
|
addConsensusToolBar(self,
area=QtCore.Qt.BottomToolBarArea)
Adds a ConsensusToolBar widget to the area indicated
(default: bottom) that contains all of the actions for consensus
visualization. |
|
|
|
|
|
setAntibodyNumberingToolBarVisible(self,
show=True) |
|
|
|
WINDOW_TITLE = 'Sequence Viewer'
|
|
IMPORT_TOOLBAR = 'import_toolbar'
|
|
UNDO_REDO_TOOLBAR = 'undo_redo_toolbar'
|
|
FIND_TOOLBAR = 'find_toolbar'
|
|
ALIGN_TOOLBAR = 'align_toolbar'
|
|
CONSENSUS_TOOLBAR = 'consensus_toolbar'
|
|
ANTIBODY_NUM_TOOLBAR = 'antibody_numbering_toolbar'
|
|
BREAK_TOOLBAR = 'break_toolbar'
|
|
DEFAULT_TOOLBARS = [IMPORT_TOOLBAR, UNDO_REDO_TOOLBAR, FIND_TO...
|