~cszikszoy/docky/mmv3

« back to all changes in this revision

Viewing changes to StandardPlugins/GMail/src/GMailMenuItem.cs

  • Committer: Chris S.
  • Date: 2009-10-22 03:23:13 UTC
  • mfrom: (284.1.7 testaddins)
  • Revision ID: chris@szikszoy.com-20091022032313-2s9kikljologdsyt
enable lazy loading of addins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// Copyright (C) 2009 Robert Dyer
 
3
//
 
4
// This program is free software: you can redistribute it and/or modify
 
5
// it under the terms of the GNU General Public License as published by
 
6
// the Free Software Foundation, either version 3 of the License, or
 
7
// (at your option) any later version.
 
8
//
 
9
// This program is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
// GNU General Public License for more details.
 
13
//
 
14
// You should have received a copy of the GNU General Public License
 
15
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
//
 
17
 
 
18
using System;
 
19
 
 
20
using Mono.Unix;
 
21
 
 
22
using Docky.Menus;
 
23
using Docky.Services;
 
24
 
 
25
namespace GMail
 
26
{
 
27
        public class GMailMenuItem : MenuItem
 
28
        {
 
29
                UnreadMessage message;
 
30
                
 
31
                public GMailMenuItem (UnreadMessage message) : base (message.Topic + " - " + Catalog.GetString ("From: ") + message.FromName, "gmail-logo.png@" + message.GetType ().Assembly.FullName)
 
32
                {
 
33
                        this.message = message;
 
34
                        Clicked += delegate {
 
35
                                DockServices.System.Open (this.message.Link);
 
36
                        };
 
37
                }
 
38
        }
 
39
}
 
40