summaryrefslogtreecommitdiff
path: root/platform/windows/gsview/RectList.cs
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-04-03 12:01:49 +0100
committerRobin Watts <robin.watts@artifex.com>2015-04-06 19:31:59 +0100
commit4c9611cb3d9f18322f8e77f8ba493799d77c0a0a (patch)
treed8b8fa3450ba94391d30ab61038ee97cfbabbc6d /platform/windows/gsview/RectList.cs
parent1ed4656f99a09f38216d11275fe85bb75c0d635a (diff)
downloadmupdf-4c9611cb3d9f18322f8e77f8ba493799d77c0a0a.tar.xz
Remove gsview from mupdf repo.
It has its own repo now. See http://git.ghostscript.com/?p=gsview.git
Diffstat (limited to 'platform/windows/gsview/RectList.cs')
-rw-r--r--platform/windows/gsview/RectList.cs99
1 files changed, 0 insertions, 99 deletions
diff --git a/platform/windows/gsview/RectList.cs b/platform/windows/gsview/RectList.cs
deleted file mode 100644
index ecbc013a..00000000
--- a/platform/windows/gsview/RectList.cs
+++ /dev/null
@@ -1,99 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.ComponentModel;
-
-namespace gsview
-{
- public enum Link_t
- {
- LINK_GOTO,
- LINK_URI,
- TEXTBOX,
- NOT_SET
- };
-
- public class RectList : INotifyPropertyChanged
- {
- public String Character
- {
- get;
- set;
- }
-
- public String Index
- {
- get;
- set;
- }
-
- public String Color
- {
- get;
- set;
- }
-
- public double Height
- {
- get;
- set;
- }
-
- public double Width
- {
- get;
- set;
- }
-
- public double X
- {
- get;
- set;
- }
-
- public double Y
- {
- get;
- set;
- }
-
- public double Scale
- {
- get;
- set;
- }
-
- public Link_t Type
- {
- get;
- set;
- }
-
- public int PageNum
- {
- get;
- set;
- }
-
- public Uri Urilink
- {
- get;
- set;
- }
-
- public event PropertyChangedEventHandler PropertyChanged;
-
- public void PageRefresh()
- {
- if (PropertyChanged != null)
- {
- PropertyChanged(this, new PropertyChangedEventArgs("X"));
- PropertyChanged(this, new PropertyChangedEventArgs("Height"));
- PropertyChanged(this, new PropertyChangedEventArgs("Width"));
- PropertyChanged(this, new PropertyChangedEventArgs("Y"));
- PropertyChanged(this, new PropertyChangedEventArgs("Color"));
- }
- }
- }
-}