📄 dialogpicturepanel.java
字号:
//
// $Id: DialogPicturePanel.java 95 2007-05-02 03:27:05 +0000 (mer., 02 mai 2007)
// /C=DE/ST=Baden-Wuerttemberg/O=ISDN4Linux/OU=Fritz
// Elfert/CN=svn-felfert@isdn4linux.de/emailAddress=fritz@fritz-elfert.de $
//
// jupload - A file upload applet.
// Copyright 2007 The JUpload Team
//
// Created: 2006-07-11
// Creator: etienne_sf
// Last modified: $Date: 2009-02-16 12:42:50 +0100 (lun., 16 févr. 2009) $
//
// This program 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 2 of the License, or (at your option) any later
// version. This program 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 this program; if not, write to the Free Software Foundation, Inc.,
// 675 Mass Ave, Cambridge, MA 02139, USA.
package wjhk.jupload2.gui.image;
import java.awt.event.MouseEvent;
import wjhk.jupload2.filedata.PictureFileData;
import wjhk.jupload2.policies.UploadPolicy;
/**
* The picture for the PictureDialog. The difference with the PicturePanel, is
* that a click on it closes the Dialog.
*
* @author etienne_sf
*/
public class DialogPicturePanel extends PicturePanel {
/** A generated serialVersionUID, to avoid warning during compilation */
private static final long serialVersionUID = 1333603128496671158L;
/**
* The JDialog containing this panel.
*/
PictureDialog pictureDialog;
/**
* @param pictureDialog
* @param uploadPolicy
* @param pictureFileData
*
*/
public DialogPicturePanel(PictureDialog pictureDialog,
UploadPolicy uploadPolicy, PictureFileData pictureFileData) {
super(false, uploadPolicy);
this.pictureDialog = pictureDialog;
// pictureDialog.getContentPane().setCursor(new
// Cursor(Cursor.WAIT_CURSOR));
setPictureFile(pictureFileData, null, null);
// pictureDialog.getContentPane().setCursor(null);
}
/**
* @see java.awt.event.MouseListener#mouseClicked(java.awt.event.MouseEvent)
*/
@Override
public void mouseClicked(MouseEvent arg0) {
// Let's close the current DialogBox, if it has not already be done.
if (this.pictureDialog != null) {
this.uploadPolicy.displayDebug(
"[DialogPicturePanel] Before pictureDialog.dispose()", 50);
this.pictureDialog.dispose();
this.pictureDialog = null;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -