pylot/testUIcomponents.py

18 lines
360 B
Python
Raw Normal View History

2014-10-30 13:38:41 +01:00
#!/usr/bin/env python
2015-10-19 05:32:10 +02:00
# -*- coding: utf-8 -*-
2014-10-30 13:38:41 +01:00
import sys, time
from PySide.QtGui import QApplication
from pylot.core.util.widgets import FilterOptionsDialog, PropertiesDlg, HelpForm
dialogs = [FilterOptionsDialog, PropertiesDlg, HelpForm]
app = QApplication(sys.argv)
for dlg in dialogs:
2015-10-19 05:32:10 +02:00
win = dlg()
win.show()
time.sleep(1)
win.destroy()