Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
64b9c61
Rewriting the code from 0
E-xml Oct 30, 2024
b4ed8df
Update changelog.md
E-xml Oct 31, 2024
a2ae001
Update .gitignore
E-xml Oct 31, 2024
e5b231b
Update .gitignore
E-xml Oct 31, 2024
323c778
Update CustomMenuBar.java
E-xml Oct 31, 2024
290d2b1
Update CustomMenuBar.java
E-xml Oct 31, 2024
88db5a1
Last commit before school
E-xml Nov 3, 2024
723cfb4
Update CustomOptionPane.java
E-xml Nov 4, 2024
ff61040
Update .gitignore
E-xml Nov 4, 2024
3ea1507
Update CustomOptionPane
E-xml Nov 4, 2024
ec6a0cc
Update CustomOptionPane.java
E-xml Nov 4, 2024
457c26c
Update CustomOptionPane.java
E-xml Nov 4, 2024
90d88f4
Update
E-xml Nov 4, 2024
17dfb7c
Updating
E-xml Nov 6, 2024
fdb797c
Adding features and completing Menu "File"
E-xml Nov 9, 2024
ae908bd
Adding features on "Edit" menu
E-xml Nov 11, 2024
240fee0
Update ExmlEditor.java
E-xml Nov 12, 2024
8688ef6
Adding features on "Edit" menu
E-xml Nov 13, 2024
4d95011
Merge remote-tracking branch 'origin/main'
E-xml Nov 13, 2024
260d559
Adding features on "Edit" menu
E-xml Nov 14, 2024
3f4bf20
Adding features on "Edit" menu
E-xml Nov 14, 2024
7345b2e
Update ExmlEditor.java
E-xml Nov 18, 2024
25bf64c
Finishing features for Edit + Starting Selection features
E-xml Nov 20, 2024
8d76af5
Update ReadMe.md
E-xml Nov 20, 2024
53cdcbc
Update ReadMe.md
E-xml Nov 21, 2024
e1d0f4b
Finishing Selection Features
E-xml Nov 22, 2024
eb38017
Update CustomMenuBar.java
E-xml Nov 24, 2024
1f6cfca
Finishing.
E-xml Nov 24, 2024
7fbffca
Merge remote-tracking branch 'origin/main'
E-xml Nov 24, 2024
4623579
Finishing.
E-xml Nov 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Compiled class file
# Compiled class files
*.class

# Log file
# Log files
*.log

# IML files
*.iml

# BlueJ files
*.ctxt

Expand All @@ -22,3 +25,13 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

# Intellij Idea
out/

# Visual Studio Code
.vscode/

# Eclipse
*.classpath
*.project
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/artifacts/Indev_1_0.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: src.ExmlEditor

18 changes: 4 additions & 14 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
# TextEditor (java) Modifications
# Update V1.0.0

This is a simple text editor. Using it as a starting point, it needs a bunch of functionality additions.
Updating [ZCW-Java91 project](https://github.com/ZCW-Java91/TextEditor-Java)

## Additions
V1.0.0

Things to add:

- find/replace text implementation
- when you exit, you must NOT lose un-saved changes
- add a new window, scrollable, with some editor help documentation in it.
- implement Word Wrap (yeah, look it up)
- add a font panel, so you can change the font you edit in.
- make sure not only new files are in th enew font, but existing windows too.
- add a way to print the current file.
- add a way to set the page in portrait or landscape mode
- Make your About Dialog snazzy!
My very first notepad in java
11 changes: 11 additions & 0 deletions TextEditor-Java.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Rewriting code from start

Adding unachieved features :
-
37 changes: 37 additions & 0 deletions out/production/TextEditor-Java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Compiled class files
*.class

# Log files
*.log

# IML files
*.iml

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

# Intellij Idea
out/

# Visual Studio Code
.vscode/

# Eclipse
*.classpath
*.project
3 changes: 3 additions & 0 deletions out/production/TextEditor-Java/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions out/production/TextEditor-Java/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions out/production/TextEditor-Java/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading