i am on crack, fix my refactoring; do a bit more, correctly

svn path=/trunk/msdn-browse/; revision=48536
This commit is contained in:
Ben Maurer 2005-08-19 03:47:53 +00:00
Родитель 37681a578e
Коммит 4b475acd9a
1 изменённых файлов: 10 добавлений и 14 удалений

24
main.cs
Просмотреть файл

@ -51,13 +51,15 @@ class MsdnView : Window {
<frame src='" + n.Href + @"?frame=true' />
</frameset>";
wc.OpenStream ("http://msdn.microsoft.com/", "text/html");
wc.OpenStream (MsdnClient.MsdnBase, "text/html");
wc.AppendData (html);
wc.CloseStream ();
};
Store.ConnectLazyLoad (view);
view.RowExpanded += delegate (object o, RowExpandedArgs args) {
TreeNode n = (TreeNode) Store.GetNode (args.Path);
n.PopulateChildrenAsync ();
};
}
void InitTree ()
@ -80,18 +82,20 @@ class MsdnView : Window {
}
}
class MsdnClient {
static class MsdnClient {
static readonly XmlSerializer [] serializers = XmlSerializer.FromTypes (new Type [] {typeof (Tree), typeof (TreeNode)});
static readonly XmlSerializer tree_ser = serializers [0];
static readonly XmlSerializer node_ser = serializers [1];
public const string MsdnBase = "http://msdn.microsoft.com";
public static Stream OpenRead (string s)
{
// Pretend you are using a 56k connection ;-)
// Thread.Sleep (1000);
WebClient wc = new WebClient ();
wc.BaseAddress = "http://msdn.microsoft.com";
wc.BaseAddress = MsdnBase;
return wc.OpenRead (s);
}
@ -152,14 +156,6 @@ public class TreeNode : Gtk.TreeNode {
}
}
public void ConnectLazyLoad (NodeView nv)
{
nv.RowExpanded += delegate (object o, RowExpandedArgs args) {
TreeNode n = (TreeNode) Store.GetNode (args.Path);
n.PopulateChildrenAsync ();
};
}
public void PopulateChildrenData ()
{
if (Children != null || NodeXmlSrc == null)
@ -176,7 +172,7 @@ public class TreeNode : Gtk.TreeNode {
}
bool populating;
void PopulateChildrenAsync ()
public void PopulateChildrenAsync ()
{
// Fastpath filled ones
if (Children != null || NodeXmlSrc == null)