aboutsummaryrefslogtreecommitdiffstats
path: root/nc_files/filtertest-gui.py
blob: 267cd73509007feed1ec0db51ae08c68b46fef1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import sys
from PyQt5.QtWidgets import (QApplication, QDialog, QDialogButtonBox,
                            QVBoxLayout,QDialogButtonBox)
from PyQt5.QtCore import QTimer, Qt

class CustomDialog(QDialog):

    def __init__(self, *args, **kwargs):
        super(CustomDialog, self).__init__(*args, **kwargs)

        self.setWindowFlags(self.windowFlags() | Qt.WindowStaysOnTopHint)
        self.setWindowTitle("Filter-with-GUI Test")

        QBtn = QDialogButtonBox.Cancel

        self.buttonBox = QDialogButtonBox(QBtn)
        self.buttonBox.rejected.connect(self.reject)

        self.layout = QVBoxLayout()
        self.layout.addWidget(self.buttonBox)
        self.setLayout(self.layout)

        self._percentDone = 0

        self._timer = QTimer()
        self._timer.timeout.connect(self.process)
        self._timer.start(100)

    def reject(self):
        # This provides an error message
        print('You asked to cancel before finished.', file=sys.stderr)
        raise SystemExit(1)

    def process(self):
        try:
            # output a line of gcode
            print('(MSG, made line of code : {})'.format(self._percentDone), file=sys.stdout)

            # keep track of progress
            self._percentDone +=1

            # update progress
            print('FILTER_PROGRESS={}'.format(self._percentDone), file=sys.stderr)

            # if done end with no error/error message
            if self._percentDone == 100:
                print("m2")
                raise SystemExit(0)

        except Exception as e:
            # This provides an error message
            print(('Something bad happened:',e), file=sys.stderr)
            # this signals the error message should be shown
            raise SystemExit(1)



if __name__ == "__main__":

    app = QApplication(sys.argv)
    w = CustomDialog()
    w.show()
    sys.exit( app.exec_() )

bues.ch cgit interface