-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtxtedit.py
164 lines (140 loc) · 4.97 KB
/
txtedit.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
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
import wx,json
from os import path,mkdir
class File:
def __init__(self,name = 'untitled.txt',dirname='',isSaved = False):
try:
mkdir('./assets')
except:
pass
try:
mkdir('./temp')
self.fileName = name
self.dirName = dirname
self.path = path.join(self.dirName,self.fileName)
self.isSaved = isSaved
# @property
# def fileName(self):
# return self.__fileName
# @fileName.setter
# def fileName(self,x):
# self.__fileName = x
# @property
# def path(self):
# return self.__path
# @path.setter
# def path(self,x):
# self.__path = x
class MyWindow(wx.Frame,File):
def __init__(self,parent,title):
#initialising baseclass
wx.Frame.__init__(self,parent,title=title,size=(800,600))
File.__init__(self)
#Creating Multiline Textbox
self.control = wx.TextCtrl(self,style =wx.TE_MULTILINE)
self.title = title
#Creates StatusBar
self.CreateStatusBar()
#Create Menu which holds menu items such as new,save,open etc.
filemenu = wx.Menu()
#Creates New option
menuNew = filemenu.Append(wx.ID_NEW,'&New','Creates new file')
#filemenu.AppendSeparator()
#Creates Open option
menuOpen = filemenu.Append(wx.ID_OPEN,'&Open','Opens your Previous work')
#filemenu.AppendSeparator()
#Creates Save option
menuSave = filemenu.Append(wx.ID_SAVE,'&Save','Saves your current work in file')
#filemenu.AppendSeparator()
#Create Saveas option
menuSaveas = filemenu.Append(wx.ID_SAVEAS,'&Save as','Save your work with differnt name or place')
#Creates About option
menuAbout = filemenu.Append(wx.ID_ABOUT,'&About','Information about the program')
#filemenu.AppendSeparator()
#creates Exit option
menuExit = filemenu.Append(wx.ID_EXIT,'&Exit',"Terminate the program")
#Genrates Menubar add our file menu in it
menuBar = wx.MenuBar()
menuBar.Append(filemenu,'&File')
self.SetMenuBar(menuBar)
#Binding Events to all options
self.Bind(wx.EVT_MENU,self.OnNew,menuNew)
self.Bind(wx.EVT_MENU,self.OnOpen,menuOpen)
self.Bind(wx.EVT_MENU,self.OnSave,menuSave)
self.Bind(wx.EVT_MENU,self.OnSaveas,menuSaveas),
self.Bind(wx.EVT_MENU, self.OnAbout,menuAbout)
self.Bind(wx.EVT_MENU, self.OnExit,menuExit)
self.Show(True)
def saveState(self):
with open('./state','r') as f:
data = f.read()
if data != '':
data = json.loads(data+'}')
if self.path in data:
data[self.path]={'fileName':self.fileName,'dirName':self.dirName,'isSaved':self.isSaved,'conFileName':'temp.'+self.fileName}
string = json.dumps(data)
with open('./state','w') as f:
f.write(string[:-1])
with open(('./temp/temp.'+self.fileName),'w') as f:
f.write(self.control.GetValue())
else:
string = json.dumps({self.path:{'fileName':self.fileName,'dirName':self.dirName,'isSaved':self.isSaved,'conFileName':('temp.'+self.fileName)}})
with open('./state','a') as f:
f.write(','+string[1:-1])
with open(('./temp/temp.'+self.fileName[:-4]),'w') as f:
f.write(self.control.GetValue())
else:
string = json.dumps({self.path:{'fileName':self.fileName,'dirName':self.dirName,'isSaved':self.isSaved,'conFileName':'temp.'+self.fileName}})
with open('./state','a') as f:
f.write('{"0":"0"')
f.write(','+string[1:-1])
with open(('./temp/temp.'+self.fileName),'w') as f:
f.write(self.control.GetValue())
def OnNew(self,e):
self.saveState()
File.__init__(self)
self.SetTitle(self.title)
self.control.SetValue('')
def OnOpen(self,e):
dlg = wx.FileDialog(self,'Choose a file','','',"TEXT files (.txt)|*.txt",wx.FD_OPEN)
if dlg.ShowModal() == wx.ID_OK:
self.saveState()
File.__init__(self,dlg.GetFilename(),dlg.GetDirectory(),True)
with open(self.path,'r') as f:
s = f.read()
self.control.SetValue(s)
self.SetTitle(' '+self.fileName+' - '+self.title)
dlg.Destroy()
def OnSave(self,e):
if self.isSaved:
self.SetTitle(' '+self.fileName+' - '+self.title)
print(self.path)
with open(self.path,'w')as f:
f.write(self.control.GetValue())
else:
dlg = wx.FileDialog(self,'choose a directory','','',"TEXT files (*.txt)|*.txt",wx.FD_SAVEwx.FD_OVERWRITE_PROMPT)
if dlg.ShowModal() == wx.ID_OK:
self.saveState()
File.__init__(dlg.GetFilename(),dlg.GetDirectory(),True)
self.SetTitle(' '+self.fileName+' - '+self.title)
with open(self.path,'w') as f:
f.write(self.control.GetValue())
dlg.Destroy()
def OnSaveas(self,e):
dlg = wx.FileDialog(self,'choose a directory',self.dirName,self.fileName,style = wx.FD_SAVE|wx.FD_OVERWRITE_PROMPT)
if dlg.ShowModal() == wx.ID_OK:
self.saveState()
File.__init__(self,dlg.GetFilename(),dlg.GetDirectory(),True)
self.SetTitle(' '+self.fileName+' - '+self.title)
with open(self.path,'w') as f:
f.write(self.control.GetValue())
dlg.Destroy()
def OnAbout(self,e):
dlg = wx.MessageDialog(self,'A Small TE','About',wx.OK)
dlg.ShowModal()
dlg.Destroy()
def OnExit(self,e):
self.saveState()
self.Close(True)
app = wx.App(False)
frame = MyWindow(None,"SuperEditor v0.01")
app.MainLoop()