Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestDrawingArea.cs « GdiTest - github.com/FreeRDP/GdiTest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f32ddd2b8bb5991d49cbacecefafc2eba321467a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using Cairo;
using Gtk;

namespace GdiTest
{
	public struct Area
	{
		public int X;
		public int Y;
		public int W;
		public int H;
	}
	
	public abstract class TestDrawingArea : DrawingArea
	{	
		public TestDrawingArea ()
		{
		}
		
		abstract public String getDumpText();
	}
}