@ -46,8 +46,8 @@ void PIEditor::valueChanged( TQVariant /*variant*/ )
PIBool : : PIBool ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
m_comboBox = new KComboBox ( this ) ;
m_comboBox - > insertItem ( i18n ( " True " ) , 0 ) ;
@ -82,8 +82,8 @@ void PIBool::valueChanged( TQVariant /*variant*/ )
PIColor : : PIColor ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
m_combo = new ColorCombo ( ( ColorCombo : : ColorScheme ) m_data - > colorScheme ( ) , this ) ;
m_combo - > setColor ( m_data - > value ( ) . toColor ( ) ) ;
@ -117,8 +117,8 @@ void PIColor::valueChanged( TQVariant /*variant*/ )
PIDouble : : PIDouble ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
spin = new DoubleSpinBox ( m_data - > minValue ( ) , m_data - > maxValue ( ) , m_data - > minAbsValue ( ) , m_data - > value ( ) . toDouble ( ) , m_data - > unit ( ) , this ) ;
@ -145,8 +145,8 @@ void PIDouble::valueChanged( TQVariant /*variant*/ )
PIFilename : : PIFilename ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
m_combo = 0L ;
if ( m_data - > allowed ( ) . count ( ) = = 0 )
@ -196,8 +196,8 @@ void PIFilename::valueChanged( TQVariant /*variant*/ )
PIInt : : PIInt ( const TQString & id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
spin = new KIntSpinBox ( ( int ) m_data - > minValue ( ) , ( int ) m_data - > maxValue ( ) , 1 , m_data - > value ( ) . toInt ( ) , 10 , this ) ;
@ -224,8 +224,8 @@ void PIInt::valueChanged( TQVariant /*variant*/ )
PILineEdit : : PILineEdit ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
m_edit = new KLineEdit ( m_data - > value ( ) . toString ( ) , this ) ;
connect ( m_edit , TQT_SIGNAL ( textChanged ( const TQString & ) ) , this , TQT_SLOT ( slotEditTextChanged ( ) ) ) ;
}
@ -251,8 +251,8 @@ void PILineEdit::valueChanged( TQVariant /*variant*/ )
PIStringCombo : : PIStringCombo ( TQString id , Variant * data , TQWidget * parent , const char * name )
: PIEditor ( id , data , parent , name )
{
TQHBoxLayout * tq layout = new TQHBoxLayout ( this ) ;
tq layout- > setAutoAdd ( true ) ;
TQHBoxLayout * layout = new TQHBoxLayout ( this ) ;
layout- > setAutoAdd ( true ) ;
m_combo = new KComboBox ( this ) ;
m_combo - > insertStringList ( m_data - > allowed ( ) ) ;