Giter Site home page Giter Site logo

seagull's Introduction

Seagull

Simple GUI library for Elixir language based on wxErlang.

Examples

Window with one button

defmodule A do
  import Widget
  def start() do
    f=frame id: :main_frame, title: "Frame title" do
      button id: :button
    end
    WindowProcess.spawn_gui f
  end
end

Window with two buttons

defmodule B do
  import Widget
  def start() do
    f=frame id: :main_frame do
      box :vertical do
        button id: :button1, label: "First Button"
        button id: :button2, label: "Second Button"
      end
    end
    WindowProcess.spawn_gui f
  end
end

Window with button that counts clicks

defmodule C do

  import Seagull
  import Widget

  def start() do
    f=frame id: :main_frame, react: [:close] do
      button id: :button, label: "Number of clicks: 0.", react: [:click]
    end
    pid=WindowProcess.spawn_gui f
    reaction pid
  end

  def reaction(pid) do
    continue=true
    receive_event do
      from pid: ^pid do
        from widget: :button do
          :click->
            label=send pid, :button, :get_label
            count=Regex.run(%r/[0-9]+/, label) |> List.first |> String.to_integer
            count=count+1
            label=Regex.replace %r/([0-9]+)/, label, to_string(count)
            send pid, :button, :set_label, label
        end
        from widget: :main_frame do
          :close->
            send pid, :destroy
            continue=false
        end
      end
    end
    if continue, do: reaction(pid)
  end

end

More examples

See lib/demo.

seagull's People

Contributors

ondraftw avatar shurizzle avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.