Skip to content
Snippets Groups Projects

Added basic GUI to console application

Merged Abhay Menon requested to merge viewfile into main
3 files
+ 44
11
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -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