From d4332213c08c7371c4da49f97592128268b9c3d3 Mon Sep 17 00:00:00 2001 From: lazarus Date: Sat, 9 Feb 2002 01:47:50 +0000 Subject: [PATCH] MG: added gdkpixbuf.pp and changes from Andrew Johnson git-svn-id: trunk@1093 - --- lcl/include/interfacebase.inc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lcl/include/interfacebase.inc b/lcl/include/interfacebase.inc index e71dfbf76a..d345596683 100644 --- a/lcl/include/interfacebase.inc +++ b/lcl/include/interfacebase.inc @@ -412,6 +412,12 @@ begin Result := false; end; +function TInterfaceBase.PolyBezier(DC: HDC; Points: PPoint; NumPts: Integer; + Filled,Continuous: boolean): boolean; +begin + Result := false; +end; + function TInterfaceBase.Polygon(DC: HDC; Points: PPoint; NumPts: Integer; Winding: boolean): boolean; begin @@ -430,6 +436,21 @@ begin Result := False; end; +function TInterfaceBase.RadialArc(DC: HDC; x,y,width,height,sx,sy,ex,ey : Integer): Boolean; +begin + Result := False; +end; + +function TInterfaceBase.RadialChord(DC: HDC; x,y,width,height,sx,sy,ex,ey : Integer): Boolean; +begin + Result := False; +end; + +function TInterfaceBase.RadialPie(DC: HDC; x,y,width,height,sx,sy,ex,ey : Integer): Boolean; +begin + Result := False; +end; + function TInterfaceBase.RadioMenuItemGroup(hndMenu: HMENU; bRadio: Boolean): Boolean; begin Result := false; @@ -627,6 +648,9 @@ end; { ============================================================================= $Log$ + Revision 1.38 2002/08/13 07:08:24 lazarus + MG: added gdkpixbuf.pp and changes from Andrew Johnson + Revision 1.37 2002/08/08 18:05:46 lazarus MG: added graphics extensions from Andrew Johnson