working
[tfs.git] / tools / tf / NoSourceView.cs
blob83e2f8aa8fd82be156de4779190a7f65fed8348c
1 using System;
2 using System.Text;
3 using Gtk;
4 using Pango;
6 public class MyTextView : Gtk.TextView
8 public MyTextView()
10 CursorVisible = false;
11 Editable = false;
12 ModifyFont(Pango.FontDescription.FromString("Vera Sans Mono 16"));
15 public void Clear()
17 Buffer.Text = String.Empty;
20 public Update(string path, string contents)
22 viewBuffer.Text = contents;