Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

  1. /******************************Module*Header*******************************\
  2. * Module Name: CPaths.h
  3. *
  4. * This file contains the code to support the functionality test harness
  5. * for GDI+. This includes menu options and calling the appropriate
  6. * functions for execution.
  7. *
  8. * Created: 05-May-2000 - Jeff Vezina [t-jfvez]
  9. *
  10. * Copyright (c) 2000 Microsoft Corporation
  11. *
  12. \**************************************************************************/
  13. #ifndef __CPATHS_H
  14. #define __CPATHS_H
  15. #include "CPrimitive.h"
  16. class CJoins : public CPrimitive
  17. {
  18. public:
  19. CJoins(BOOL bRegression);
  20. virtual ~CJoins();
  21. void Draw(Graphics *g);
  22. };
  23. class CPaths : public CPrimitive
  24. {
  25. public:
  26. CPaths(BOOL bRegression);
  27. virtual ~CPaths();
  28. void Draw(Graphics *g);
  29. VOID TestBezierPath(Graphics* g);
  30. VOID TestSinglePixelWidePath(Graphics* g);
  31. VOID TestTextAlongPath(Graphics* g);
  32. VOID TestFreeFormPath1(Graphics* g);
  33. VOID TestFreeFormPath2(Graphics* g);
  34. VOID TestLeakPath(Graphics* g);
  35. VOID TestExcelCurvePath(Graphics* g);
  36. VOID TestDegenerateBezierPath(Graphics* g);
  37. VOID TestPie(Graphics *g);
  38. };
  39. #endif