Reputation: 65
I am looking for a set of tools to help me design a GUI for an embedded device with limited resources
embedded device overview:
GUI overview:
i am looking for a tool that lets me graphically design the GUI
the GUI design tool would produce an intermediary format (YAML/XML) to be translated by a script (which i will write) to C code.
it would be nice (but not mandatory) for 2 way translation to work ( a reverse script (which i will write) would translate the C code into the intermediary format, to be sucessfully read and edited by the graphic GUI design tool).
GUI design tool need not be fancy (e.g. in the simple embedded device there is no notion of widget placement, layout, multitouch or windows) but it does need to show me
please include the following in your answers:
Upvotes: 2
Views: 811
Reputation: 272647
I would guess (although I could be wrong) that such a thing doesn't exist. You have a fairly bespoke scenario, so I imagine you'll have to write your own tool if you want this sort of functionality.
You may be best off simply using a good XML editor (newer versions of Visual Studio spring to mind), set up with a roubst schema (to enable intellisense/auto-complete/etc.) You'll be able to see the hierarchy directly, you'll be able to collapse things at will, there'll be error-checking, and so on.
Upvotes: 3