I hope this is not a too generic question for this forum.
I would like to create a simple GUI with just three or four clickable selections without the typical GUI open/close/resize options.
I am an inexperienced programmer and as a hobby I created a data logger for temperature, humidity, etc. It runs on well Raspberry Pi under Linux/Raspbian and a Python code. I can send data over the network and visualize it over a web-interface.
However, I would like to create a local display at the data collection point that would work off-line. I would like the user to be able to select among three or four display visualizations.
I investigated a bit using tkinter, but I would not like the user to be able to close windows nor resize them, etc (typical GUI operations). I am looking for a similar look and feel of a typical embedded software in car GPS devices. Any windows-type environment would clutter my 4” screen. It seems that we have either full-blown GUIs like tkinter or PyGTK or a local web display. Both of these solutions run on top of the Windows X, which seems to be an overkill and does not limit the user ability to interact with the system.
I could not find any solution. For example this Instructable: http://www.instructables.com/id/Raspberry-Pi-Wall-Display-Without-X-Windows/ is really just a slide-show system.
Can anyone recommend a solution for this? Thanks!