Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Drawing a rectangle using Windows regular edges and borders
GDI+ fun: roach-infested desktop
GDI+: saving image of FoxPro form to graphics file (BMP, GIF, JPG, PNG, TIF)
How to retrieve list of system DSNs (Data Source Name) with parameters
Starting external program from VFP and waiting for its termination
Winsock: reading and setting socket options
Creating a unique filename based on existing filename
Enumerating printer drivers installed
How to find which fonts Windows uses for drawing captions, menus and message boxes
How to make the caption of a VFP application flashing in the Windows task bar
Obtaining some properties for the Windows desktop using the GetWindowPlacement function
Reading the structure of VFP main menu
Retrieving country-specific dialing information from the Windows Telephony list of countries
Round FoxPro form
Using Extended MessageBox() Class
Finding out if the current user is the Guest account
Reading VFP settings from the Windows Registry
Displaying standard progress dialog box when copying files
GDI+: printing vertical text on VFP reports via generated images (VFP9)
How to control Adobe Reader 9.0 (SDI mode) from VFP application
Quering Audio Mixer Device
Retrieving file information for the VFP executable running
Writing entries to custom Event Log
Enumerating print processors and supporting data types installed on the specified server
GDI+: Drawing a Pie Chart

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Before you begin:
This code sample shows how to use PieChart GDI+ functions to build a simple chart and store it in a graphics file.



The code is based on custom GDI+ class. Download the class module first and save it in gdiplus.prg file.

 
* an instance of gdiplusinit should be created before 
* and released after using any of gdi+ objects 
SET PROCEDURE TO gdiplus ADDITIVE
PRIVATE oGdiplus
oGdiplus = CREATEOBJECT("gdiplusinit")
 
LOCAL oChart As PieChart, cFilename
oChart = CREATEOBJECT("PieChart", 200, 200)
cFilename = "c:\temp\temp.png"
 
WITH oChart
    .AddPie(24, "Maintenance")  && percent, legend
    .AddPie(30, "Payroll")
    .AddPie(5, "Insurance")
    .AddPie(21, "Transportation")
    .AddPie(10, "Storage")
    .AddPie(10, "Other")
 
    * build a piechart and save result 
    * to the specified graphics file
    .SaveToFile(cFilename)
 
    OpenResultImage(cFilename)
ENDWITH
* end of main
 
DEFINE CLASS PieChart As Session
    pieslices=NULL  && collection
 
    piewidth=0  && main rectangle
    pieheight=0
 
    startangle=-90  && degrees; starts from 12:00
    marginx=10
    marginy=10
    legendwidth=140
    legendheight=30
 
PROCEDURE Init(nWidth, nHeight)
    THIS.piewidth=m.nWidth
    THIS.pieheight=m.nHeight
    THIS.pieslices = CREATEOBJECT("Collection")
 
PROCEDURE AddPie(nPercent, cLegend)
    LOCAL oSlice As PieSlice, nSweepAngle
    nSweepAngle = (360 * nPercent)/100
 
    oSlice = CREATEOBJECT("PieSlice", THIS.startangle, m.nSweepAngle,;
        m.cLegend, THIS.pieslices.Count)
 
    THIS.pieslices.Add(m.oSlice)
    THIS.startangle = THIS.startangle + m.nSweepAngle
    oSlice=NULL
 
PROCEDURE SaveToFile(cFilename)
    DECLARE INTEGER GdipDrawPieI IN gdiplus;
        INTEGER graphics, INTEGER pen, INTEGER x,;
        INTEGER y, INTEGER width, INTEGER height,;
        SINGLE startAngle, SINGLE sweepAngle
 
    DECLARE INTEGER GdipFillPieI IN gdiplus;
        INTEGER graphics, INTEGER brush, INTEGER x,;
        INTEGER y, INTEGER width, INTEGER height,;
        SINGLE startAngle, SINGLE sweepAngle
 
    LOCAL objpen As gdipen, objbrush As gdisolidbrush,;
        objbitmap As gdibitmap, objslice As PieSlice,;
        nFillColor
 
    objbitmap = CREATEOBJECT("gdibitmap",;
        THIS.piewidth+THIS.marginx*4+THIS.legendwidth,;
        THIS.pieheight+THIS.marginy*2)
 
    * Pen and Font objects to be used for drawing the chart
    objpen = CREATEOBJECT("gdipen", ARGB(255,255,255,255), 1)
    objfont = CREATEOBJECT("gdifont", "Arial", 9, 0, ARGB(0,0,0,128))
 
    WITH objbitmap
        .graphics.FillRectangle(ARGB(255,255,255,255), 0, 0,;
            .imgwidth, .imgheight)
 
        FOR EACH objslice IN THIS.pieslices
            nFillColor = ARGB(64+INT(RAND()*128),;
                64+INT(RAND()*128), 64+INT(RAND()*128),;
                100+RAND()*155)
 
            * the Brush with random color is created for each pie slice
            objbrush = CREATEOBJECT("gdisolidbrush", m.nFillColor)
 
            LOCAL nLegendX, nLegendY
            nLegendX = THIS.piewidth+THIS.marginx*3
            nLegendY = objslice.sliceindex*THIS.legendheight+THIS.marginy
 
            .graphics.FillRectangle(m.nFillColor,;
                m.nLegendX, m.nLegendY, 12, 12)
 
            .graphics.DrawText(objslice.legend, objfont,;
                m.nLegendX+20, m.nLegendY,;
                THIS.legendwidth, THIS.legendheight)
 
            * draw the background of the pie slice
            = GdipFillPieI(.graphics.graphics, objbrush.brush,;
                THIS.marginx, THIS.marginy,;
                THIS.piewidth, THIS.pieheight,;
                objslice.startangle, objslice.sweepangle)
 
            * draw the contour of the pie slice
            = GdipDrawPieI(.graphics.graphics, objpen.hpen,;
                THIS.marginx, THIS.marginy,;
                THIS.piewidth, THIS.pieheight,;
                objslice.startangle, objslice.sweepangle)
 
            objbrush=NULL
        NEXT
 
        .SaveToFile(m.cFilename)
    ENDWITH
ENDDEFINE
 
DEFINE CLASS PieSlice As Session
* in C++ that would be a STRUCT
    startangle=0
    sweepangle=0
    legend=""
    sliceindex=0
 
PROCEDURE Init(nStartAngle, nSweepAngle, cLegend, nIndex)
    THIS.startangle=m.nStartAngle
    THIS.sweepangle=m.nSweepAngle
    THIS.legend=m.cLegend
    THIS.sliceindex=m.nIndex
 
ENDDEFINE
 
PROCEDURE OpenResultImage(cFilename)
* opens image file using default application
    DECLARE INTEGER ShellExecute IN shell32;
        INTEGER hWindow, STRING lpOperation,;
        STRING lpFile, STRING lpParameters,; 
        STRING lpDirectory, INTEGER nShowCmd
    = ShellExecute(0, "open", m.cFilename, "", "", 3)
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
4037 bytes  
Created: 2006-05-12 16:40:08  
Modified: 2006-05-12 18:37:31  
Visits in 7 days: 117  
Listed functions:
GdipDrawPieI
GdipFillPieI
ShellExecute
Printer friendly API declarations
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (54.242.188.217)
48.13 min.Example: 'Printing text on the client area of the main VFP window'
48.18 min.Function: 'SCardStatus'
Function group: 'Authentication'
4.22 hrs.Example: 'How to intercept window messages sent to VFP form'
7.44 hrs.Function: 'SetPrinter'
 Function: 'ReplaceFile'
Function group: 'File Management'
10.27 hrs.Example: 'Enumerating global and local group accounts on a server (WinNT/XP/2K)'
11.42 hrs.Example: 'Placing On-screen Alert on top of all windows'
 Example: 'Using FillMemory'
11.76 hrs.Function: 'SHParseDisplayName'
 Example: 'Using InternetSetFilePointer when resuming interrupted download from the Internet'
Google
Advertise here!