circles on xharbour( fw)

circles on xharbour( fw)

Postby Silvio » Mon Mar 27, 2006 12:04 pm

How create tree concentric circles ?

Regards
Best Regards, Saludos

Falconi Silvio
User avatar
Silvio
 
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Postby Antonio Linares » Mon Mar 27, 2006 12:20 pm

Silvio,

Code: Select all  Expand view
BOOL Ellipse(
    HDC hdc,   // handle to device context
    int nLeftRect,   // x-coord. of bounding rectangle's upper-left corner
    int nTopRect,   // y-coord. of bounding rectangle's upper-left corner 
    int nRightRect,   // x-coord. of bounding rectangle's lower-right corner 
    int nBottomRect    // y-coord. bounding rectangle's f lower-right corner 
   );
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41476
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Silvio » Mon Mar 27, 2006 12:24 pm

if I have
Code: Select all  Expand view
Rectangle( ::hDC, nX, nY, nX + ::nHeight, ( nY += ::nPinWidth ) )


with ellipse
Code: Select all  Expand view
ellipse( ::hDC, nX, nY, nX + ::nHeight, ( nY += ::nPinWidth ) )


I try it but it not draw circle concentric
Best Regards, Saludos

Falconi Silvio
User avatar
Silvio
 
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Re: circles on xharbour( fw)

Postby Enrico Maria Giordano » Mon Mar 27, 2006 12:50 pm

This is a working sample:

Code: Select all  Expand view
#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg

    LOCAL nX := 100
    LOCAL nY := 100

    LOCAL nMinRad := 20
    LOCAL nMaxRad := 100

    LOCAL nStep := 10

    DEFINE DIALOG oDlg;
           SIZE 200, 200

    ACTIVATE DIALOG oDlg;
             ON PAINT CIRCLES( oDlg, hDC, nX, nY, nMinRad, nMaxRad, nStep );
             CENTER

    RETURN NIL


#define BRUSH_NULL 5


STATIC FUNCTION CIRCLES( oDlg, hDC, nX, nY, nMinRad, nMaxRad, nStep )

    LOCAL hOldBrush := SELECTOBJECT( hDC, GETSTOCKOBJECT( BRUSH_NULL ) )

    LOCAL i

    FOR i = nMinRad TO nMaxRad STEP nStep
        oDlg:Circle( nX - i, nY - i, i * 2 )
    NEXT

    SELECTOBJECT( hDC, hOldBrush )

    RETURN NIL


EMG
User avatar
Enrico Maria Giordano
 
Posts: 8419
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 151 guests