Good afternoon Steve,

I have used your test program and it worked with no problems on my 
Centos 6.7 32 bit Linux system. I am running the following unicon version

Unicon Version 12.3.  Sep 12, 2015

with the following features enabled

Unicon Version 12.3.  Sep 12, 2015
UNIX
POSIX
DBM
ASCII
co-expressions
concurrent threads
dynamic loading
environment variables
event monitoring
external functions
keyboard functions
large integers
multiple programs
pattern type
pipes
pseudo terminals
system function
messaging
graphics
3D graphics
X Windows
libz file compression
JPEG images
PNG images
Audio
operator overloading
CCompiler gcc 4.4.7
Physical memory: 1044271104 bytes
Revision 4226
Arch x86_32
CPU cores 4
Binaries at /home/bruce/unicon/bin/

regards

Bruce Rennie

On 11/11/16 13:25, Steve Wampler wrote:
> On 11/10/2016 03:36 PM, Jafar Al-Gharaibeh wrote:
>> Steve,
>>
>> I tried the on my Ubuntu machine:
>> procedure main()
>>     w := open("resize", "g", "size=400,400")
>>     Event(w)
>>     WAttrib(w, "size=800,400")
>>     Event(w)
>>     close(w)
>> end
>>
>> It works as advertised. Want to test it at your end?
> That works, but the following version doesn't (where the user can
> drag out a new window size):
>
>      procedure main()
>          w := open("resize", "g", "size=400,400", "resize=on")
>          repeat {
>              while Pending(w) do {
>                  Event(w)
>                  x := WAttrib(w, "width");
>                  WAttrib(w, "size="||x||","||x)
>                  }
>             }
>          close(w)
>      end
>


------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
Unicon-group mailing list
Unicon-group@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to