Code: Select all
::oEditor:bKeyDown = { | nKey | If( nKey == VK_RETURN, ::FillFuncList(),) }
Code: Select all
::oEditor:bKeyDown = { | nKey | If( nKey == VK_RETURN, ::FillFuncList(),) }
Code: Select all
Functions
Main()
Whatever( nCount, nSize)
Methods
New( cFile )
End()
Up and down arrows would be good.1. We could add support for up and down arrow
2. How to resize it ? Should we respect the width of the panels and shrink the editor ? Do we apply a percentadge to all of them ?
3. The list of functions and methods is alphabetically ordered. So methods are always at the top.
Code: Select all
::oEditor:bKeyDown = { | nKey | If( nKey == VK_RETURN .or. ;
nKey == VK_UP .or. nKey == VK_DOWN,;
::FillFuncList(),) }
Code: Select all
if ! Empty( ::cFWHExtraLibs )
AEval( hb_aTokens( StrTran( AllTrim( ::cFWHExtraLibs ), ",", "" ) ),;
{ | cLib | cFWHExtraLibs += AllTrim( ::cFWHPath ) + "\lib\" + ;
cLib + " " } )
endif
if ! Empty( ::cHarbExtraLibs )
AEval( hb_aTokens( StrTran( AllTrim( ::cHarbExtraLibs ), ",", "" ) ),;
{ | cLib | cHarbExtraLibs += AllTrim( ::cHarbPath ) + "\lib\" + ;
cLib + " " } )
endif
if ! Empty( ::cCCompilerExtraLibs )
AEval( hb_aTokens( StrTran( AllTrim( ::cCCompilerExtraLibs ), ",", "" ) ),;
{ | cLib | cCCompilerExtraLibs += AllTrim( ::cCCompilerPath ) + "\lib\" + ;
cLib + " " } )
endif