~iwarford/do-plugins/fart-plugin-fwiw

« back to all changes in this revision

Viewing changes to RememberTheMilk/src/RTMCompleteTask.cs

  • Committer: Jason Jones
  • Date: 2008-12-24 04:45:02 UTC
  • mfrom: (335.1.9 do-plugins)
  • Revision ID: jasonedwardjones@gmail.com-20081224044502-ra56ym06cp1iqs7t
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* RTMCompleteTask.cs
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this source distribution.
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
using System;
 
21
using System.Linq;
 
22
using System.Collections.Generic;
 
23
using Mono.Unix;
 
24
 
 
25
 
 
26
using Do.Universe;
 
27
 
 
28
namespace Do.Addins.RTM
 
29
{
 
30
        
 
31
        
 
32
        public class RTMCompleteTask : Act
 
33
        {
 
34
                public override string Name {
 
35
                        get { return Catalog.GetString ("Complete"); }
 
36
                }               
 
37
                                
 
38
                public override string Description {
 
39
                        get { return Catalog.GetString ("Complete a selected task"); }
 
40
        }
 
41
                        
 
42
                public override string Icon {
 
43
                        get { return "task-complete.png@" + GetType ().Assembly.FullName; }
 
44
                }
 
45
                
 
46
                public override IEnumerable<Type> SupportedItemTypes {
 
47
                        get {
 
48
                                return new Type[] {
 
49
                                        typeof (RTMTaskItem),
 
50
                                };
 
51
                        }
 
52
                }
 
53
                
 
54
                public override IEnumerable<Type> SupportedModifierItemTypes {
 
55
                    get { return null; }
 
56
        }
 
57
        
 
58
        public override bool ModifierItemsOptional {
 
59
            get {return true; }
 
60
        }
 
61
        
 
62
        public override bool SupportsItem (Item item) 
 
63
        {
 
64
            return (item as RTMTaskItem).Completed == DateTime.MinValue;
 
65
        }
 
66
        
 
67
        public override bool SupportsModifierItemForItems (IEnumerable<Item> item, Item modItem) 
 
68
        {
 
69
                        return false;
 
70
        }
 
71
        
 
72
        public override IEnumerable<Item> DynamicModifierItemsForItem (Item item) 
 
73
        {
 
74
            return null;
 
75
        }
 
76
        
 
77
        public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modifierItems) 
 
78
        {
 
79
                        RTM.CompleteTask ((items.First () as RTMTaskItem).ListId, (items.First () as RTMTaskItem).TaskSeriesId,
 
80
                                          (items.First () as RTMTaskItem).Id);
 
81
            return null;
 
82
        }
 
83
        }
 
84
}