blob: 656a6543355d7d38d504f27c86ee4e38403f178a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import org.trinitydesktop.qt.*;
public class Foo extends AppWizardBase {
/*
* Constructs a Foo which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The wizard will by default be modeless, unless you set 'modal' to
* true to construct a modal wizard.
*/
Foo( TQWidget parent, String name, boolean modal, int fl )
{
super( parent, name, modal, fl );
}
/*
* public slot
*/
public void slotLoadHeader()
{
tqWarning( "AppWizardBase.slotLoadHeader() not yet implemented!" );
}
/*
* public slot
*/
public void slotNewHeader()
{
tqWarning( "AppWizardBase.slotNewHeader() not yet implemented!" );
}
}
|