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_mf3.uil /main/9 1995/07/14 10:51:29 drk $
!******************************************************************************

module OpenH_mf3

	version = 'v1.0'
	names = case_sensitive

value
	test_label	:	"OpenH_mf3 is completed.    ";
!					Make sure this label is at least 26 characters long

object
	OH_mf3 : XmLabel
	{
		arguments
		{
			XmNlabelType = XmSTRING;
			XmNlabelString = test_label;
			XmNleftAttachment	= XmATTACH_FORM; 
			XmNtopAttachment	= XmATTACH_FORM; 
			XmNtopOffset	= 100;
		};
	};

!
! This is a widget purposely planted here to make sure that
! the hierarchy order is correct.  There is another OH_mf1 widget
! in the file OpenH_mf1.uil that should have been found before
! this one.

value
	test_label2	:	"WRONG OpenH_mf1 completed. ";
!					Make sure this label is at least 26 characters long

object
	OH_mf1 : XmLabel
	{
		arguments
		{
			XmNlabelType = XmSTRING;
			XmNlabelString = test_label2;
			XmNleftAttachment	= XmATTACH_FORM; 
			XmNtopAttachment	= XmATTACH_FORM; 
			XmNtopOffset	= 50;
		};
	};


end module;