~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Riptide/src/TorrentResultItem.cs

Start cleanup of WindowManager
Add riptide plugin.  Downloads dem torrents!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// TorrentResultItem.cs
 
2
//
 
3
//GNOME Do is the legal property of its developers. Please refer to the
 
4
//COPYRIGHT file distributed with this
 
5
//source distribution.
 
6
//
 
7
// This program is free software; you can redistribute it and/or modify
 
8
// it under the terms of the GNU General Public License as published by
 
9
// the Free Software Foundation; either version 2 of the License, or
 
10
// (at your option) any later version.
 
11
//
 
12
// This program is distributed in the hope that it will be useful,
 
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
15
// GNU General Public License for more details.
 
16
// 
 
17
// You should have received a copy of the GNU General Public License
 
18
// along with this program; if not, write to the Free Software
 
19
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
20
//
 
21
//
 
22
 
 
23
using System;
 
24
 
 
25
using Do.Universe;
 
26
 
 
27
namespace Do.Riptide
 
28
{
 
29
        public class TorrentResultItem : IItem, IComparable
 
30
        {
 
31
                private string name, url, size;
 
32
                private int seeds, leechers;
 
33
                
 
34
                public string Name {
 
35
                        get { return name; }
 
36
                }
 
37
 
 
38
                public string Description {
 
39
                        get {
 
40
                                return "Seeds: " + Seeds + ", Leechers: " + Leechers + ", Size: " + Size;
 
41
                        }
 
42
                }
 
43
 
 
44
                public string Icon {
 
45
                        get { return "gtk-save-as"; }
 
46
                }
 
47
                
 
48
                public string URL {
 
49
                        get { return url; }
 
50
                        set { url = value; }
 
51
                }
 
52
                
 
53
                public string Size {
 
54
                        get { return size; }
 
55
                        set { size = value; }
 
56
                }
 
57
                
 
58
                public int Seeds {
 
59
                        get { return seeds; }
 
60
                        set { seeds = value; }
 
61
                }
 
62
                
 
63
                public int Leechers {
 
64
                        get { return leechers; }
 
65
                        set { leechers = value; }
 
66
                }
 
67
                        
 
68
                public TorrentResultItem(string name)
 
69
                {
 
70
                        this.name = name;
 
71
                }
 
72
 
 
73
                public int CompareTo (object obj)
 
74
                {
 
75
                        if (obj is TorrentResultItem) {
 
76
                                return this.Seeds.CompareTo ((obj as TorrentResultItem).Seeds) * -1;
 
77
                        } else {
 
78
                                throw new ArgumentException ("Object is not a TorrentResultItem");
 
79
                        }
 
80
                }
 
81
        }
 
82
}