Package com.lightcrafts.app.menu

Source Code of com.lightcrafts.app.menu.BrowserPrintMenuItem

/* Copyright (C) 2005-2011 Fabio Riccardi */

package com.lightcrafts.app.menu;

import com.lightcrafts.app.Application;
import com.lightcrafts.app.ComboFrame;
import com.lightcrafts.ui.browser.view.AbstractImageBrowser;

import java.awt.event.ActionEvent;
import java.io.File;

class BrowserPrintMenuItem extends BrowserMenuItem {
   
    BrowserPrintMenuItem(ComboFrame frame) {
        super(frame, "BrowserPrint");
    }

    public void actionPerformed(ActionEvent event) {
        ComboFrame frame = getComboFrame();
        AbstractImageBrowser browser = getBrowser();
        File file = browser.getLeadSelectedFile();
        if (file != null) {
            Application.print(frame, file);
        }
    }
}
TOP

Related Classes of com.lightcrafts.app.menu.BrowserPrintMenuItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.