~alexlauni/do-plugins/jolicloud

« back to all changes in this revision

Viewing changes to GoogleDocs/src/GDocsAbstractItem.cs

  • Committer: Alex Launi
  • Date: 2009-06-24 13:17:29 UTC
  • mfrom: (618.1.17 do-plugins)
  • Revision ID: alex.launi@gmail.com-20090624131729-1l9g76ejqq4leka4
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// GDocsAbstractItem.cs
 
2
// 
 
3
// Copyright (C) 2009 GNOME Do
 
4
// 
 
5
// This program is free software: you can redistribute it and/or modify
 
6
// it under the terms of the GNU General Public License as published by
 
7
// the Free Software Foundation, either version 3 of the License, or
 
8
// (at your option) any later version.
 
9
// 
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details.
 
14
// 
 
15
// You should have received a copy of the GNU General Public License
 
16
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
using System;
 
19
using System.Text;
 
20
 
 
21
using Mono.Addins;
 
22
 
 
23
using Do.Universe;
 
24
using Do.Platform;
 
25
 
 
26
namespace GDocs
 
27
{
 
28
        public class GDocsAbstractItem : Item, IOpenableItem
 
29
        {
 
30
                string name, url;
 
31
                
 
32
                public GDocsAbstractItem (string name, string url)
 
33
                {
 
34
                        this.name = name;
 
35
                        this.url = url;
 
36
                }
 
37
                
 
38
                public override string Name {
 
39
                        get { return name; }
 
40
                }
 
41
                
 
42
                public override string Description {
 
43
                        get { return AddinManager.CurrentLocalizer.GetString ("Google Docs Generic Document"); }
 
44
                }
 
45
                
 
46
                public virtual string URL {
 
47
                        get { return url; }
 
48
                }
 
49
                
 
50
                public override string Icon {
 
51
                        get { return "x-office-document"; }
 
52
                }
 
53
                
 
54
                public void Open ()
 
55
                {
 
56
                        Services.Environment.OpenUrl (url);
 
57
                }
 
58
        }
 
59
}