pyqtgraph/doc/source/widgets/make
Luke Campagnola af59296231 Reorganized directory structure to be more standard
Started new SVG exporter
Merged updates from ACQ4
2012-12-25 00:43:31 -05:00

32 lines
465 B
Plaintext

files = """CheckTable
ColorButton
DataTreeWidget
FileDialog
GradientWidget
GraphicsLayoutWidget
GraphicsView
HistogramLUTWidget
JoystickButton
MultiPlotWidget
PlotWidget
ProgressDialog
RawImageWidget
SpinBox
TableWidget
TreeWidget
VerticalLabel""".split('\n')
for f in files:
print f
fh = open(f.lower()+'.rst', 'w')
fh.write(
"""%s
%s
.. autoclass:: pyqtgraph.%s
:members:
.. automethod:: pyqtgraph.%s.__init__
""" % (f, '='*len(f), f, f))