1
/* TakeScreenshotAction.cs
3
* GNOME Do is the legal property of its developers. Please refer to the
4
* COPYRIGHT file distributed with this
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.
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.
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/>.
22
using System.Diagnostics;
23
using System.Collections.Generic;
29
public class TakeScreenshotAction : AbstractAction {
31
public override string Name {
32
get { return "Take screenshot"; }
35
public override string Description {
36
get { return "Takes a screenshot with optional delay."; }
39
public override string Icon {
40
get { return "camera"; }
43
public override Type [] SupportedItemTypes {
46
typeof (ScreenshotItem),
51
public override Type [] SupportedModifierItemTypes {
54
typeof (ScreenshotDelayItem),
59
public override bool ModifierItemsOptional {
63
public override IItem [] DynamicModifierItemsForItem (IItem item)
65
IItem [] items = new IItem [100];
66
for (int i = 0; i < items.Length; ++i)
67
items [i] = new ScreenshotDelayItem (i+1);
71
public override IItem [] Perform (IItem [] items, IItem [] modItems)
79
if (items [0] is CurrentWindowScreenshotItem)
82
if (modItems.Length > 0)
83
seconds = (modItems [0] as ScreenshotDelayItem).Seconds;
85
Process.Start (string.Format ("gnome-screenshot {0} --delay={1}", window, seconds));