-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotepad.java
515 lines (424 loc) · 11.3 KB
/
Notepad.java
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import java.awt.print.*;
import java.util.*;
public class notepad extends JFrame implements ActionListener,WindowListener
{
/**
*
*/
private static final long serialVersionUID = 2877285696950002901L;
int f = -1;
int gposcut = 0;
String deltree="";
String text="";
PrinterJob printme = PrinterJob.getPrinterJob();
MenuBar mb = new MenuBar();
Menu file = new Menu("File");
Menu edit = new Menu("Edit");
Menu search = new Menu("Search");
Menu help = new Menu("Help");
MenuItem news = new MenuItem("New");
MenuItem open = new MenuItem("Open");
MenuItem save = new MenuItem("Save");
MenuItem saveas = new MenuItem("Save As");
MenuItem pgset = new MenuItem("Page Setup");
MenuItem print = new MenuItem("Print");
MenuItem exit = new MenuItem("Exit");
MenuItem undo = new MenuItem("Undo");
MenuItem cut = new MenuItem("Cut");
MenuItem copy = new MenuItem("Copy");
MenuItem paste = new MenuItem("Paste");
MenuItem delete = new MenuItem("Delete");
MenuItem selectall = new MenuItem("Select All");
MenuItem td = new MenuItem("Time/Date");
MenuItem font = new MenuItem("Set Font");
CheckboxMenuItem wordrap = new CheckboxMenuItem("Word Rap");
MenuItem find = new MenuItem("Find...");
MenuItem findnext = new MenuItem("Find Next");
MenuItem about = new MenuItem("About");
MenuItem feat = new MenuItem("Features");
String flag = "n";
JPanel p1 = new JPanel();
TextArea area = new TextArea(5,4);
Font ver = new Font("Verdana",0,14);
int gposdel=0;
int gpos = 0;
int spos = 0;
String searchall;
String filee = "";
String directory = "";
Date d = new Date();
GregorianCalendar g = new GregorianCalendar();
String stime;
int hour=0;
public void date()
{
hour = g.get(Calendar.HOUR);
if (hour == 0)
{
hour = 12;
}
g.setTime(d);
if ( g.get(Calendar.AM_PM) == 0 )
{
stime = hour + ":" + g.get(Calendar.MINUTE) + " AM " + (g.get(Calendar.MONTH)+1) + "/" + g.get(Calendar.DATE) + "/" + g.get(Calendar.YEAR);
}
if ( g.get(Calendar.AM_PM) == 1 )
{
stime = hour + ":" + g.get(Calendar.MINUTE) + " PM " + (g.get(Calendar.MONTH)+1) + "/" + g.get(Calendar.DATE) + "/" + g.get(Calendar.YEAR);
}
System.out.println("The Date/Time Is : " + stime);
}
public notepad()
{
setTitle("Chandrapad Developed By CHANDRASHEKHAR AZAD");
setSize(600,400);
setVisible(true);
date();
file.add(news);
file.add(open);
file.add(save);
file.add(saveas);
file.addSeparator();
file.add(pgset);
file.add(print);
file.addSeparator();
file.add(exit);
news.addActionListener(this);
open.addActionListener(this);
save.addActionListener(this);
saveas.addActionListener(this);
pgset.addActionListener(this);
print.addActionListener(this);
exit.addActionListener(this);
edit.add(undo);
// edit.addSeparator();
edit.add(cut);
edit.add(copy);
edit.add(paste);
edit.add(delete);
// edit.addSeparator();
edit.add(selectall);
edit.add(td);
// edit.addSeparator();
edit.add(wordrap);
edit.add(font);
undo.addActionListener(this);
cut.addActionListener(this);
copy.addActionListener(this);
paste.addActionListener(this);
delete.addActionListener(this);
selectall.addActionListener(this);
td.addActionListener(this);
wordrap.addActionListener(this);
/*wordrap.addItemListener(new ItemListener(){
@Override
public void itemStateChanged(ItemEvent arg0) {
// TODO Auto-generated method stub
}
});*/
search.add(find);
search.add(findnext);
find.addActionListener(this);
findnext.addActionListener(this);
help.add(feat);
//help.addSeparator();
help.add(about);
about.addActionListener(this);
feat.addActionListener(this);
mb.add(file);
mb.add(edit);
mb.add(search);
mb.add(help);
setMenuBar(mb);
area.setFont(ver);
Container c = getContentPane();
c.add(area);
addWindowListener(this);
}
public void windowClosing(WindowEvent we)
{
System.out.println("Thank You For Using ChandraPAD");
System.exit(0);
}
public void windowIconified(WindowEvent we)
{
}
public void windowDeiconified(WindowEvent we)
{
}
public void windowClosed(WindowEvent we)
{
}
public void windowDeactivated(WindowEvent we)
{
}
public void windowActivated(WindowEvent we)
{
}
public void windowOpened(WindowEvent we)
{
}
@SuppressWarnings("deprecation")
public void actionPerformed(ActionEvent e)
{
if (e.getSource() == wordrap )
{
System.out.println(wordrap.getState());
/*boolean agd = wordrap.getState();
if (agd.equals(true))
{
System.out.println(wordrap.getState());
}*/
}
area.setBackground(Color.WHITE);
area.setForeground(Color.black);
area.setEditable(true);
FileDialog fdopen = new FileDialog(this,"Open",FileDialog.LOAD);
FileDialog fdsave = new FileDialog(this,"Save",FileDialog.SAVE);
if (e.getSource() == feat)
{
String msg = "WELCOME TO ChandraPAD DEVELOPED BY CHANDRASHEKHAR AZAD" + "\n" + "\n" + "ChandraPAD is identical to the 'NOTEPAD' provided by 'WINDOWS'" + "\n" + "\n" + "Email all queries to : [email protected]";
area.setText(msg);
area.setForeground(Color.black);
area.setEditable(false);
}
if (e.getSource() == td)
{
String text2=area.getSelectedText();
if (text2.equals(""))
{
gposdel = area.getCaretPosition();
area.insertText(stime,gposdel);
f=3;
}
else
{
gposdel = area.getCaretPosition();
int hg = area.getSelectionStart();
int gh = area.getSelectionEnd();
area.replaceRange(stime,hg,gh);
f=3;
}
}
if(e.getSource() == undo)
{
switch(f)
{
case 4:
{
//gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
area.insert(stime,gposdel);
f = 3;
break;
}
case 3:
{
//gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
area.replaceRange("",gposdel,gposdel+stime.length());
f = 4;
break;
}
case 1:
{
//gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
area.insert(text,gposdel);
f = 2;
break;
}
case 2:
{
//gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
area.replaceRange("",gposdel,gposdel+text.length());
f = 1;
break;
}
case -1:
{
//gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
//area.replaceRange("",gposdel,gposdel+deltree.length());
//area.replaceRange("",gposcut,gposcut+text.length());
f = 1;
text = area.getText();
area.setText("");
break;
}
}
}
if(e.getSource() == news)
{
area.setText("");
}
if(e.getSource() == print)
{
try
{
printme.print();
}
catch(Exception ew)
{}
}
if(e.getSource() == pgset)
{
printme.printDialog();
}
if(e.getSource() == selectall)
{
area.selectAll();
}
if(e.getSource() == about)
{
JOptionPane.showMessageDialog(null,"Chandrapad Vs.1.1 Developed By CHANDRASHEKHAR AZAD" + "\n" + "Email me at - [email protected]");
}
if (e.getSource() == exit)
{
System.out.println("Thank You For Using Chandrapad");
System.exit(0);
}
if (e.getSource() == save)
{
if (flag.equals("y"))
{
File delme = new File(directory,filee);
String a = directory;
String b = filee;
try
{
delme.delete();
}
catch(SecurityException eeme)
{
System.out.println(eeme);
}
File filesaveit = new File(a,b);
try
{
RandomAccessFile ram = new RandomAccessFile(a+b,"rw");
//ram.seek(ram.length());
String msh = area.getText();
ram.writeBytes(msh);
ram.close();
}
catch(Exception rt)
{
System.out.println(rt);
}
}
if (flag.equals("n"))
{
fdsave.setVisible(true);
String dir = fdsave.getDirectory();
String fil = fdsave.getFile();
File filesave = new File(dir,fil);
try
{
RandomAccessFile ram = new RandomAccessFile(fdsave.getDirectory()+fdsave.getFile()+".txt","rw");
ram.seek(ram.length());
String msh = area.getText();
ram.writeBytes(msh);
ram.close();
}
catch(Exception rt)
{
System.out.println(rt);
}
}
}
if (e.getSource()==open)
{
flag = "y";
fdopen.setVisible(true);
filee = fdopen.getFile();
directory = fdopen.getDirectory();
File openfile = new File(directory,filee);
try
{
RandomAccessFile ram2 = new RandomAccessFile(openfile,"rw");
long size = ram2.length();
String msg = "";
for(int counter=0;counter<size;counter++)
{
char words = (char)ram2.read();
msg = msg + words;
}
area.setText(msg);
}
catch(Exception e1)
{
System.out.println(e1);
}
}
if (e.getSource() == saveas)
{
fdsave.setVisible(true);
String dir = fdsave.getDirectory();
String fil = fdsave.getFile();
File filesave = new File(dir,fil);
try
{
RandomAccessFile ram = new RandomAccessFile(fdsave.getDirectory()+fdsave.getFile()+".txt","rw");
ram.seek(ram.length());
String msh = area.getText();
ram.writeBytes(msh);
ram.close();
}
catch(Exception rt)
{
System.out.println(rt);
}
}
if(e.getSource() == copy)
{
text = area.getSelectedText();
}
if(e.getSource() == paste)
{
if (text.equals(""))
{
gposdel = area.getCaretPosition();
area.insertText(text,gposdel);
f=2;
}
else
{
gposdel = area.getCaretPosition();
int hg = area.getSelectionStart();
int gh = area.getSelectionEnd();
area.replaceRange(text,hg,gh);
f=2;
}
}
if(e.getSource() == delete)
{
f = 1;
text = area.getSelectedText();
gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(deltree);
area.replaceRange("",gposdel,gposdel+text.length());
}
if(e.getSource() == cut)
{
f = 1;
text = area.getSelectedText();
gposdel = area.getCaretPosition();
//int del = ta.getText().indexOf(text);
area.replaceRange("",gposdel,gposdel+text.length());
}
if(e.getSource() == find)
{
searchall = JOptionPane.showInputDialog("Enter The Word You Want To Search");
}
}
public static void main(String args[])
{
notepad note = new notepad();
}
}