/**
* Copyright 2008 Mathias Doenitz, http://lis.to/
*
* This file is part of the lis.to java desktop client. The lis.to java desktop client is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* The lis.to java desktop client is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with the lis.to java desktop client.
* If not, see http://www.gnu.org/licenses/
*/
package listo.client.viewlists;
import com.google.inject.Inject;
import listo.client.actions.Actions;
public class TrashView extends View {
private final Actions actions;
@Inject
public TrashView(Actions actions) {
this.actions = actions;
}
public void render(ViewListRenderer renderer, boolean isSelected, boolean hasFocus, boolean isDrop) {
super.render(renderer, isSelected, hasFocus, isDrop);
if (isDrop && actions.detachCurrentFoldersAction.isEnabled()) {
renderer.setText("Remove from folder");
renderer.setIcon("16x16/folder_out.png");
} else {
renderer.setText("Trash");
renderer.setIcon(taskCount > 0 ? "16x16/trash_full.png" : "16x16/trash.png");
}
renderer.setLevel(0);
renderer.setBold(false);
}
}
|