[Btrwiz-commits] CVS: btrwiz/src SummaryPage.java,NONE,1.1
Brought to you by:
howama
From: Mark H. <ho...@us...> - 2002-07-17 15:10:52
|
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); } } |