-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm1.cs
254 lines (233 loc) · 7.15 KB
/
Form1.cs
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.Text.RegularExpressions;
namespace Notepad
{
public partial class NotePad : Form
{
string CurrentFile;
string ProjectName;
bool modified = false;
public NotePad()
{
InitializeComponent();
Timer tmr = new Timer();
tmr.Interval = 150;
tmr.Tick += Update;
tmr.Start();
CurrentFile = null;
}
private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e)
{
}
//Font Button
private void fontToolStripMenuItem_Click(object sender, EventArgs e)
{
FontDialog fontDialog = new FontDialog();
if (fontDialog.ShowDialog() == DialogResult.OK)
{
textBox1.Font = new Font(fontDialog.Font.Name, fontDialog.Font.Size, fontDialog.Font.Style);
}
}
private void editToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
}
private void Update(object sender, EventArgs e)
{
Console.WriteLine("currentfile: " + CurrentFile + "\n" + "projectname: " + ProjectName + "\n" + "Name: " + Text);
if (Clipboard.ContainsText())
{
PasteButton.Enabled = true;
}
else
{
PasteButton.Enabled = false;
}
if (CurrentFile == "" || CurrentFile == null)
{
ProjectName = "Untitled";
}
else
{
ProjectName = CurrentFile;
}
if (textBox1.Text == "")
{
modified = false;
}
else
{
modified = true;
}
if (modified)
{
Text = ProjectName + "*" + " - " + "Notepad";
}
else
{
Text = ProjectName + " - " + "Notepad";
}
}
private void PasteButton_Click(object sender, EventArgs e)
{
textBox1.Text += Clipboard.GetText();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void closeToolStripMenuItem_Click(object sender, EventArgs e)
{
if (modified)
{
DialogResult dialog = SaveDialog("Notepad", "Do you want to save changes to " + ProjectName + "?");
if (dialog == DialogResult.Yes)
{
WriteToFile(CurrentFile, ReadLines());
NewFile();
}
if (dialog == DialogResult.No)
{
NewFile();
}
}
else
{
CurrentFile = null;
}
}
private void OpenButton_Click(object sender, EventArgs e)
{
OpenFileDialog fileDialog = new OpenFileDialog();
fileDialog.Filter = "Text Files|*.txt";
if (fileDialog.ShowDialog() == DialogResult.OK)
{
CurrentFile = fileDialog.FileName;
OpenFile(CurrentFile);
}
}
public void SetFile(string[] textData)
{
textBox1.Text = "";
foreach (string line in textData)
{
textBox1.Text += line + "\r\n";
}
}
public void WriteToFile(string path, string[] data)
{
File.WriteAllLines(path, data);
}
public string[] ReadLinesFromFile(string filePath)
{
List<string> lines = new List<string>();
foreach (string line in File.ReadLines(filePath))
{
lines.Add(line);
}
return lines.ToArray();
}
public string[] ReadLines()
{
string[] lines = Regex.Split(textBox1.Text, "\r\n|\r|\n");
return lines;
}
public void NewFile()
{
textBox1.Text = "";
CurrentFile = null;
}
public void OpenFile(string filePath)
{
string[] lines = ReadLinesFromFile(filePath);
SetFile(lines);
}
public void SaveFile()
{
if (CurrentFile != null)
{
WriteToFile(CurrentFile, ReadLines());
}
else
{
SaveFileAs();
}
}
public void SaveFileDirect()
{
SaveFileAs();
}
public void SaveFileAs()
{
SaveFileDialog fileDialog = new SaveFileDialog();
fileDialog.Filter = "Text Files|*.txt";
if (fileDialog.ShowDialog() == DialogResult.OK)
{
WriteToFile(fileDialog.FileName, ReadLines());
CurrentFile = fileDialog.FileName;
}
}
private DialogResult SaveDialog(string dialogTitle, string dialogMessage)
{
DialogResult messageBox = MessageBox.Show(null, dialogMessage, dialogTitle, MessageBoxButtons.YesNoCancel, MessageBoxIcon.None, MessageBoxDefaultButton.Button1);
return messageBox;
}
private void ShowDialog(string dialogTitle, string dialogMessage)
{
MessageBox.Show(dialogMessage, dialogTitle, MessageBoxButtons.OK, MessageBoxIcon.None);
}
private void ShowWarning(string dialogTitle, string dialogMessage)
{
MessageBox.Show(dialogMessage, dialogTitle, MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
private void ShowError(string dialogTitle, string dialogMessage)
{
MessageBox.Show(dialogMessage, dialogTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
private void SaveButton_Click(object sender, EventArgs e)
{
if (CurrentFile != null)
{
SaveFile();
}
else
{
SaveFileAs();
OpenFile(CurrentFile);
}
}
private void SaveAsButton_Click(object sender, EventArgs e)
{
SaveFile();
OpenFile(CurrentFile);
}
private void NotePad_FormClosed(object sender, FormClosedEventArgs e)
{
}
private void NotePad_FormClosing(object sender, FormClosingEventArgs e)
{
if (modified)
{
DialogResult dialog = SaveDialog("Notepad", "Do you want to save changes to " + ProjectName + "?");
if (dialog == DialogResult.Yes)
{
SaveFile();
}
if (dialog == DialogResult.Cancel)
{
e.Cancel = true;
}
}
}
}
}