3
// GNOME Do is the legal property of its developers.
4
// Please refer to the COPYRIGHT file distributed with this
5
// source distribution.
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;
24
using System.Threading;
32
public class ResumeVM : Act
38
public override string Name {
39
get { return Catalog.GetString("Resume Virtual Machine"); }
42
public override string Description {
43
get { return Catalog.GetString("Resume the selected Virtual Machine"); }
46
public override string Icon {
47
get { return "vm_pause_32px.png@"+GetType().Assembly.FullName; }
50
public override IEnumerable<Type> SupportedItemTypes {
52
return new Type[] { typeof (VMItem) };
56
public override bool SupportsItem (Item item) {
57
//only allow "resuming" of a machine if it is paused
58
VMItem v = item as VMItem;
59
if (v.Status == VMState.paused)
64
public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modifierItems)
66
foreach (Item i in items)
68
VMItem vm = (i as VMItem);
70
VMThread thread = new VMThread(VMState.on, ref vm);
71
Thread t = new Thread (new ThreadStart(thread.DoAction));
72
t.IsBackground = true;