[Btrwiz-commits] CVS: btrwiz/src ExcludeFilters.java,NONE,1.1
Brought to you by:
howama
From: Mark H. <ho...@us...> - 2002-07-17 15:07:34
|
Update of /cvsroot/btrwiz/btrwiz/src In directory usw-pr-cvs1:/tmp/cvs-serv18365 Added Files: ExcludeFilters.java Log Message: new screen --- NEW FILE: ExcludeFilters.java --- import com.tildemh.jgwizard.*; import gnu.gdk.*; import gnu.gtk.*; import gnu.pango.*; import gnu.glib.*; import java.util.ResourceBundle; /** * The fourth page of the wizard defines filters for files to be excluded from * the scanning. */ class ExcludeFilters extends WizardPage{ private ResourceBundle messages; private GtkVBox content; private GtkListStore filtList; /** * Creates the page */ ExcludeFilters(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("ExcFilters") ); headLbl.setLineWrap(true); headLbl.setJustify(GtkJustification.FILL); content.add(headLbl); GtkLabel curFiltLbl = new GtkLabel( messages.getString("CurExcFilters") ); content.add(curFiltLbl); setButtons(true, messages.getString("Prev"), true, messages.getString("Next") ); setContent(content); } } |