Restore latest commit
This commit is contained in:
parent
cc4adfe725
commit
73d5eb168e
3 changed files with 9 additions and 9 deletions
|
@ -1,12 +1,11 @@
|
|||
(defproject clojurefx/clojurefx "0.4.0"
|
||||
(defproject clojurefx/clojurefx "0.5.0-SNAPSHOT"
|
||||
:description "A Clojure wrapper for JavaFX."
|
||||
:license "Like Clojure."
|
||||
:url "https://www.bitbucket.org/zilti/clojurefx"
|
||||
:signing {:gpg-key "68484437"}
|
||||
:dependencies [[org.clojure/clojure "1.9.0-RC2"]
|
||||
:dependencies [[org.clojure/clojure "1.9.0"]
|
||||
[swiss-arrows "1.0.0"]
|
||||
[camel-snake-kebab "0.4.0"]
|
||||
[org.controlsfx/controlsfx "8.40.13"]
|
||||
[com.taoensso/timbre "4.7.4" :exclusions [com.taoensso/carmine]]
|
||||
[net.openhft/compiler "2.3.0"]
|
||||
[org.ow2.asm/asm "6.0"]
|
||||
|
|
|
@ -6,7 +6,8 @@
|
|||
[clojure.string :as str]
|
||||
[swiss.arrows :refer :all])
|
||||
(:import (javafx.scene.layout Region)
|
||||
(javafx.scene.shape Rectangle)))
|
||||
(javafx.scene.shape Rectangle)
|
||||
(clojurefx.ApplicationInitializer)))
|
||||
|
||||
(timbre/refer-timbre)
|
||||
|
||||
|
@ -16,10 +17,8 @@
|
|||
[interface args & code]
|
||||
(debug "interface:" interface)
|
||||
(let [iface-ref (reflect/type-reflect interface)
|
||||
bogus (debug "iface-ref:" iface-ref)
|
||||
methods (filter #(instance? clojure.reflect.Method %) (:members iface-ref))
|
||||
functional-method (filter (fn [x] (some #(= % :abstract) (:flags x))) methods)
|
||||
bogus (debug "methods:" (pr-str functional-method))
|
||||
method-sym (:name (first functional-method))]
|
||||
(debug "method-sym:" method-sym)
|
||||
|
||||
|
@ -38,6 +37,9 @@
|
|||
code (drop 2 fun)]
|
||||
`(.setValue (~(symbol (str (name obj) "/" (name prop)))) (fi javafx.event.ActionEvent ~argument ~@code))))
|
||||
|
||||
(defn start-app [app-init app-start app-stop]
|
||||
(clojurefx.ApplicationInitializer/initApp app-init app-start app-stop))
|
||||
|
||||
;; ## Data
|
||||
|
||||
(def constructor-args
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
(reduce conj imports)))
|
||||
|
||||
(defn qualify-class [imports class-str]
|
||||
(debug imports)
|
||||
(let [classname (first (filter #(= class-str (last (str/split (pr-str %) #"\."))) imports))
|
||||
classfull (str/replace classname #"\." "/")
|
||||
classreal (str/split classfull #"\s")]
|
||||
|
|
Loading…
Reference in a new issue