summaryrefslogtreecommitdiff
path: root/platform/winrt/gsview/Links.cs
blob: ef90238186094603a3a495502af0e4c2f2864b5e (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
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//using System.Threading.Tasks;
using System.Drawing;

namespace gsview
{
	public enum link_t
	{
		LINK_GOTO = 0,
		LINK_URI,
		TEXTBOX,	/* Do double duty with this class */
		NOT_SET,
	};

	class Links
	{
		link_t type;
		Uri uri;
		int page_num;

		public Links()
		{
			uri = new Uri("");
			page_num = -1;
			type = link_t.NOT_SET;
		}
	}
}