blob: ea1122ca076227ec5cefc3a34e42c51aae91877d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import re, sys, traceback
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import ui, phys, file
system = phys.System()
class Window(QMainWindow):
def __init__(self):
super().__init__()
self.statusBar()
self.setWindowTitle("Polarizzazione italiana")
ui.setup(self, system)
app = QApplication(sys.argv)
win = Window()
sys.exit(app.exec_())
|