[julia-users] Re: building GUI on top of julia code

2015-02-07 Thread Roger Herikstad
I've used Winston and Tk for this kind of stuff. I have code for panning 
through an iterable using simple controls. The code is messy, but if it is 
of interest, you can find it here

https://github.com/grero/Visualizer.jl

On Saturday, February 7, 2015 at 2:07:23 PM UTC+8, Christoph Ortner wrote:

 I've used Reactive and Interact without any difficulties, but then again I 
 never had problems with Julia.
Christoph



[julia-users] Re: building GUI on top of julia code

2015-02-06 Thread Avik Sengupta
I would have said IJulia with Interact.jl is your best bet to get this gone 
quickly. But I see that doesn't work for you. That is unfortunate, because 
doing it that way is going to be the easiest by far. If you can replicate 
the issues, an IJulia bug report would be appreciated, I imagine. 

Julia does have bindings to GTK and TK. Depending on your familiarity with 
these frameworks, they may work for you. 

Regards
-
Avik

On Friday, 6 February 2015 18:40:46 UTC, Andrei Berceanu wrote:

 So I have wrote the code for a numerical simulation in Julia, and I have a 
 few free parameters that I can play with (5-6) which will change the 
 resulting plots. The plots are done using Matplotlib via PyPlot.

 I would like to build a simple GUI with a few sliders for my parameters 
 and an array of plots that will change interactively as I change the 
 sliders.
 What are my options for quickly building such a thing? I prefer avoiding 
 the IJulia notebook because the kernel crashes quite often for some reason 
 when plotting stuff (this doesnt happen in the REPL).

 Thanks,
 A



[julia-users] Re: building GUI on top of julia code

2015-02-06 Thread Andrei Berceanu
The problem is that the errors seem to happen at random times, and without 
any error message the kernel just dies. I am overly familiar with any of 
the 2 frameworks you mention, i.e. i know of their existence, but thats 
about it.

On Friday, February 6, 2015 at 10:26:00 PM UTC+1, Avik Sengupta wrote:

 I would have said IJulia with Interact.jl is your best bet to get this 
 gone quickly. But I see that doesn't work for you. That is unfortunate, 
 because doing it that way is going to be the easiest by far. If you can 
 replicate the issues, an IJulia bug report would be appreciated, I imagine. 

 Julia does have bindings to GTK and TK. Depending on your familiarity with 
 these frameworks, they may work for you. 

 Regards
 -
 Avik

 On Friday, 6 February 2015 18:40:46 UTC, Andrei Berceanu wrote:

 So I have wrote the code for a numerical simulation in Julia, and I have 
 a few free parameters that I can play with (5-6) which will change the 
 resulting plots. The plots are done using Matplotlib via PyPlot.

 I would like to build a simple GUI with a few sliders for my parameters 
 and an array of plots that will change interactively as I change the 
 sliders.
 What are my options for quickly building such a thing? I prefer avoiding 
 the IJulia notebook because the kernel crashes quite often for some reason 
 when plotting stuff (this doesnt happen in the REPL).

 Thanks,
 A



[julia-users] Re: building GUI on top of julia code

2015-02-06 Thread Christoph Ortner
I've used Reactive and Interact without any difficulties, but then again I 
never had problems with Julia.
   Christoph



Re: [julia-users] Re: building GUI on top of julia code

2015-02-06 Thread Tim Holy
There's also GtkInteract.jl: https://github.com/jverzani/GtkInteract.jl

--Tim

On Friday, February 06, 2015 01:26:00 PM Avik Sengupta wrote:
 I would have said IJulia with Interact.jl is your best bet to get this gone
 quickly. But I see that doesn't work for you. That is unfortunate, because
 doing it that way is going to be the easiest by far. If you can replicate
 the issues, an IJulia bug report would be appreciated, I imagine.
 
 Julia does have bindings to GTK and TK. Depending on your familiarity with
 these frameworks, they may work for you.
 
 Regards
 -
 Avik
 
 On Friday, 6 February 2015 18:40:46 UTC, Andrei Berceanu wrote:
  So I have wrote the code for a numerical simulation in Julia, and I have a
  few free parameters that I can play with (5-6) which will change the
  resulting plots. The plots are done using Matplotlib via PyPlot.
  
  I would like to build a simple GUI with a few sliders for my parameters
  and an array of plots that will change interactively as I change the
  sliders.
  What are my options for quickly building such a thing? I prefer avoiding
  the IJulia notebook because the kernel crashes quite often for some reason
  when plotting stuff (this doesnt happen in the REPL).
  
  Thanks,
  A