pgui

About

pgui is a Processing library used for the creation of GUI elements.
This includes: windows, buttons, sliders, etc. View the full list of available elements in the Developer’s Reference.

Getting Started

  1. Download Processing
  2. Open or create a new sketch in the Processing editor
  3. Download the file pgui.jar
  4. Drag & drop the pgui.jar file onto the Processing editor
    or
    Select pgui.jar file in Processing: Sketch > Add File…
  5. Import library with
    import pgui.packagename.classname;

    For example, to import a pgui Window & Button:
    import pgui.win.Window;
    import pgui.btn.Button;
  6. Download a demonstration of the library in Processing here. View the full list of available classes and methods in the Developer’s Reference.
  7. Start creating!

Details