POD GUI: Difference between revisions

From ArmadeusWiki
Line 47: Line 47:
* [http://code.blender.org/index.php/2012/05/node-editing-tweaks/ Node Editor]
* [http://code.blender.org/index.php/2012/05/node-editing-tweaks/ Node Editor]


=== HTML5 solutions ===
=== HTML/javascript solutions ===


Most of new software are now on the web, maybe html can be used for pod gui ?
Most of new software are now on the web, maybe html can be used for pod gui ?
Line 57: Line 57:


* [http://www.aclevername.com/articles/python-webgui/ HOWTO Create Python GUIs using HTML]
* [http://www.aclevername.com/articles/python-webgui/ HOWTO Create Python GUIs using HTML]
==== JointJS ====
* [http://jointjs.com http://jointjs.com]


== Links ==
== Links ==


* [https://wiki.python.org/moin/GUI%20Programming%20in%20Python python wiki page comparative]
* [https://wiki.python.org/moin/GUI%20Programming%20in%20Python python wiki page comparative]

Revision as of 10:47, 30 September 2015


Introduction

POD is currently a command-line only software, to be more friendly and usefull the final objective is to use a clik-clik interface. This page describe investigation to find the best GUI-framework for POD.

Requirements

Solutions

Dia

Dia is a diagram editor,dia can be scripted in python to generate/import some data.

Qt

POD-like software using Qt:

Gtk

wxPython

POD-like software using wxPython:

wxWidget

Kicad use wxWidget

kivy

Kivy is a GUI framework in native python for multitouch, multiplatform systems.

  • showgen use it for it's ProcessCraft solution (not free).

Blender node editor

Blender have an interface graphic to edit node that correspond exactly with our requirement.

HTML/javascript solutions

Most of new software are now on the web, maybe html can be used for pod gui ?

Diagramo

Python

JointJS

Links