Blame demos/programs/animate/superman.uil

Packit b099d7
! 
Packit b099d7
! Motif
Packit b099d7
!
Packit b099d7
! Copyright (c) 1987-2012, The Open Group. All rights reserved.
Packit b099d7
!
Packit b099d7
! These libraries and programs are free software; you can
Packit b099d7
! redistribute them and/or modify them under the terms of the GNU
Packit b099d7
! Lesser General Public License as published by the Free Software
Packit b099d7
! Foundation; either version 2 of the License, or (at your option)
Packit b099d7
! any later version.
Packit b099d7
!
Packit b099d7
! These libraries and programs are distributed in the hope that
Packit b099d7
! they will be useful, but WITHOUT ANY WARRANTY; without even the
Packit b099d7
! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
Packit b099d7
! PURPOSE. See the GNU Lesser General Public License for more
Packit b099d7
! details.
Packit b099d7
!
Packit b099d7
! You should have received a copy of the GNU Lesser General Public
Packit b099d7
! License along with these librararies and programs; if not, write
Packit b099d7
! to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
Packit b099d7
! Floor, Boston, MA 02110-1301 USA
Packit b099d7
! 
Packit b099d7
! 
Packit b099d7
! HISTORY
Packit b099d7
! 
Packit b099d7
!   $XConsortium: superman.uil /main/5 1995/07/14 09:41:07 drk $
Packit b099d7
!******************************************************************************
Packit b099d7
Packit b099d7
module superman
Packit b099d7
!**********************************************************************
Packit b099d7
! anim_XXX variables must be changed to adapt the new animation
Packit b099d7
! stuff, at least the number of icons must be the right one.
Packit b099d7
!**********************************************************************
Packit b099d7
Packit b099d7
value
Packit b099d7
	anim_width     : exported 700 ;
Packit b099d7
	anim_height    : exported 200 ;
Packit b099d7
          ! prefered values for default initial animation frame size,  
Packit b099d7
	  ! used in motifanim.uil for the geometry of the drawingarea
Packit b099d7
	anim_number    : exported 6 ;
Packit b099d7
	  ! number of image in the animation, read by motifanim.c (by a
Packit b099d7
	  ! MrmFetchLiteral) at run time
Packit b099d7
	anim_step      : exported 4 ;
Packit b099d7
	  ! number of horizontal pixels add before next icon drawing, 
Packit b099d7
	  ! read by motifanim.c (by a MrmFetchLiteral) at run time
Packit b099d7
	anim_backcolor 	  : exported color('black',  background);
Packit b099d7
	  ! used in motifanim.uil for the color of the drawingarea
Packit b099d7
Packit b099d7
value
Packit b099d7
     ! the following icon must have the syntax 
Packit b099d7
     ! <NAME>icon<N> and must be exported since they are read 
Packit b099d7
     ! by motifanim.c at run time.
Packit b099d7
     ! here we have : NAME=superman and N=[1,2,3,4,5,6]
Packit b099d7
Packit b099d7
        supermanicon1 : exported xbitmapfile("superman1.xbm");
Packit b099d7
        supermanicon2 : exported xbitmapfile("superman2.xbm");
Packit b099d7
        supermanicon3 : exported xbitmapfile("superman3.xbm");
Packit b099d7
        supermanicon4 : exported xbitmapfile("superman4.xbm");
Packit b099d7
        supermanicon5 : exported xbitmapfile("superman5.xbm");
Packit b099d7
        supermanicon6 : exported xbitmapfile("superman6.xbm");
Packit b099d7
Packit b099d7
end module ;