> void resume_resizing()
> {
> size_range(0, 0, 10000, 10000);
> }
> This is working fine if i try with above function
>
> But this shows same problem as before if i try with following
> void resume_resizing()
> {
> size_range(0, 0, 100000, 100000);
> }
> I think it's outside int range(2 power 16 - 1 = 65535) so
> that may be the reason.
Yes - the valid range is going to be +/- 32767, so 100000 is not going
to be valid... (that would be -1697 or something, I think, once the
clipping kicks in...)
> Well thanks for a solution.
> Now if i want window size should not be less than (300,300)
> then i may write
> void resume_resizing()
> {
> size_range(300, 300, 10000, 10000);
> }
> Is it OK?
Haven't tried it, but yes, I guess that looks ok...
--
Ian
SELEX Sensors and Airborne Systems Limited
Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14
3EL
A company registered in England & Wales. Company no. 02426132
********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk