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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/env python
#
# Copyright (c) 2010 <shadytyrant@gmail.com>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
 
import wx
from math import *
 
#----- Main Frame -----------------------------------------------------
 
class PyCalc(wx.Frame):
 
    def __init__(self*args, **kwds):
        '''MyFrame init method: Calls methods to create GUI'''
 
        kwds["style"] = wx.DEFAULT_FRAME_STYLE
        wx.Frame.__init__(self*args, **kwds)
 
        self.CreateMenuBar()
        self.CreateMainWindow()
        self.SetProperties()
        self.DoLayout()
        self.BindEvents()
.
.
.
    #----- Event Handlers -----------------------------------------------------
 
    def OnEqualsButtonClick(self, event):
        '''Try to evaluate the solution of the given algorithem'''
 
        try:
            equation = self.TextBox.GetValue()
            solution = str(eval(equation))
            self.TextBox.SetValue(solution)
 
            status_text = "Solution: %s" % solution
            self.PyCalc_statusbar.SetStatusText(status_text)
        except:
            self.PyCalc_statusbar.SetStatusText("Invalid Equation Syntax")
 
 
    def OnQuitButtonClick(self, event):
        '''Exit Application'''
 
        self.Close()
        event.Skip()
 
    def OnCopyButtonClick(self, event):
        '''Copy all the text in TextBox to clipboard'''
 
        self.TextBox.SelectAll()
        self.TextBox.Copy()
 
    def OnPasteButtonClick(self, event):
        '''Paste text from clipboard to TextBox'''
        self.TextBox.Paste()
 
    def OnPowButtonClick(self, event):
        self.TextBox.AppendText("pow(,)")
 
    def OnSinButtonClick(self, event):
        self.TextBox.AppendText("sin()")
 
    def OnCosButtonClick(self, event):
        self.TextBox.AppendText("cos()")
 
    def OnTanButtonClick(self, event):
        self.TextBox.AppendText("tan()")
 
    def OnFloorButtonClick(self, event):
        self.TextBox.AppendText("floor()")
 
    def OnFactorialButtonClick(self, event):
        self.TextBox.AppendText("factorial()")
 
    def OnSqrtButtonClick(self, event):
        self.TextBox.AppendText("sqrt()")
 
    def OnHyptButtonClick(self, event):
        self.TextBox.AppendText("hypt()")
 
    def OnPiButtonClick(self, event):
        self.TextBox.AppendText("pi")
 
    def OnEButtonClick(self, event):
        self.TextBox.AppendText("e")
 
    def OnAboutButtonClicked(self, event):
        '''Pop up about dialog'''
 
        AboutDialog = AboutDialogBox(None-1'About dialog box')
        AboutDialog.Show()
 
 
    def OnBackButtonClick(self, event):
        '''Delete last char'''
 
        text = self.TextBox.GetValue()
        self.TextBox.SetValue(text[:-1])
 
    def OnClearButtonClick(self, event):
        '''Delete entire TextBox'''
        self.TextBox.SetValue("")
 
    def OnStartBracketButtonClick(self, event):
        self.TextBox.AppendText("(")
 
    def OnEndBracketButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText(")")
 
    def OnAddButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("+")
 
    def OnMinusButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("-")
 
    def OnDivideButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("/")
 
    def OnMultiplyButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("*")
 
    def OnDecimalButtonClick(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText(".")
 
 
    def OnButton0Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("0")
 
    def OnButton1Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("1")
 
    def OnButton2Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("2")
 
    def OnButton3Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("3")
 
    def OnButton4Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("4")
 
    def OnButton5Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("5")
 
    def OnButton6Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("6")
 
    def OnButton7Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("7")
 
    def OnButton8Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("8")
 
    def OnButton9Click(self, event)# wxGlade: MyFrame.<event_handler>
        self.TextBox.AppendText("9")