Re: A bearded person, Clojure and JavaFX

2012-12-06 Thread Vladimir Tsichevski
Take a look at Eclipse RCP. It is much more than just a set of widgets. On Thursday, December 6, 2012 3:38:45 AM UTC+4, Christian Sperandio wrote: > > Hi, > > I'm one of those bearded (Lin)Unixians person who love the black screen. > I'm closer to back-office than front-office (it's may be my (to

Re: A bearded person, Clojure and JavaFX

2012-12-06 Thread john
Hi Christian, I am kind of also writing a little GUI application. I also had to make the choice between swing and javafx . I am going with javaFX because I just love the transistion animations and styling with CSS. I actually think that actual APIs of the GUI Components and Event handling look

Re: A bearded person, Clojure and JavaFX

2012-12-06 Thread Christian Sperandio
I thank you and Dave for your lights about JavaFX. You motivated me to continue testing JavaFX. I think my main error is to try write code in Java and then translate this code into clojure. Chris Le 6 déc. 2012 à 01:08, Stephen Compall a écrit : On Dec 5, 2012 6:38 PM, "Christian Sperandio" w

Re: A bearded person, Clojure and JavaFX

2012-12-05 Thread Dave Ray
Although it's not obvious from the JavaFX docs since they're written for a Java audience, it is very possible to create apps in an interactive style without inheritance. Two caveats: * Ignore the Application class. Just create your scene, etc directly. * Most execution has to run on the JavaFX thr

Re: A bearded person, Clojure and JavaFX

2012-12-05 Thread Stephen Compall
On Dec 5, 2012 6:38 PM, "Christian Sperandio" wrote: > And I find that the Clojure code is damaged by the JavaFX inheritance. You must write :gen-class extends to just display a window. There are many things in JavaFX for which documentation suggests subclassing, but it is entirely reasonable to

Re: A bearded person, Clojure and JavaFX

2012-12-05 Thread Christian Sperandio
It's for a little application. It's for manage foods and their expiration date (thus, we avoid forget items in the cupboard). I thought about browser. I just wanted to chang :) Le jeudi 6 décembre 2012 00:43:15 UTC+1, charlie a écrit : > > What is the GUI for ? I'm not sure I'm happy about it,

Re: A bearded person, Clojure and JavaFX

2012-12-05 Thread charlie
What is the GUI for ? I'm not sure I'm happy about it, but I think most UI's are done in a browser now, and if you haven't checked out clojurescriptone.com yet I'd take a look. On Wed, Dec 5, 2012 at 5:38 PM, Christian Sperandio < christian.speran...@gmail.com> wrote: > Hi, > > I'm one of thos

A bearded person, Clojure and JavaFX

2012-12-05 Thread Christian Sperandio
Hi, I'm one of those bearded (Lin)Unixians person who love the black screen. I'm closer to back-office than front-office (it's may be my (too) pragmatic mind). But sometimes, for some programs, a GUI is a good thing for users. In particular when the sofware is not for barbed person :) First, I