~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Shelf/src/ShelfActions.cs

  • Committer: Christopher Halse Rogers
  • Date: 2008-08-24 08:44:24 UTC
  • mfrom: (244.1.2 do-plugins)
  • Revision ID: raof@ubuntu.com-20080824084424-8gp5ff6v9nku9z21
Merge in the tip of 0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ShelfActions.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
using System.Collections.Generic;
 
25
using Mono.Unix;
 
26
 
 
27
namespace Do.Universe
 
28
{
 
29
        
 
30
        public class ShelfExploreAction : AbstractAction
 
31
        {
 
32
                public override string Name {
 
33
                        get { return Catalog.GetString ("Explore Shelf"); }
 
34
                }
 
35
 
 
36
                public override string Description {
 
37
                        get { return Catalog.GetString ("Get a list of everything in your shelf"); }
 
38
                }
 
39
 
 
40
                public override string Icon {
 
41
                        get { return "folder-saved-search"; }
 
42
                }
 
43
                
 
44
                public override Type[] SupportedItemTypes {
 
45
                        get { return new Type[] { 
 
46
                                        typeof (ShelfItem), 
 
47
                                }; 
 
48
                        }
 
49
                }
 
50
                
 
51
                public override IItem[] Perform (IItem[] items, IItem[] modItems)
 
52
                {
 
53
                        return (items[0] as ShelfItem).Items.ToArray ();
 
54
                }
 
55
        }
 
56
        
 
57
        public class ShelfRemoveAction : AbstractAction
 
58
        {
 
59
                public override string Name {
 
60
                        get { return Catalog.GetString ("Remove From Shelf"); }
 
61
                }
 
62
                
 
63
                public override string Description {
 
64
                        get { return Catalog.GetString ("Remove Selected Item From Shelf"); }
 
65
                }
 
66
 
 
67
                public override string Icon {
 
68
                        get { return "remove"; }
 
69
                }
 
70
                
 
71
                public override bool ModifierItemsOptional {
 
72
                        get { return true; }
 
73
                }
 
74
 
 
75
                public override Type[] SupportedItemTypes {
 
76
                        get { return new Type[] {
 
77
                                typeof (IItem),
 
78
                                };
 
79
                        }
 
80
                }
 
81
 
 
82
                public override bool SupportsItem (IItem item)
 
83
                {
 
84
                        return ShelfItemSource.InShelf (item);
 
85
                }
 
86
 
 
87
                public override IItem[] Perform (IItem[] items, IItem[] modItems)
 
88
                {
 
89
                        if (modItems.Length == 0)
 
90
                                ShelfItemSource.RemoveFromDefault (items[0]);
 
91
                        else
 
92
                                (modItems[0] as ShelfItem).RemoveItem (items[0]);
 
93
                        
 
94
                        return null;
 
95
                }
 
96
        }
 
97
        
 
98
        public class ShelfAddAction : AbstractAction
 
99
        {
 
100
                public override string Name {
 
101
                        get { return Catalog.GetString ("Add To Shelf"); }
 
102
                }
 
103
                
 
104
                public override string Description {
 
105
                        get { return Catalog.GetString ("Add Selected Item to Shelf"); }
 
106
                }
 
107
 
 
108
                public override string Icon {
 
109
                        get { return "bookmark_add"; }
 
110
                }
 
111
                
 
112
                public override bool ModifierItemsOptional {
 
113
                        get { return true; }
 
114
                }
 
115
 
 
116
                public override Type[] SupportedItemTypes {
 
117
                        get { return new Type[] {
 
118
                                typeof (IItem),
 
119
                                };
 
120
                        }
 
121
                }
 
122
 
 
123
                public override bool SupportsItem (IItem item)
 
124
                {
 
125
                        return (!(item is ShelfItem) && !ShelfItemSource.InShelf (item));
 
126
                }
 
127
 
 
128
                public override IItem[] Perform (IItem[] items, IItem[] modItems)
 
129
                {
 
130
                        if (modItems.Length == 0) {
 
131
                                ShelfItemSource.AddToDefault (items[0]);
 
132
                        } else {
 
133
                                (modItems[0] as ShelfItem).AddItem (items[0]);
 
134
                        }
 
135
                        return null;
 
136
                }
 
137
 
 
138
        }
 
139
}