ubuntu下gtk库是默认已安装的,开发部署很方便,以下是我写的自绘控件例子:
EuhatChildWnd.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #pragma once struct _cairo_surface; struct _GtkWidget; class EuhatChildWnd { public: EuhatChildWnd(int width, int height); ~EuhatChildWnd(); void clear(); void drawBrush(struct _GtkWidget *widget, double x, double y); struct _GtkWidget *drawingArea_; struct _cairo_surface *surface_; double xFrom_; double yFrom_; }; |