2012-03-02 02:55:32 +00:00
|
|
|
from pyqtgraph.Qt import QtGui
|
|
|
|
from pyqtgraph.graphicsItems.GraphicsLayout import GraphicsLayout
|
2012-05-11 22:05:41 +00:00
|
|
|
from .GraphicsView import GraphicsView
|
2012-03-02 02:55:32 +00:00
|
|
|
|
|
|
|
__all__ = ['GraphicsLayoutWidget']
|
|
|
|
class GraphicsLayoutWidget(GraphicsView):
|
|
|
|
def __init__(self, parent=None, **kargs):
|
|
|
|
GraphicsView.__init__(self, parent)
|
|
|
|
self.ci = GraphicsLayout(**kargs)
|
2012-06-18 17:50:44 +00:00
|
|
|
for n in ['nextRow', 'nextCol', 'nextColumn', 'addPlot', 'addViewBox', 'addItem', 'getItem', 'addLabel', 'addLayout', 'addLabel', 'addViewBox', 'removeItem', 'itemIndex', 'clear']:
|
2012-03-02 02:55:32 +00:00
|
|
|
setattr(self, n, getattr(self.ci, n))
|
|
|
|
self.setCentralItem(self.ci)
|