Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notes-app
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Abhay Menon
notes-app
Merge requests
!10
Added basic GUI to console application
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added basic GUI to console application
viewfile
into
main
Overview
1
Commits
5
Pipelines
1
Changes
3
Merged
Abhay Menon
requested to merge
viewfile
into
main
2 years ago
Overview
1
Commits
5
Pipelines
1
Changes
3
Expand
Added basic GUI to console application
0
0
Merge request reports
Viewing commit
e4d4db9f
Prev
Next
Show latest version
3 files
+
44
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
e4d4db9f
Updated branch to display basic GUI
· e4d4db9f
Abhay Menon
authored
2 years ago
console/src/main/kotlin/notes/multi/console/Console.kt
+
14
−
4
Options
@@ -5,10 +5,20 @@ package notes.multi.console
import
notes.multi.utilities.Filemanager
import
notes.multi.utilities.Note
import
notes.multi.utilities.TextWindow
import
javafx.application.Application
fun
main
()
{
// thesea re test functions feel free to use
val
f
=
Filemanager
(
"${System.getProperty("
user
.
dir
")}/test/"
,
"hello.txt"
)
f
.
writefile
(
"hello world"
)
f
.
deletefile
()
println
(
f
.
openfile
())
val
n
=
Note
()
val
noteTitle
=
n
.
title
val
noteContent
=
n
.
text
.
toString
()
println
(
noteContent
)
Application
.
launch
(
TextWindow
()
::
class
.
java
,
"--title=${noteTitle}"
,
"--text=${noteContent}"
)
// val f = Filemanager("${System.getProperty("user.dir")}/test/", "hello.txt")
// f.writefile("hello world")
// f.deletefile()
// println(f.openfile())
}
Loading