created client packages

created basic client classes
This commit is contained in:
2019-04-30 16:49:02 +02:00
parent e1052ba636
commit b2568b43f8
21 changed files with 447 additions and 3 deletions

View File

@ -0,0 +1,8 @@
package org.hso.texturesyncclient.app
import org.hso.texturesyncclient.view.startupView.StartupView
import tornadofx.App
class Main: App(StartupView::class){
}

View File

@ -0,0 +1,7 @@
package org.hso.texturesyncclient.controller
class Controller {
}

View File

@ -0,0 +1,8 @@
package org.hso.texturesyncclient.controller
class NetworkController {
}

View File

@ -0,0 +1,10 @@
package org.hso.texturesyncclient.view.importView
import javafx.scene.Parent
import tornadofx.*
class ImportView : View() {
override val root: Parent
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}

View File

@ -0,0 +1,6 @@
package org.hso.texturesyncclient.view.importView
import tornadofx.Controller
class ImportViewController : Controller() {
}

View File

@ -0,0 +1,15 @@
package org.hso.texturesyncclient.view.mainView
import javafx.scene.Parent
import tornadofx.*
class MainView : View() {
override val root: Parent
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}

View File

@ -0,0 +1,6 @@
package org.hso.texturesyncclient.view.mainView
import tornadofx.Controller
class MainViewController : Controller() {
}

View File

@ -0,0 +1,15 @@
package org.hso.texturesyncclient.view.startupView
import javafx.scene.Parent
import tornadofx.*
class StartupView : View() {
override val root: Parent
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
}

View File

@ -0,0 +1,6 @@
package org.hso.texturesyncclient.view.startupView
import tornadofx.Controller
class StartupViewController : Controller() {
}