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: OpenH.uil /main/9 1995/07/14 10:50:13 drk $
!******************************************************************************

module OpenH

	version = 'v1.0'
	names = case_sensitive

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;