原文: http://zetcode.com/gui/wxwidgets/gdi/

GDI(图形设备接口)是用于处理图形的界面。 它用于与图形设备(例如监视器,打印机或文件)进行交互。 GDI 允许程序员在屏幕或打印机上显示数据,而不必担心特定设备的详细信息。 GDI 使程序员与硬件隔离。

wxWidgets 中的设备上下文 - 图1

图:GDI 结构

从程序员的角度来看,GDI 是用于处理图形的一组类和方法。 GDI 由 2D 向量图形,字体和图像组成。

要开始绘制图形,我们必须创建一个设备上下文(DC)对象。 在 wxWidgets 中,设备上下文称为wxDC。 该文档将wxDC定义为可以在其上绘制图形和文本的设备上下文。 它以通用方式表示设备数量。 同一段代码可以写入不同类型的设备。 无论是屏幕还是打印机。 wxDC不能直接使用。 相反,程序员应选择派生类之一。 每个派生类都打算在特定条件下使用。

以下类是派生的wxDC类:

  • wxBufferedDC
  • wxBufferedPaintDC
  • wxPostScriptDC
  • wxMemoryDC
  • wxPrinterDC
  • wxScreenDC
  • wxClientDC
  • wxPaintDC
  • wxWindowDC

wxScreenDC用于在屏幕上的任何地方绘制。 如果要在整个窗口上绘制(仅 Windows),则使用wxWindowDC。 这包括窗口装饰。 wxClientDC用于绘制窗口的客户区域。 客户区域是没有装饰(标题和边框)的窗口区域。 wxPaintDC也用于绘制客户区。 但是wxPaintDCwxClientDC之间有一个区别。 wxPaintDC应该仅从wxPaintEvent使用。 不应从wxPaintEvent中使用wxClientDCwxMemoryDC用于在位图上绘制图形。 wxPostScriptDC用于在任何平台上写入 PostScript 文件。 wxPrinterDC用于访问打印机(仅 Windows)。

简单的线条

我们从画一条线开始。

line.h

  1. #include <wx/wx.h>
  2. class Line : public wxFrame
  3. {
  4. public:
  5. Line(const wxString& title);
  6. void OnPaint(wxPaintEvent& event);
  7. };

line.cpp

  1. #include "line.h"
  2. Line::Line(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(280, 180))
  4. {
  5. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Line::OnPaint));
  6. this->Centre();
  7. }
  8. void Line::OnPaint(wxPaintEvent& event)
  9. {
  10. wxPaintDC dc(this);
  11. wxCoord x1 = 50, y1 = 60;
  12. wxCoord x2 = 190, y2 = 60;
  13. dc.DrawLine(x1, y1, x2, y2);
  14. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "line.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Line *line = new Line(wxT("Line"));
  7. line->Show(true);
  8. return true;
  9. }

在我们的示例中,我们在窗口的客户区域上画一条简单的线。 如果我们调整窗口的大小,它将被重绘。 生成wxPaintEvent。 然后再次画线。

  1. void OnPaint(wxPaintEvent& event);

在这里,我们声明一个OnPaint()事件处理函数。

  1. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Line::OnPaint));

我们将绘图事件连接到OnPaint()方法。 所有绘图都发生在OnPaint()事件处理器内。

  1. wxPaintDC dc(this);

我们定义一个wxPaintDC设备上下文。 它是设备上下文,用于在wxPaintEvent内部的窗口上绘制

  1. wxCoord x1 = 50, y1 = 60;
  2. wxCoord x2 = 190, y2 = 60;

我们定义四个坐标。

  1. dc.DrawLine(x1, y1, x2, y2);

我们画一条简单的线调用DrawLine()方法。

wxWidgets 中的设备上下文 - 图2

图:一条简单的线

绘制文字

在窗口上绘制一些文本很容易。

text.h

  1. #include <wx/wx.h>
  2. class Text : public wxFrame
  3. {
  4. public:
  5. Text(const wxString & title);
  6. void OnPaint(wxPaintEvent & event);
  7. };

text.cpp

  1. #include "text.h"
  2. Text::Text(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(250, 150))
  4. {
  5. Connect(wxEVT_PAINT, wxPaintEventHandler(Text::OnPaint));
  6. Centre();
  7. }
  8. void Text::OnPaint(wxPaintEvent& event)
  9. {
  10. wxPaintDC dc(this);
  11. dc.DrawText(wxT("Лев Николaевич Толстoй"), 40, 60);
  12. dc.DrawText(wxT("Анна Каренина"), 70, 80);
  13. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "text.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Text *text = new Text(wxT("Text"));
  7. text->Show(true);
  8. return true;
  9. }

在我们的示例中,我们在窗口上绘制了俄罗斯阿兹布卡语的列夫·尼古拉耶维奇·托尔斯泰,安娜·卡列尼娜的文字。

  1. dc.DrawText(wxT("Лев Николaевич Толстoй"), 40, 60);
  2. dc.DrawText(wxT("Анна Каренина"), 70, 80);

DrawText()方法在窗口上绘制文本。 它使用当前文本字体以及当前文本前景色和背景色在指定点绘制文本字符串。 感谢wxT()宏,我们可以直接在代码中使用西里尔字母。 wxT()宏与_T()宏相同。 它包装字符串字面值以使用或不使用 Unicode。 未启用 Unicode 时,wxT()是一个空宏。 启用 Unicode 时,它将为字符串字面值添加必要的L,以使其成为宽字符串常量。

wxWidgets 中的设备上下文 - 图3

图:绘制文本

最简单的几何对象是一个点。 它是窗口上的一个普通点。

  1. DrawPoint(int x, int y)

此方法在 x,y 坐标处绘制点。

point.h

  1. #include <wx/wx.h>
  2. class Points : public wxFrame
  3. {
  4. public:
  5. Points(const wxString & title);
  6. void OnPaint(wxPaintEvent & event);
  7. };

points.cpp

  1. #include "points.h"
  2. #include <stdlib.h>
  3. #include <time.h>
  4. Points::Points(const wxString& title)
  5. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(280, 180))
  6. {
  7. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Points::OnPaint));
  8. srand(time(NULL));
  9. this->Centre();
  10. }
  11. void Points::OnPaint(wxPaintEvent & event)
  12. {
  13. wxPaintDC dc(this);
  14. wxCoord x = 0;
  15. wxCoord y = 0;
  16. wxSize size = this->GetSize();
  17. for (int i = 0; i<1000; i++) {
  18. x = rand() % size.x + 1;
  19. y = rand() % size.y + 1;
  20. dc.DrawPoint(x, y);
  21. }
  22. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "points.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Points *points = new Points(wxT("Points"));
  7. points->Show(true);
  8. return true;
  9. }

单点可能很难看清。 因此,我们创建了 1000 点。 每次调整窗口大小时,我们都会在窗口的客户区域上绘制 1000 点。

  1. wxSize size = this->GetSize();

在这里,我们得到窗口的大小。

  1. x = rand() % size.x + 1;

在这里,我们得到一个介于 1 到size.x范围内的随机数。

wxWidgets 中的设备上下文 - 图4

图:点

钢笔

笔是基本的图形对象。 它用于绘制矩形,椭圆形,多边形或其他形状的线,曲线和轮廓。

  1. wxPen(const wxColour& colour, int width = 1, int style = wxSOLID)

wxPen构造器具有三个参数:colourwidthstyle。 以下是可能的笔样式的列表:

  • wxSOLID
  • wxDOT
  • wxLONG_DASH
  • wxSHORT_DASH
  • wxDOT_DASH
  • wxTRANSPARENT

pen.h

  1. #include <wx/wx.h>
  2. class Pen : public wxFrame
  3. {
  4. public:
  5. Pen(const wxString& title);
  6. void OnPaint(wxPaintEvent& event);
  7. };

pen.cpp

  1. #include "pen.h"
  2. Pen::Pen(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(360, 180))
  4. {
  5. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Pen::OnPaint));
  6. this->Centre();
  7. }
  8. void Pen::OnPaint(wxPaintEvent& event)
  9. {
  10. wxPaintDC dc(this);
  11. wxColour col1, col2;
  12. col1.Set(wxT("#0c0c0c"));
  13. col2.Set(wxT("#000000"));
  14. wxBrush brush(wxColour(255, 255, 255), wxTRANSPARENT);
  15. dc.SetBrush(brush);
  16. dc.SetPen(wxPen(col1, 1, wxSOLID));
  17. dc.DrawRectangle(10, 15, 90, 60);
  18. dc.SetPen(wxPen(col1, 1, wxDOT));
  19. dc.DrawRectangle(130, 15, 90, 60);
  20. dc.SetPen(wxPen(col1, 1, wxLONG_DASH));
  21. dc.DrawRectangle(250, 15, 90, 60);
  22. dc.SetPen(wxPen(col1, 1, wxSHORT_DASH));
  23. dc.DrawRectangle(10, 105, 90, 60);
  24. dc.SetPen(wxPen(col1, 1, wxDOT_DASH));
  25. dc.DrawRectangle(130, 105, 90, 60);
  26. dc.SetPen(wxPen(col1, 1, wxTRANSPARENT));
  27. dc.DrawRectangle(250, 105, 90, 60);
  28. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "pen.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Pen *pen = new Pen(wxT("Pen"));
  7. pen->Show(true);
  8. return true;
  9. }

在我们的示例中,我们绘制了 6 个具有不同笔样式的矩形。 最后一个是透明的,不可见。

  1. dc.SetPen(wxPen(col1, 1, wxSOLID));
  2. dc.DrawRectangle(10, 15, 90, 60);

在这里,我们为第一个矩形定义了一支笔。 我们设置了一支颜色为col1#0c0c0c),宽 1 像素的实心钢笔。 DrawRectangle()方法绘制矩形。

wxWidgets 中的设备上下文 - 图5

图:笔

区域

可以组合区域以创建更复杂的形状。 我们可以使用四个设置操作:Union()Intersect()Substract()Xor()。 以下示例显示了所有正在执行的四个操作。

Regions.h

  1. #include <wx/wx.h>
  2. class Regions : public wxFrame
  3. {
  4. public:
  5. Regions(const wxString & title);
  6. void OnPaint(wxPaintEvent & event);
  7. };

Regions.cpp

  1. #include "Regions.h"
  2. Regions::Regions(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(270, 220))
  4. {
  5. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Regions::OnPaint));
  6. this->Centre();
  7. }
  8. void Regions::OnPaint(wxPaintEvent & event)
  9. {
  10. wxPaintDC dc(this);
  11. wxColour gray, white, red, blue;
  12. wxColour orange, green, brown;
  13. gray.Set(wxT("#d4d4d4"));
  14. white.Set(wxT("#ffffff"));
  15. red.Set(wxT("#ff0000"));
  16. orange.Set(wxT("#fa8e00"));
  17. green.Set(wxT("#619e1b"));
  18. brown.Set(wxT("#715b33"));
  19. blue.Set(wxT("#0d0060"));
  20. dc.SetPen(wxPen(gray));
  21. dc.DrawRectangle(20, 20, 50, 50);
  22. dc.DrawRectangle(30, 40, 50, 50);
  23. dc.SetBrush(wxBrush(white));
  24. dc.DrawRectangle(100, 20, 50, 50);
  25. dc.DrawRectangle(110, 40, 50, 50);
  26. wxRegion region1(100, 20, 50, 50);
  27. wxRegion region2(110, 40, 50, 50);
  28. region1.Intersect(region2);
  29. wxRect rect1 = region1.GetBox();
  30. dc.SetClippingRegion(region1);
  31. dc.SetBrush(wxBrush(red));
  32. dc.DrawRectangle(rect1);
  33. dc.DestroyClippingRegion();
  34. dc.SetBrush(wxBrush(white));
  35. dc.DrawRectangle(180, 20, 50, 50);
  36. dc.DrawRectangle(190, 40, 50, 50);
  37. wxRegion region3(180, 20, 50, 50);
  38. wxRegion region4(190, 40, 50, 50);
  39. region3.Union(region4);
  40. dc.SetClippingRegion(region3);
  41. wxRect rect2 = region3.GetBox();
  42. dc.SetBrush(wxBrush(orange));
  43. dc.DrawRectangle(rect2);
  44. dc.DestroyClippingRegion();
  45. dc.SetBrush(wxBrush(white));
  46. dc.DrawRectangle(20, 120, 50, 50);
  47. dc.DrawRectangle(30, 140, 50, 50);
  48. wxRegion region5(20, 120, 50, 50);
  49. wxRegion region6(30, 140, 50, 50);
  50. region5.Xor(region6);
  51. wxRect rect3 = region5.GetBox();
  52. dc.SetClippingRegion(region5);
  53. dc.SetBrush(wxBrush(green));
  54. dc.DrawRectangle(rect3);
  55. dc.DestroyClippingRegion();
  56. dc.SetBrush(wxBrush(white));
  57. dc.DrawRectangle(100, 120, 50, 50);
  58. dc.DrawRectangle(110, 140, 50, 50);
  59. wxRegion region7(100, 120, 50, 50);
  60. wxRegion region8(110, 140, 50, 50);
  61. region7.Subtract(region8);
  62. wxRect rect4 = region7.GetBox();
  63. dc.SetClippingRegion(region7);
  64. dc.SetBrush(wxBrush(brown));
  65. dc.DrawRectangle(rect4);
  66. dc.DestroyClippingRegion();
  67. dc.SetBrush(white);
  68. dc.DrawRectangle(180, 120, 50, 50);
  69. dc.DrawRectangle(190, 140, 50, 50);
  70. wxRegion region9(180, 120, 50, 50);
  71. wxRegion region10(190, 140, 50, 50);
  72. region10.Subtract(region9);
  73. wxRect rect5 = region10.GetBox();
  74. dc.SetClippingRegion(region10);
  75. dc.SetBrush(wxBrush(blue));
  76. dc.DrawRectangle(rect5);
  77. dc.DestroyClippingRegion();
  78. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "Regions.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Regions *regions = new Regions(wxT("Regions"));
  7. regions->Show(true);
  8. return true;
  9. }

wxWidgets 中的设备上下文 - 图6

图:区域

渐变

在计算机图形学中,渐变是从浅到深或从一种颜色到另一种颜色的阴影的平滑混合。 在 2D 绘图程序和绘图程序中,渐变用于创建彩色背景和特殊效果以及模拟灯光和阴影。 (answers.com)

  1. void GradientFillLinear(const wxRect& rect, const wxColour& initialColour,
  2. const wxColour& destColour, wxDirection nDirection = wxEAST)

此方法从initialColour开始以线性渐变填充由 rect 指定的区域,最终逐渐渐变为destColournDirection参数指定颜色更改的方向,默认值为wxEAST

gradient.h

  1. #include <wx/wx.h>
  2. class Gradient : public wxFrame
  3. {
  4. public:
  5. Gradient(const wxString& title);
  6. void OnPaint(wxPaintEvent& event);
  7. };

gradient.cpp

  1. #include "gradient.h"
  2. Gradient::Gradient(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(220, 260))
  4. {
  5. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Gradient::OnPaint));
  6. this->Centre();
  7. }
  8. void Gradient::OnPaint(wxPaintEvent& event)
  9. {
  10. wxPaintDC dc(this);
  11. wxColour col1, col2;
  12. col1.Set(wxT("#e12223"));
  13. col2.Set(wxT("#000000"));
  14. dc.GradientFillLinear(wxRect(20, 20, 180, 40), col1, col2, wxNORTH);
  15. dc.GradientFillLinear(wxRect(20, 80, 180, 40), col1, col2, wxSOUTH);
  16. dc.GradientFillLinear(wxRect(20, 140, 180, 40), col1, col2, wxEAST);
  17. dc.GradientFillLinear(wxRect(20, 200, 180, 40), col1, col2, wxWEST);
  18. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "gradient.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Gradient *grad = new Gradient(wxT("Gradient"));
  7. grad->Show(true);
  8. return true;
  9. }

wxWidgets 中的设备上下文 - 图7

图:渐变

形状

形状是更复杂的几何对象。 在下面的示例中,我们将绘制各种几何形状。

shapes.h

  1. #include <wx/wx.h>
  2. class Shapes : public wxFrame
  3. {
  4. public:
  5. Shapes(const wxString & title);
  6. void OnPaint(wxPaintEvent & event);
  7. };

shapes.cpp

  1. #include "shapes.h"
  2. Shapes::Shapes(const wxString& title)
  3. : wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(350, 300))
  4. {
  5. this->Connect(wxEVT_PAINT, wxPaintEventHandler(Shapes::OnPaint));
  6. this->Centre();
  7. }
  8. void Shapes::OnPaint(wxPaintEvent& event)
  9. {
  10. wxPaintDC dc(this);
  11. wxPoint lines[] = { wxPoint(20, 260), wxPoint(100, 260),
  12. wxPoint(20, 210), wxPoint(100, 210) };
  13. wxPoint polygon[] = { wxPoint(130, 140), wxPoint(180, 170),
  14. wxPoint(180, 140), wxPoint(220, 110), wxPoint(140, 100) };
  15. wxPoint splines[] = { wxPoint(240, 170), wxPoint(280, 170),
  16. wxPoint(285, 110), wxPoint(325, 110) };
  17. dc.DrawEllipse(20, 20, 90, 60);
  18. dc.DrawRoundedRectangle(130, 20, 90, 60, 10);
  19. dc.DrawArc(240, 40, 340, 40, 290, 20);
  20. dc.DrawPolygon(4, polygon);
  21. dc.DrawRectangle(20, 120, 80, 50);
  22. dc.DrawSpline(4, splines);
  23. dc.DrawLines(4, lines);
  24. dc.DrawCircle(170, 230, 35);
  25. dc.DrawRectangle(250, 200, 60, 60);
  26. }

main.h

  1. #include <wx/wx.h>
  2. class MyApp : public wxApp
  3. {
  4. public:
  5. virtual bool OnInit();
  6. };

main.cpp

  1. #include "main.h"
  2. #include "shapes.h"
  3. IMPLEMENT_APP(MyApp)
  4. bool MyApp::OnInit()
  5. {
  6. Shapes *shapes = new Shapes(wxT("Shapes"));
  7. shapes->Show(true);
  8. return true;
  9. }

wxWidgets 中的设备上下文 - 图8

图:形状

在本章中,我们介绍了 wxWidgets 中的 GDI。