[Btrwiz-commits] CVS: btrwiz/src IncludeFilters.java,NONE,1.1
Brought to you by:
howama
|
From: Mark H. <ho...@us...> - 2002-07-13 11:13:07
|
Update of /cvsroot/btrwiz/btrwiz/src
In directory usw-pr-cvs1:/tmp/cvs-serv16358
Added Files:
IncludeFilters.java
Log Message:
new page
--- NEW FILE: IncludeFilters.java ---
import com.tildemh.jgwizard.*;
import gnu.gdk.*;
import gnu.gtk.*;
import gnu.pango.*;
import java.util.ResourceBundle;
class IncludeFilters extends WizardPage{
private ResourceBundle messages;
private GtkVBox content;
IncludeFilters(ResourceBundle rb, WizardForm parent, String title){
super(parent, title, null);
messages = rb;
content = new GtkVBox(false, 0);
GtkLabel headLbl = new GtkLabel(messages.getString("IncFilters") );
headLbl.setLineWrap(true);
headLbl.setJustify(GtkJustification.FILL);
content.add(headLbl);
setButtons(true, messages.getString("Prev"), true, messages.getString("Next") );
setContent(content);
}
}
|