/*

  $Id: SimpleApp.eml,v 1.2 2003/08/25 17:47:22 mcoletti Exp $

  A very simple example application that uses the ImagineObjects C++ library.

*/
component SimpleApp 
{
    frame topframe
    {
        title "Simple ERDAS Imagine Application";

	statusbar;
	/* resizable; */
	minimumsize 30, 30;

	group mainwindow
	{
		edittext textbox 
		{ title above left "Sample Text";
		  size 28, 25;
		} /* edittext textbox */

	} /* group mainwindow */

	group buttons
	{
		below center mainwindow nogap;

		button runbutton
		{
		    title "Run";
		} /* button runbutton */

		button quitbutton
		{
		    title "Quit";

		    on mousedown
		    {
		       quit;
		    }
		} /* button quitbutton */

	} /* group bottombuttons */

    } /* frame topframe */

    on startup display topframe;

} /* component SimpleApp */

