Difference between revisions of "Reactive-banana/Examples"

From HaskellWiki
Jump to navigation Jump to search
(6 intermediate revisions by 2 users not shown)
Line 31: Line 31:
 
== GUI Examples - More elaborate ==
 
== GUI Examples - More elaborate ==
   
; [https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/Asteroids.hs Asteroids.hs]
+
; <span id="animation">[https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/Animation.hs Animation.hs]</span>
  +
: A small interactive animation. The sprite follows the mouse pointer.
  +
[[Image:Reactive-banana-Animation.png]]
  +
  +
; <span id="asteroids">[https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/Asteroids.hs Asteroids.hs]</span>
 
: Port of the [[wxAsteroids]] example.
 
: Port of the [[wxAsteroids]] example.
 
[[Image:Reactive-banana-wxAsteroids.png]]
 
[[Image:Reactive-banana-wxAsteroids.png]]
  +
  +
; <span id="bartab">[https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/BarTab.hs BarTab.hs]</span>
  +
: Add all numbers on the tab. Demonstrates how to dynamically create widgets and <code>Behavior</code>s.
  +
[[Image:Reactive-banana-BarTab.png]]
   
 
; [https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/CRUD.hs CRUD.hs]
 
; [https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/CRUD.hs CRUD.hs]
Line 43: Line 51:
 
[[Image:Reactive-banana-TicTacToe.png]]
 
[[Image:Reactive-banana-TicTacToe.png]]
   
; [https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/Wave.hs Wave.hs]
+
; <span id="wave">[https://github.com/HeinrichApfelmus/reactive-banana/blob/master/reactive-banana-wx/src/Wave.hs Wave.hs]</span>
: A wave-like pattern. Not the most beautiful code, but it demonstrates that you can generated timed events.
+
: A wave-like pattern. Not the most beautiful code, but it demonstrates that you can generate timed events.
 
[[Image:Reactive-banana-Wave.png]]
 
[[Image:Reactive-banana-Wave.png]]

Revision as of 08:37, 1 October 2012

Examples for the reactive-banana library.

Core Examples

SlotMachine.hs
Mainly demonstrates how to set up an event network with your own event loop. Also demonstrates the FRP functionality.
ActuatePause.hs
Demonstrates how to set up an event network with your own event loop and how to pause or resume it.

GUI Examples - Very simple

Arithmetic.hs
Minimalistic calculator that can add two numbers. Demonstrates how to read values from text entries.

Reactive-banana-Arithmetic.png

Counter.hs
A simple counter that can be manipulated with two buttons "Up" or "Down". Demonstrates how to get events from button clicks and how to accumulate values using the accumB function.

Reactive-banana-Counter.png

NetMonitor.hs
Minimalistic application that displays network statistics in real time. Demonstrates the fromPoll function.

Reactive-banana-NetMonitor.png

CurrencyConverter.hs
Simple currency converter. Reads and writes values to text entry widgets in real-time. Demonstrates bidirectional controls.

Reactive-banana-CurrencyConverter.png

TwoCounters.hs
Two simple counters. There is only one pair of buttons "Up" or "Down", the button "Switch Counters" allows you to specify which counter should be affected. Reactive-banana-TwoCounters.png

GUI Examples - More elaborate

Animation.hs
A small interactive animation. The sprite follows the mouse pointer.

Reactive-banana-Animation.png

Asteroids.hs
Port of the wxAsteroids example.

Reactive-banana-wxAsteroids.png

BarTab.hs
Add all numbers on the tab. Demonstrates how to dynamically create widgets and Behaviors.

Reactive-banana-BarTab.png

CRUD.hs
A toy CRUD (Create/Read/Update/Destroy) application. The code is quite pleasant. Unfortunately, bidirectional controls are still hard to describe, I have left this in a somewhat buggy state. Future updates will rectify this.

Reactive-banana-CRUD1.png Reactive-banana-CRUD2.png

TicTacToe.hs
A version of TicTacToe with eclectic interface elements, courtesy of Gideon Sireling.

Reactive-banana-TicTacToe.png

Wave.hs
A wave-like pattern. Not the most beautiful code, but it demonstrates that you can generate timed events.

Reactive-banana-Wave.png