Tagged Questions

This tag is for questions related to the portable user interface toolkit known as IUP. IUP is a portable toolkit for building graphical user interfaces offering a configuration API in three basic languages: C, Lua and LED. IUP's purpose is to allow a program to be executed in different systems without any modification, therefore it is highly portable.

learn more… | top users | synonyms

3
votes
1answer
335 views

Using IUP with Lua on Ubuntu

I'm trying to get IUP working on Ubuntu. I downloaded the binaries from sourceforge and the libraries seem to be in place in /usr/lib/libiup*.so, but when I write a script like the following: ...
2
votes
1answer
258 views

How to display a progress Bar using Lua and IUP

I have built a long running script to which I have added a progress bar with the following code: function StartProgressBar() gaugeProgress = iup.gaugeProgress{} gaugeProgress.show_text = "YES" ...
1
vote
0answers
27 views

Using Touch/Multitouch in iuplua

Using iuplua 3.5, the following code should throw a couple of events on windows 7 devices capable of multi touch: require("iuplua") canvas = iup.canvas{rastersize = "640x480", touch = "YES"} dialog ...
1
vote
0answers
33 views

Various problems with IUPLua

I've been trying, for a few days, to get a simple test case (matrix.wlua from the IUP documentation's examples) to work properly. IUPLua isn't in LuaRocks, so I had to install LuaDist and modify my ...
1
vote
0answers
27 views

Triggering OK from the call back on GetParm

I am using the IUP.GetParm dialog to do a search and replace prompt. The dialog supports 3 buttons, the first two OK and Cancel close the prompt and return to the main program flow. The third button ...
0
votes
1answer
34 views

IUP for Lua stopped working on Windows XP

I get the following error from require "iuplua" lua: budgelua5.lua:3: module 'iuplua' not found: no field package.preload['iuplua'] no file 'z:\Program Files\Lua\5.1\lua\iuplua.lua' no ...
0
votes
0answers
44 views

How can I integrate LUA script with HTA script?

I have written a Plugin using LUA & IUP GUI that communicates with an HTA (HTML Application) script both running on Windows. (Just Google search the bold text above for references). The HTA uses ...