// // CPT operator / SondeerGame // This source file is (c) by Deltares. // - October 2014 // //============================================================================= // Date Id Modification // // /// jln - 11-09-2008 End reached of GEF file. //============================================================================= class dialogStempels extends GeoGUIPage; var automated GeoFrame DialogBackground; var automated GeoLabel TextLabel; var automated GeoButton CloseButton; function InitComponent(GUIController MyController, GUIComponent MyOwner) { local string s; s = ""; Super.InitComponent(MyController, MyOwner); //TextLabel.SetContent( "De wagen is nu gestempeld."); } function bool ButtonClick(GUIComponent Sender) { /// jln - 05-09-2008 Close window: if (Sender == CloseButton) { Controller.CloseMenu(); } return true; } //============================================================================= // Date Id Modification //============================================================================= defaultproperties { Begin Object Class=GeoFrame name=TDialogBackground WinWidth=1.0 WinLeft=0.0 WinTop=0.375 WinHeight=0.25 End Object Begin Object class=GeoLabel name=TTextOne IniOption="TTextOne" TextAlign=TXTA_Center TextFont="GeoLargeFont" WinHeight=0.1 WinWidth=1.0 WinTop=0.415 WinLeft=0.0 End Object Begin Object class=GeoButton Name=TCloseButton IniOption="TCloseButton" WinWidth=0.1 WinLeft=0.44 WinTop=0.515 OnClick=ButtonClick End Object DialogBackground = TDialogBackground TextLabel = TTextOne CloseButton = TCloseButton AllowSelect = true bAllowedAsLast=true bDisconnectOnOpen=false bPersistent=false }