Update of /cvsroot/btrwiz/btrwiz/src
In directory usw-pr-cvs1:/tmp/cvs-serv19573
Added Files:
SummaryPage.java
Log Message:
new screen
--- NEW FILE: SummaryPage.java ---
import com.tildemh.jgwizard.*;
import gnu.gdk.*;
import gnu.gtk.*;
import gnu.pango.*;
import java.util.ResourceBundle;
/**
* the final , summary screen
*/
class SummaryPage extends WizardPage{
private GtkVBox content;
private ResourceBundle messages;
private GtkProgressBar replaceProgress ;
/*
* Creates the screen
*/
SummaryPage(ResourceBundle rb, WizardForm parent, WizardPage parentScreen, String title){
super(parent, parentScreen, title, null);
messages = rb;
content = new GtkVBox(false, 0);
GtkLabel headLbl = new GtkLabel( messages.getString("Success") );
content.add(headLbl);
setButtons(false, null, true, messages.getString("StartAgain") );
setContent(content);
}
}
|