blob: 68a8fae9d798d4e10da046d883c5d6fd40168906 [file] [log] [blame]
Roman Elizarov23f864e2017-03-03 19:57:47 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// This file was automatically generated from coroutines-guide-ui.md by Knit tool. Do not edit.
18package guide.ui.blocking.example03
19
20import kotlinx.coroutines.experimental.*
21import kotlinx.coroutines.experimental.channels.*
22import kotlinx.coroutines.experimental.javafx.JavaFx as UI
23import javafx.application.Application
24import javafx.event.EventHandler
25import javafx.geometry.*
26import javafx.scene.*
27import javafx.scene.input.MouseEvent
28import javafx.scene.layout.StackPane
29import javafx.scene.paint.Color
30import javafx.scene.shape.Circle
31import javafx.scene.text.Text
32import javafx.stage.Stage
33
34fun main(args: Array<String>) {
35 Application.launch(ExampleApp::class.java, *args)
36}
37
38class ExampleApp : Application() {
39 val hello = Text("Hello World!").apply {
40 fill = Color.valueOf("#C0C0C0")
41 }
42
43 val fab = Circle(20.0, Color.valueOf("#FF4081"))
44
45 val root = StackPane().apply {
46 children += hello
47 children += fab
48 StackPane.setAlignment(hello, Pos.CENTER)
49 StackPane.setAlignment(fab, Pos.BOTTOM_RIGHT)
50 StackPane.setMargin(fab, Insets(15.0))
51 }
52
53 val scene = Scene(root, 240.0, 380.0).apply {
54 fill = Color.valueOf("#303030")
55 }
56
57 override fun start(stage: Stage) {
58 stage.title = "Example"
59 stage.scene = scene
60 stage.show()
61 setup(hello, fab)
62 }
63}
64
Roman Elizarovbf6630f2017-03-14 20:06:42 +030065fun Node.onClick(action: suspend (MouseEvent) -> Unit) {
Roman Elizarov23f864e2017-03-03 19:57:47 +030066 val eventActor = actor<MouseEvent>(UI, capacity = Channel.CONFLATED) {
Roman Elizarovbf6630f2017-03-14 20:06:42 +030067 for (event in channel) action(event) // pass event to action
Roman Elizarov23f864e2017-03-03 19:57:47 +030068 }
69 onMouseClicked = EventHandler { event ->
70 eventActor.offer(event)
71 }
72}
73
74fun setup(hello: Text, fab: Circle) {
75 var result = "none" // the last result
76 // counting animation
77 launch(UI) {
78 var counter = 0
79 while (true) {
80 hello.text = "${++counter}: $result"
81 delay(100) // update the text every 100ms
82 }
83 }
84 // compute next fibonacci number of each click
85 var x = 1
86 fab.onClick {
87 result = "fib($x) = ${fib(x)}"
88 x++
89 }
90}
91
Roman Elizarovf9e13f52017-12-21 12:23:15 +030092suspend fun fib(x: Int): Int = withContext(CommonPool) {
Roman Elizarov23f864e2017-03-03 19:57:47 +030093 fibBlocking(x)
94}
95
96fun fibBlocking(x: Int): Int =
Vixbf742bc82018-01-11 16:42:24 +080097 if (x <= 1) x else fibBlocking(x - 1) + fibBlocking(x - 2)