diff options
author | Robin Watts <robin.watts@artifex.com> | 2015-04-03 12:01:49 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-04-06 19:31:59 +0100 |
commit | 4c9611cb3d9f18322f8e77f8ba493799d77c0a0a (patch) | |
tree | d8b8fa3450ba94391d30ab61038ee97cfbabbc6d /platform/windows/gsview/gsOutput.xaml.cs | |
parent | 1ed4656f99a09f38216d11275fe85bb75c0d635a (diff) | |
download | mupdf-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/gsOutput.xaml.cs')
-rw-r--r-- | platform/windows/gsview/gsOutput.xaml.cs | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/platform/windows/gsview/gsOutput.xaml.cs b/platform/windows/gsview/gsOutput.xaml.cs deleted file mode 100644 index c2aa9375..00000000 --- a/platform/windows/gsview/gsOutput.xaml.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -//using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Shapes; - -namespace gsview -{ - /// <summary> - /// Interaction logic for gsOutput.xaml - /// </summary> - public partial class gsOutput : Window - { - gsIO m_gsIO; - public gsOutput() - { - InitializeComponent(); - this.Closing += new System.ComponentModel.CancelEventHandler(FakeWindowClosing); - m_gsIO = new gsIO(); - xaml_gsText.DataContext = m_gsIO; - } - - void FakeWindowClosing(object sender, System.ComponentModel.CancelEventArgs e) - { - e.Cancel = true; - this.Hide(); - } - - private void HideWindow(object sender, RoutedEventArgs e) - { - this.Hide(); - } - - public void RealWindowClosing() - { - this.Closing -= new System.ComponentModel.CancelEventHandler(FakeWindowClosing); - this.Close(); - } - - public void Update(String newstring, int len) - { - m_gsIO.gsIOString += newstring.Substring(0, len); - m_gsIO.PageRefresh(); - } - - private void ClearContents(object sender, RoutedEventArgs e) - { - m_gsIO.gsIOString = null; - m_gsIO.PageRefresh(); - } - } -} |