-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
119 lines (96 loc) · 2.99 KB
/
app.py
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import sys
from PySide2.QtWidgets import QMainWindow, QApplication
from matplotlib.backends.backend_qt5agg import (
FigureCanvasQTAgg as FigureCanvas,
NavigationToolbar2QT as NavigationToolbar,
)
from PySide2.QtWidgets import (
QApplication,
QWidget,
QMainWindow,
QVBoxLayout,
QMessageBox,
)
from custom_errors import (
UnsupportedOperand,
minMaxError,
EmptyInput,
IncorrectVariable,
DivisionByZero,
)
from function_input import FunctionInput
from helper import parse_input
from canvas import PlotCanvas
from helper import CORRECT_INPUT_PROMPT
class MainWindow(QMainWindow):
"""
Main window of the application
...
Attributes
----------
input_function : FunctionInput
input widget for the function
plot_button : QPushButton
button to plot the function when pressed
canvas : PlotCanvas
matplotlib canvas to plot the function
tool_bar : NavigationToolbar
matplotlib toolbar to add zooming and panning functionality
last_alert : str
holds the last alert message if any
Methods
-------
alert(message):
shows a warning message box with the given message
plot():
plots the function on the canvas
"""
def __init__(self):
super().__init__()
self.setWindowTitle("Plotter")
self.input_function = FunctionInput()
self.input_function.plot_button.clicked.connect(self.plot)
self.canvas = PlotCanvas(self, width=5, height=4, dpi=100)
self.tool_bar = NavigationToolbar(self.canvas, self)
layout = QVBoxLayout()
layout.addWidget(self.input_function)
layout.addWidget(self.tool_bar)
layout.addWidget(self.canvas)
widget = QWidget()
widget.setLayout(layout)
self.setCentralWidget(widget)
self.last_alert = None
def alert(self, message):
self.last_alert = message
alert = QMessageBox.warning(
self, "Error", message, buttons=QMessageBox.Ok, defaultButton=QMessageBox.Ok
)
def plot(self):
try:
function = parse_input(self.input_function.input_dialog.text())
self.canvas.plot(
function,
self.input_function.input_dialog.text(),
self.input_function.min_x_input.value(),
self.input_function.max_x_input.value(),
)
except minMaxError as e:
self.alert(str(e))
return
except UnsupportedOperand as e:
self.alert(str(e))
return
except SyntaxError:
self.alert("Invalid mathermatical expression\n" + CORRECT_INPUT_PROMPT)
return
except ZeroDivisionError:
self.alert("Cant divide by Zero")
return
except Exception as error:
self.alert(str(error))
return
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec_()