diff options
Diffstat (limited to 'platform/windows/gsview/Links.cs')
-rw-r--r-- | platform/windows/gsview/Links.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/platform/windows/gsview/Links.cs b/platform/windows/gsview/Links.cs new file mode 100644 index 00000000..ef902381 --- /dev/null +++ b/platform/windows/gsview/Links.cs @@ -0,0 +1,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; + } + } +} |