/**
* 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.actions;
import com.google.inject.Inject;
import listo.client.taskfilters.CompletionFilter;
import listo.client.Lang;
import listo.utils.logging.Log;
import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
public class ViewAllCompletedAction extends RadioButtonAction {
private final CompletionFilter completionFilter;
@Inject
protected ViewAllCompletedAction(Log log, Lang lang, CompletionFilter completionFilter) {
super(log, lang, "viewAllCompleted");
this.completionFilter = completionFilter;
putValue(Action.MNEMONIC_KEY, KeyEvent.VK_A);
}
protected void perform(ActionEvent e) {
completionFilter.setMode(CompletionFilter.Mode.AllCompleted);
}
}
|