Blob Blame History Raw
! Motif
!
! Copyright (c) 1987-2012, The Open Group. All rights reserved.
!
! These libraries and programs are free software; you can
! redistribute them and/or modify them under the terms of the GNU
! Lesser General Public License as published by the Free Software
! Foundation; either version 2 of the License, or (at your option)
! any later version.
!
! These libraries and programs are distributed in the hope that
! they will be useful, but WITHOUT ANY WARRANTY; without even the
! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
! PURPOSE. See the GNU Lesser General Public License for more
! details.
!
! You should have received a copy of the GNU Lesser General Public
! License along with these librararies and programs; if not, write
! to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
! Floor, Boston, MA 02110-1301 USA
! 
! HISTORY
! 
!   $XConsortium: OpenHPD.uil /main/5 1995/07/14 10:50:42 drk $
!
!  
!  	THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED
!  AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND
!  WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE.  THIS SOFTWARE OR
!  ANY OTHER COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE
!  AVAILABLE TO ANY OTHER PERSON.  NO TITLE TO AND OWNERSHIP OF THE
!  SOFTWARE IS HEREBY TRANSFERRED.
!  
!  	THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT
!  NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY OPEN SOFTWARE
!  
!  
!  
!  
!  
!  
!  
!  
!  
!

module OpenH

	version = 'v1.0'
	names = case_sensitive

!
! Contains declarations for main MessageBox widget
!

include file 'main.uil';
  
include file 'pixmaps.uil';
!
! Contains color table and icons
!

value
	default_label:		"This is the default label.";

value
!	memory_loop_count:	exported 20000;
	memory_loop_count:	exported 40;

object
	test_box : XmForm
	{
		controls
		{
			XmLabel		defaultLabel;
		};
		arguments
		{
			XmNx	= 200;
			XmNy	= 200;
		};
	};

object
	defaultLabel : XmLabel
	{
		arguments
		{
			XmNlabelType		= XmSTRING;
			XmNlabelString		= default_label;
			XmNleftAttachment	= XmATTACH_FORM; 
			XmNtopAttachment	= XmATTACH_FORM; 
		};
	};

object
	button1 : XmPushButton
	{
		arguments
		{
			XmNlabelType		= XmPIXMAP;
			XmNlabelPixmap		= test1_btn1_icon;
			XmNleftAttachment	= XmATTACH_FORM; 
			XmNtopAttachment	= XmATTACH_FORM; 
		};
	};

end module;