~d6g/do-plugins/Timer

« back to all changes in this revision

Viewing changes to GDocs/src/GDocsTrashDocument.cs

  • Committer: Alex Launi
  • Date: 2008-10-20 22:21:07 UTC
  • mfrom: (248.1.8 GDocs)
  • Revision ID: alex@eriktorvaldsonn-20081020222107-xl42p0fnsg2p0tsb
Added GDocs plugin from Peng Deng

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GDocsTrashDocument.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 3 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, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
using System;
 
22
using System.Text;
 
23
using System.Collections.Generic;
 
24
using Mono.Unix;
 
25
 
 
26
using Do.Addins;
 
27
using Do.Universe;
 
28
 
 
29
using Google.GData.Client;
 
30
using Google.GData.Documents;
 
31
 
 
32
namespace GDocs
 
33
{
 
34
        public sealed class GDocsTrashDocument : IAction
 
35
        {
 
36
                public string Name {
 
37
                        get { return Catalog.GetString ("Delete Document"); }
 
38
                }
 
39
                
 
40
                public string Description {
 
41
                        get { return Catalog.GetString ("Move a document into Trash at Google Docs"); }
 
42
        }
 
43
                        
 
44
                public string Icon {
 
45
                        //get { return "gDocsTrashIcon.png@" + GetType ().Assembly.FullName; }
 
46
                        get { return "user-trash";}
 
47
                }
 
48
                
 
49
                public Type[] SupportedItemTypes {
 
50
                        get {
 
51
                                return new Type[] {
 
52
                                        typeof (GDocsItem),     
 
53
                                };
 
54
                        }
 
55
                }
 
56
        
 
57
                public Type[] SupportedModifierItemTypes {
 
58
                    get { return null; }
 
59
        }               
 
60
                
 
61
        public bool SupportsItem (IItem item) 
 
62
        {
 
63
                        return true;
 
64
        }
 
65
        
 
66
        public bool SupportsModifierItemForItems (IItem[] items, IItem modItem)
 
67
        {
 
68
                        return false;
 
69
                }        
 
70
                
 
71
        public bool ModifierItemsOptional {
 
72
            get { return true; }
 
73
        }
 
74
                
 
75
                public IItem[] DynamicModifierItemsForItem (IItem item) 
 
76
        {
 
77
            return null;
 
78
        }
 
79
        
 
80
        public IItem[] Perform (IItem[] items, IItem[] modifierItems) 
 
81
        {                                               
 
82
            GDocs.TrashDocument (items[0] as GDocsItem);
 
83
                        return null;
 
84
        }
 
85
        }
 
86
}