~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to Tracker/src/TrackerSearch.cs

  • Committer: Alex Launi
  • Date: 2009-01-17 00:00:16 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: alex.launi@gmail.com-20090117000016-x3a5vlh5c17z0msd
Add tracker search plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* TrackerSearch.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
 
 
22
using System;
 
23
using System.Linq;
 
24
using System.Diagnostics;
 
25
using System.Collections.Generic;
 
26
 
 
27
using Mono.Unix;
 
28
 
 
29
using Do.Platform;
 
30
using Do.Universe;
 
31
 
 
32
namespace TrackerSearch
 
33
{
 
34
 
 
35
  public class TrackerSearchAction : Act
 
36
  {
 
37
 
 
38
    public override string Name {
 
39
      get { return Catalog.GetString ("Search with Tracker"); }
 
40
    }
 
41
 
 
42
    public override string Description {
 
43
      get { return Catalog.GetString ("Search with tracker in tracker-saerch-tool."); }
 
44
    }
 
45
 
 
46
    public override string Icon {
 
47
      get { return "tracker"; }
 
48
    }
 
49
    public override IEnumerable<Type> SupportedItemTypes {
 
50
      get { yield return typeof (ITextItem); }
 
51
    }
 
52
 
 
53
    public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modifierItems)
 
54
    {
 
55
      string searchString;
 
56
      searchString = (items.First () as ITextItem).Text;
 
57
      try {
 
58
        Process.Start ("tracker-search-tool", "\"" + searchString + "\"");
 
59
      } catch (Exception e) {
 
60
        Log<TrackerSearchAction>.Error ("Could not run tracker-search-tool {0}: {1}", searchString, e.Message);
 
61
      }
 
62
      
 
63
      yield break;
 
64
    }
 
65
  }
 
66
}
 
67