~iwarford/do-plugins/inline-google-fix

« back to all changes in this revision

Viewing changes to Evolution/src/EmailContactDetailItem.cs

  • Committer: Alex Launi
  • Date: 2008-07-01 20:02:42 UTC
  • mfrom: (151.1.24 do-plugins)
  • Revision ID: alex@eriktorvaldsonn-20080701200242-l85j12hkp0os19tb
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  EmailContactDetailItem.cs
 
2
//
 
3
//  GNOME Do is the legal property of its developers.
 
4
//  Please refer to the 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
using System;
 
21
using Do.Universe;
 
22
 
 
23
namespace Evolution
 
24
{
 
25
        class EmailContactDetailItem : ContactDetailItem {
 
26
                public EmailContactDetailItem (ContactItem owner, string detail) :
 
27
                        base (owner, detail)
 
28
                {
 
29
                }
 
30
 
 
31
                public override string Name {
 
32
                        get {
 
33
                                return "Email";
 
34
                                /* // The home/other/work tags are not exact.
 
35
                                string desc = "";
 
36
                                if (Key.Contains (".work"))
 
37
                                        desc += "Work Email";
 
38
                                else if (Key.Contains (".home"))
 
39
                                        desc += "Home Email";
 
40
                                else if (Key.Contains (".other"))
 
41
                                        desc += "Other Email";
 
42
                                return desc;
 
43
                                */
 
44
                        }
 
45
                }
 
46
 
 
47
                public override string Icon {
 
48
                        get { return "gnome-stock-mail-snd"; }
 
49
                }
 
50
        }
 
51
}