* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
51 lines
1005 B
Plaintext
51 lines
1005 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
//
|
|
// Test of inline function
|
|
//
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL oForm := TForm():New()
|
|
|
|
? oForm:ClassName()
|
|
oForm:cText := "Let's show a form here :-)"
|
|
|
|
oForm:Show()
|
|
|
|
RETURN
|
|
|
|
FUNCTION TForm()
|
|
|
|
STATIC s_oClass
|
|
|
|
IF s_oClass == NIL
|
|
s_oClass := HBClass():New( "TFORM" ) // starts a new class definition
|
|
|
|
s_oClass:AddData( "cText" ) // define this class objects datas
|
|
s_oClass:AddData( "nTop" )
|
|
s_oClass:AddData( "nLeft" )
|
|
s_oClass:AddData( "nBottom" )
|
|
s_oClass:AddData( "nRight" )
|
|
|
|
s_oClass:AddMethod( "New", @New() ) // define this class objects methods
|
|
s_oClass:AddInline( "Show", {| self | QOut( self:cText ) } )
|
|
|
|
s_oClass:Create() // builds this class
|
|
ENDIF
|
|
|
|
RETURN s_oClass:Instance() // builds an object of this class
|
|
|
|
STATIC FUNCTION New()
|
|
|
|
LOCAL Self := QSelf()
|
|
|
|
::nTop := 10
|
|
::nLeft := 10
|
|
::nBottom := 20
|
|
::nRight := 40
|
|
|
|
RETURN Self
|