Mas funciones para usar con SAY y Get

Post Reply
User avatar
mastintin
Posts: 1516
Joined: Thu May 27, 2010 2:06 pm

Mas funciones para usar con SAY y Get

Post by mastintin »

Otras funciones para usar con say y get :

Code: Select all | Expand



HB_FUNC( TXTSETENABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    [get setEnabled: YES  ];
    [get setTextColor: [NSColor controlTextColor]];
}  


HB_FUNC( TXTSETDISABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    [get setEnabled: NO  ];
    [get setTextColor: [NSColor secondarySelectedControlColor]];
}


HB_FUNC( TXTISENABLED ) // hGet --> cText
{
    NSTextField * get = ( NSTextField * ) hb_parnl( 1 );
    hb_retl( ( BOOL ) [ get isEnabled ] );
}
 


Saludos.
Post Reply