Another fixed bug introduced to clear_poly() in previous commit. Added process widget.

This commit is contained in:
jpcaram
2015-01-30 18:10:06 -05:00
parent f92255b8f9
commit 87fdf0a581
4 changed files with 141 additions and 4 deletions

20
sandbox/process_widget.py Normal file
View File

@@ -0,0 +1,20 @@
import sys
from PyQt4.QtGui import *
app = QApplication(sys.argv)
top = QWidget()
halign = QHBoxLayout()
top.setLayout(halign)
busy_anim = QMovie("../share/busy16.gif")
busy_anim.start()
busy_anim_label = QLabel()
busy_anim_label.setMovie(busy_anim)
halign.addWidget(busy_anim_label)
message_label = QLabel("Processing...")
halign.addWidget(message_label)
top.show()
sys.exit(app.exec_())