~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to GNOME-Screenshot/TakeScreenshotAction.cs

  • Committer: Christopher James Halse Rogers
  • Date: 2008-04-03 22:32:04 UTC
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: chalserogers@gmail.com-20080403223204-yh7zudzdzs3xwi7r
Revert deleted GNOME-Screenshot, GNOME-Terminal, GmailContactItemSource, and Tasque plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* TakeScreenshotAction.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.Diagnostics;
 
23
using System.Collections.Generic;
 
24
 
 
25
using Do.Universe;
 
26
 
 
27
namespace GNOME {
 
28
 
 
29
        public class TakeScreenshotAction : AbstractAction {
 
30
 
 
31
                public override string Name {
 
32
                        get { return "Take screenshot"; }
 
33
                }
 
34
 
 
35
                public override string Description {
 
36
                        get { return "Takes a screenshot with optional delay."; }
 
37
                }
 
38
 
 
39
                public override string Icon {
 
40
                        get { return "camera"; }
 
41
                }
 
42
 
 
43
                public override Type [] SupportedItemTypes {
 
44
                        get {
 
45
                                return new Type [] {
 
46
                                        typeof (ScreenshotItem),
 
47
                                };
 
48
                        }
 
49
                }
 
50
 
 
51
                public override Type [] SupportedModifierItemTypes {
 
52
                        get {
 
53
                                return new Type [] {
 
54
                                        typeof (ScreenshotDelayItem),
 
55
                                };
 
56
                        }
 
57
                }
 
58
 
 
59
                public override bool ModifierItemsOptional {
 
60
                        get { return true; }
 
61
                }
 
62
 
 
63
                public override IItem [] DynamicModifierItemsForItem (IItem item)
 
64
                {
 
65
                        IItem [] items = new IItem [100];
 
66
                        for (int i = 0; i < items.Length; ++i)
 
67
                                items [i] = new ScreenshotDelayItem (i+1);
 
68
                        return items;
 
69
                }
 
70
 
 
71
                public override IItem [] Perform (IItem [] items, IItem [] modItems)
 
72
                {
 
73
                        int seconds;
 
74
                        string window;
 
75
 
 
76
                        window = "";
 
77
                        seconds = 0;
 
78
 
 
79
                        if (items [0] is CurrentWindowScreenshotItem)
 
80
                                window = "--window";
 
81
 
 
82
                        if (modItems.Length > 0)
 
83
                                seconds = (modItems [0] as ScreenshotDelayItem).Seconds;
 
84
                                
 
85
                        Process.Start (string.Format ("gnome-screenshot {0} --delay={1}", window, seconds));
 
86
                        return null;
 
87
                }
 
88
        }
 
89
}