You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
/****************************************************************
|
|
**
|
|
** Implementation of PrintPanel class, translation tutorial 3
|
|
**
|
|
****************************************************************/
|
|
|
|
#include "printpanel.h"
|
|
|
|
#include <qlabel.h>
|
|
#include <qradiobutton.h>
|
|
#include <qhbuttongroup.h>
|
|
|
|
PrintPanel::PrintPanel( TQWidget *parent, const char *name )
|
|
: TQVBox( parent, name )
|
|
{
|
|
setMargin( 10 );
|
|
setSpacing( 10 );
|
|
|
|
/*
|
|
TQLabel *lab = new TQLabel( tr("<b>TROLL PRINT</b>"), this );
|
|
lab->setAlignment( AlignCenter );
|
|
*/
|
|
|
|
TQRadioButton *but;
|
|
|
|
TQHButtonGroup *twoSided = new TQHButtonGroup( this );
|
|
twoSided->setTitle( tr("2-sided") );
|
|
but = new TQRadioButton( tr("Enabled"), twoSided );
|
|
but = new TQRadioButton( tr("Disabled"), twoSided );
|
|
but->toggle();
|
|
|
|
TQHButtonGroup *colors = new TQHButtonGroup( this );
|
|
colors->setTitle( tr("Colors") );
|
|
but = new TQRadioButton( tr("Enabled"), colors );
|
|
but = new TQRadioButton( tr("Disabled"), colors );
|
|
but->toggle();
|
|
}
|