📄 updatewindow.java
字号:
/*
* Created on 7 mai 2004
* Created by Olivier Chalouhi
*
* Copyright (C) 2004 Aelitis SARL, All rights Reserved
*
* 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.
*
* 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 ( see the LICENSE file ).
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* AELITIS, SARL au capital de 30,000 euros,
* 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
*/
package org.gudy.azureus2.ui.swt.update;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.SashForm;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.layout.FormAttachment;
import org.eclipse.swt.layout.FormData;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.ProgressBar;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
import com.aelitis.azureus.core.*;
import org.gudy.azureus2.core3.config.COConfigurationManager;
import org.gudy.azureus2.core3.internat.MessageText;
import org.gudy.azureus2.core3.util.AERunnable;
import org.gudy.azureus2.core3.util.Constants;
import org.gudy.azureus2.core3.util.DisplayFormatters;
import org.gudy.azureus2.plugins.update.Update;
import org.gudy.azureus2.plugins.update.UpdateCheckInstance;
import org.gudy.azureus2.plugins.utils.resourcedownloader.ResourceDownloader;
import org.gudy.azureus2.plugins.utils.resourcedownloader.ResourceDownloaderException;
import org.gudy.azureus2.plugins.utils.resourcedownloader.ResourceDownloaderListener;
import org.gudy.azureus2.ui.swt.ImageRepository;
import org.gudy.azureus2.ui.swt.Messages;
import org.gudy.azureus2.ui.swt.mainwindow.MainWindow;
import org.gudy.azureus2.ui.swt.mainwindow.SWTThread;
/**
* @author Olivier Chalouhi
*
*/
public class
UpdateWindow
extends AERunnable
implements ResourceDownloaderListener{
private AzureusCore azureus_core;
private UpdateCheckInstance check_instance;
private int check_type;
Display display;
Shell updateWindow;
Table table;
StyledText stDescription;
ProgressBar progress;
Label status;
Button btnOk;
Listener lOk;
Button btnCancel;
Listener lCancel;
boolean askingForShow;
boolean restartRequired;
private long totalDownloadSize;
private List downloaders;
private Iterator iterDownloaders;
private static final int COL_NAME = 0;
private static final int COL_VERSION = 1;
private static final int COL_SIZE = 2;
public
UpdateWindow(
AzureusCore _azureus_core,
UpdateCheckInstance _check_instance )
{
azureus_core = _azureus_core;
check_instance = _check_instance;
check_type = check_instance.getType();
this.display = SWTThread.getInstance().getDisplay();
this.updateWindow = null;
this.askingForShow =false;
if(display != null && !display.isDisposed())
display.asyncExec(this);
}
//The Shell creation process
public void runSupport() {
if(display == null || display.isDisposed())
return;
//Do not use ~SWT.CLOSE cause on some linux/GTK platform it
//forces the window to be only 200x200
//catch close event instead, and never do it
updateWindow = new Shell(display,(SWT.DIALOG_TRIM | SWT.RESIZE) );
updateWindow.addListener(SWT.Close,new Listener() {
public void handleEvent(Event e) {
e.doit = false;
}
});
if(! Constants.isOSX) {
updateWindow.setImage(ImageRepository.getImage("azureus"));
}
String res_prefix = "swt.";
if ( check_type == UpdateCheckInstance.UCI_INSTALL ){
res_prefix += "install.window";
}else if (check_type == UpdateCheckInstance.UCI_UNINSTALL ){
res_prefix += "uninstall.window";
}else{
res_prefix += "update.window";
}
Messages.setLanguageText(updateWindow, res_prefix + ".title");
FormLayout layout = new FormLayout();
try {
layout.spacing = 5;
} catch (NoSuchFieldError e) { /* Pre SWT 3.0 */ }
layout.marginHeight = 10;
layout.marginWidth = 10;
FormData formData;
updateWindow.setLayout(layout);
Label lHeaderText = new Label(updateWindow,SWT.WRAP);
Messages.setLanguageText(lHeaderText,res_prefix + ".header");
formData = new FormData();
formData.left = new FormAttachment(0,0);
formData.right = new FormAttachment(100,0);
formData.top = new FormAttachment(0,0);
lHeaderText.setLayoutData(formData);
SashForm sash = new SashForm(updateWindow,SWT.VERTICAL);
table = new Table(sash,SWT.CHECK | SWT.BORDER | SWT.SINGLE | SWT.FULL_SELECTION);
String[] names = {"name" , "version" , "size"};
int[] sizes = {220,80,80};
for(int i = 0 ; i < names.length ; i++) {
TableColumn column = new TableColumn(table,SWT.LEFT);
Messages.setLanguageText(column,"swt.update.window.columns." + names[i]);
column.setWidth(sizes[i]);
}
table.setHeaderVisible(true);
table.addListener(SWT.Selection,new Listener() {
public void handleEvent(Event e) {
rowSelected();
}
});
stDescription = new StyledText(sash,SWT.BORDER | SWT.READ_ONLY | SWT.H_SCROLL | SWT.V_SCROLL);
stDescription.setWordWrap(true);
progress = new ProgressBar(updateWindow,SWT.NULL);
progress.setMinimum(0);
progress.setMaximum(100);
progress.setSelection(0);
status = new Label(updateWindow,SWT.NULL);
btnOk = new Button(updateWindow,SWT.PUSH);
Messages.setLanguageText(btnOk,res_prefix + ".ok" );
updateWindow.setDefaultButton( btnOk );
lOk = new Listener() {
public void handleEvent(Event e) {
update();
}
};
btnOk.addListener(SWT.Selection, lOk);
btnOk.setEnabled( false );
btnCancel = new Button(updateWindow,SWT.PUSH);
Messages.setLanguageText(btnCancel,"swt.update.window.cancel");
lCancel = new Listener() {
public void handleEvent(Event e) {
dispose();
check_instance.cancel();
}
};
btnCancel.addListener(SWT.Selection,lCancel);
updateWindow.addListener(SWT.Traverse, new Listener() {
public void handleEvent(Event e) {
if ( e.character == SWT.ESC){
dispose();
check_instance.cancel();
}
}
});
formData = new FormData();
formData.left = new FormAttachment(0,0);
formData.right = new FormAttachment(100,0);
formData.top = new FormAttachment(lHeaderText);
formData.bottom = new FormAttachment(progress);
sash.setLayoutData(formData);
formData = new FormData();
formData.left = new FormAttachment(0,0);
formData.right = new FormAttachment(100,0);
formData.bottom = new FormAttachment(status);
progress.setLayoutData(formData);
formData = new FormData();
formData.left = new FormAttachment(0,0);
formData.right = new FormAttachment(100,0);
formData.bottom = new FormAttachment(btnCancel);
status.setLayoutData(formData);
formData = new FormData();
formData.width = 100;
formData.right = new FormAttachment(100,0);
formData.bottom = new FormAttachment(100,0);
btnCancel.setLayoutData(formData);
formData = new FormData();
formData.width = 100;
formData.right = new FormAttachment(btnCancel);
formData.bottom = new FormAttachment(100,0);
btnOk.setLayoutData(formData);
updateWindow.setSize(400,400);
//updateWindow.open();
}
protected void
rowSelected()
{
checkMandatory();
checkRestartNeeded();
TableItem[] items = table.getSelection();
if(items.length == 0) return;
Update update = (Update) items[0].getData();
String[] descriptions = update.getDescription();
stDescription.setText("");
for(int i = 0 ; i < descriptions.length ; i++) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -