MCPcopy Create free account
hub / github.com/alpha2phi/python-apps / createProgressBar

Method createProgressBar

gui-apps/app_pyqt5.py:182–189  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

180 self.bottomRightGroupBox.setLayout(layout)
181
182 def createProgressBar(self):
183 self.progressBar = QProgressBar()
184 self.progressBar.setRange(0, 10000)
185 self.progressBar.setValue(0)
186
187 timer = QTimer(self)
188 timer.timeout.connect(self.advanceProgressBar)
189 timer.start(1000)
190
191
192if __name__ == '__main__':

Callers 1

__init__Method · 0.95

Calls 2

connectMethod · 0.45
startMethod · 0.45

Tested by

no test coverage detected