Renamed all packages to gr.grnet.pithos.*
[pithos-web-client] / src / gr / grnet / pithos / web / client / commands / CutCommand.java
1 /*
2  * Copyright 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.grnet.pithos.web.client.commands;
20
21 import gr.grnet.pithos.web.client.GSS;
22 import gr.grnet.pithos.web.client.clipboard.Clipboard;
23 import gr.grnet.pithos.web.client.clipboard.ClipboardItem;
24 import gr.grnet.pithos.web.client.rest.resource.FileResource;
25 import gr.grnet.pithos.web.client.rest.resource.GroupUserResource;
26 import gr.grnet.pithos.web.client.rest.resource.RestResourceWrapper;
27
28 import java.util.List;
29
30 import com.google.gwt.core.client.GWT;
31 import com.google.gwt.user.client.Command;
32 import com.google.gwt.user.client.ui.PopupPanel;
33
34
35 /**
36  * Command for cutting a file, folder or user to GSS Clipboard
37  * @author kman
38  *
39  */
40 public class CutCommand implements Command{
41         private PopupPanel containerPanel;
42
43         public CutCommand( PopupPanel _containerPanel ){
44                 containerPanel = _containerPanel;
45         }
46
47         @Override
48         public void execute() {
49                 containerPanel.hide();
50                 Object selection = GSS.get().getCurrentSelection();
51                 if (selection == null)
52                         return;
53                 GWT.log("selection: " + selection.toString(), null);
54                 if (selection instanceof RestResourceWrapper) {
55                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (RestResourceWrapper) selection);
56                         GSS.get().getClipboard().setItem(clipboardItem);
57                 } else if (selection instanceof FileResource) {
58                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (FileResource) selection);
59                         GSS.get().getClipboard().setItem(clipboardItem);
60                 } else if (selection instanceof GroupUserResource) {
61                         ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (GroupUserResource) selection);
62                         GSS.get().getClipboard().setItem(clipboardItem);
63                 }
64                 else if (selection instanceof List){
65                          ClipboardItem clipboardItem = new ClipboardItem(Clipboard.CUT, (List<FileResource>) selection);
66                          GSS.get().getClipboard().setItem(clipboardItem);
67                  }
68         }
69
70 }