jsupload.client.IncubatorUploadProgress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsupload Show documentation
Show all versions of jsupload Show documentation
JsUpload library: JavaScript ready to use in non gwt web apps and cgi-bin server script.
/*
* Copyright 2010 Manuel Carrasco Moñino. (manolo at apache/org)
* http://code.google.com/p/gwtupload
*
* 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 jsupload.client;
import jsupload.client.bundle.JsUploadCss;
import com.google.gwt.widgetideas.client.ProgressBar;
import com.google.gwt.widgetideas.client.ProgressBar.TextFormatter;
import gwtupload.client.BaseUploadStatus;
import gwtupload.client.IUploadStatus;
/**
*
* Upload progress using Incubator progress-bar widget.
*
*
* @author Manolo Carrasco Moñino
*/
public class IncubatorUploadProgress extends BaseUploadStatus {
static {
JsUploadCss.INSTANCE.css().ensureInjected();
}
TextFormatter formater = new TextFormatter() {
protected String getText(ProgressBar bar, double curProgress) {
String txt = fileNames.size() > 1 ? "Sending " + fileNames.size() + " files " : fileNameLabel.getText();
return txt + " (" + (int) curProgress + "%)";
}
};
ProgressBar prg = new ProgressBar();
public IncubatorUploadProgress() {
setProgressWidget(prg);
prg.setTextFormatter(formater);
}
@Override
public IUploadStatus newInstance() {
return new IncubatorUploadProgress();
}
@Override
public void setPercent(int percent) {
super.setPercent(percent);
prg.setProgress(percent);
}
@Override
protected void updateStatusPanel(boolean showProgress, String statusMessage) {
super.updateStatusPanel(showProgress, statusMessage);
fileNameLabel.setVisible(false);
}
}