/*******************************************************************************
* Copyright 2007 Neptuny s.r.l. - www.neptuny.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package com.neptuny.xgrapher.cli;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JToolBar;
import com.neptuny.xgrapher.cli.actions.ResetGraphAction;
import com.neptuny.xgrapher.cli.controller.Application;
/**
* The application toolbar.
*
* @author Riccardo Govoni [riccardo.govoni@neptuny.it]
* @since Sep 25, 2007
*
*/
public class XGrapherToolbar extends JToolBar {
private Application app;
public XGrapherToolbar(Application app) {
this.app = app ;
JButton b;
// b = new JButton(
// "Toolbar Button1",
// new ImageIcon(this.getClass().getClassLoader().getResource("net/battlehorse/XGrapher/cli/resources/img/accept.png")));
//
// add(b);
//
// b = new JButton(
// "Toolbar Button2",
// new ImageIcon(this.getClass().getClassLoader().getResource("net/battlehorse/XGrapher/cli/resources/img/cancel.png")));
//
// add(b);
b = new JButton(new ResetGraphAction(app));
b.setIcon(new ImageIcon(this.getClass().getClassLoader().getResource("net/battlehorse/XGrapher/cli/resources/img/arrow_refresh.png")));
add(b);
}
}