@ -63,16 +63,16 @@ void DesignerFields::initGUI( const TQString &uiFile )
tqlayout - > addWidget ( wdg ) ;
tqlayout - > addWidget ( wdg ) ;
TQObjectList * list = wdg - > queryList ( " TQWidget " ) ;
TQObjectList * list = wdg - > queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
TQObjectListIt it ( * list ) ;
TQObjectListIt it ( * list ) ;
TQStringList allowedTypes ;
TQStringList allowedTypes ;
allowedTypes < < " TQLineEdit "
allowedTypes < < TQLINEEDIT_OBJECT_NAME_STRING
< < " TQTextEdit "
< < TQTEXTEDIT_OBJECT_NAME_STRING
< < " TQSpinBox "
< < TQSPINBOX_OBJECT_NAME_STRING
< < " TQCheckBox "
< < TQCHECKBOX_OBJECT_NAME_STRING
< < " TQComboBox "
< < TQCOMBOBOX_OBJECT_NAME_STRING
< < " QDateTimeEdit "
< < TQDATETIMEEDIT_OBJECT_NAME_STRING
< < " KLineEdit "
< < " KLineEdit "
< < " KDateTimeWidget "
< < " KDateTimeWidget "
< < " KDatePicker " ;
< < " KDatePicker " ;
@ -87,19 +87,19 @@ void DesignerFields::initGUI( const TQString &uiFile )
if ( ! name . isEmpty ( ) )
if ( ! name . isEmpty ( ) )
mWidgets . insert ( name , widget ) ;
mWidgets . insert ( name , widget ) ;
if ( it . current ( ) - > inherits ( " TQLineEdit " ) )
if ( it . current ( ) - > inherits ( TQLINEEDIT_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( textChanged ( const TQString & ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( textChanged ( const TQString & ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " TQSpinBox " ) )
else if ( it . current ( ) - > inherits ( TQSPINBOX_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( valueChanged ( int ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( valueChanged ( int ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " TQCheckBox " ) )
else if ( it . current ( ) - > inherits ( TQCHECKBOX_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( toggled ( bool ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( toggled ( bool ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " TQComboBox " ) )
else if ( it . current ( ) - > inherits ( TQCOMBOBOX_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( activated ( const TQString & ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( activated ( const TQString & ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " QDateTimeEdit " ) )
else if ( it . current ( ) - > inherits ( TQDATETIMEEDIT_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( valueChanged ( const TQDateTime & ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( valueChanged ( const TQDateTime & ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " KDateTimeWidget " ) )
else if ( it . current ( ) - > inherits ( " KDateTimeWidget " ) )
@ -108,7 +108,7 @@ void DesignerFields::initGUI( const TQString &uiFile )
else if ( it . current ( ) - > inherits ( " KDatePicker " ) )
else if ( it . current ( ) - > inherits ( " KDatePicker " ) )
connect ( it . current ( ) , TQT_SIGNAL ( dateChanged ( TQDate ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( dateChanged ( TQDate ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
else if ( it . current ( ) - > inherits ( " TQTextEdit " ) )
else if ( it . current ( ) - > inherits ( TQTEXTEDIT_OBJECT_NAME_STRING ) )
connect ( it . current ( ) , TQT_SIGNAL ( textChanged ( ) ) ,
connect ( it . current ( ) , TQT_SIGNAL ( textChanged ( ) ) ,
TQT_SIGNAL ( modified ( ) ) ) ;
TQT_SIGNAL ( modified ( ) ) ) ;
@ -143,13 +143,13 @@ void DesignerFields::load( DesignerFields::Storage *storage )
TQMap < TQString , TQWidget * > : : ConstIterator widIt ;
TQMap < TQString , TQWidget * > : : ConstIterator widIt ;
for ( widIt = mWidgets . begin ( ) ; widIt ! = mWidgets . end ( ) ; + + widIt ) {
for ( widIt = mWidgets . begin ( ) ; widIt ! = mWidgets . end ( ) ; + + widIt ) {
TQString value ;
TQString value ;
if ( widIt . data ( ) - > inherits ( " TQLineEdit " ) ) {
if ( widIt . data ( ) - > inherits ( TQLINEEDIT_OBJECT_NAME_STRING ) ) {
TQLineEdit * wdg = static_cast < TQLineEdit * > ( widIt . data ( ) ) ;
TQLineEdit * wdg = static_cast < TQLineEdit * > ( widIt . data ( ) ) ;
wdg - > setText ( TQString : : null ) ;
wdg - > setText ( TQString : : null ) ;
} else if ( widIt . data ( ) - > inherits ( " TQSpinBox " ) ) {
} else if ( widIt . data ( ) - > inherits ( TQSPINBOX_OBJECT_NAME_STRING ) ) {
TQSpinBox * wdg = static_cast < TQSpinBox * > ( widIt . data ( ) ) ;
TQSpinBox * wdg = static_cast < TQSpinBox * > ( widIt . data ( ) ) ;
wdg - > setValue ( wdg - > minValue ( ) ) ;
wdg - > setValue ( wdg - > minValue ( ) ) ;
} else if ( widIt . data ( ) - > inherits ( " TQCheckBox " ) ) {
} else if ( widIt . data ( ) - > inherits ( TQCHECKBOX_OBJECT_NAME_STRING ) ) {
TQCheckBox * wdg = static_cast < TQCheckBox * > ( widIt . data ( ) ) ;
TQCheckBox * wdg = static_cast < TQCheckBox * > ( widIt . data ( ) ) ;
wdg - > setChecked ( false ) ;
wdg - > setChecked ( false ) ;
} else if ( widIt . data ( ) - > inherits ( " QDateTimeEdit " ) ) {
} else if ( widIt . data ( ) - > inherits ( " QDateTimeEdit " ) ) {
@ -161,10 +161,10 @@ void DesignerFields::load( DesignerFields::Storage *storage )
} else if ( widIt . data ( ) - > inherits ( " KDatePicker " ) ) {
} else if ( widIt . data ( ) - > inherits ( " KDatePicker " ) ) {
KDatePicker * wdg = static_cast < KDatePicker * > ( widIt . data ( ) ) ;
KDatePicker * wdg = static_cast < KDatePicker * > ( widIt . data ( ) ) ;
wdg - > setDate ( TQDate : : tqcurrentDate ( ) ) ;
wdg - > setDate ( TQDate : : tqcurrentDate ( ) ) ;
} else if ( widIt . data ( ) - > inherits ( " TQComboBox " ) ) {
} else if ( widIt . data ( ) - > inherits ( TQCOMBOBOX_OBJECT_NAME_STRING ) ) {
TQComboBox * wdg = static_cast < TQComboBox * > ( widIt . data ( ) ) ;
TQComboBox * wdg = static_cast < TQComboBox * > ( widIt . data ( ) ) ;
wdg - > setCurrentItem ( 0 ) ;
wdg - > setCurrentItem ( 0 ) ;
} else if ( widIt . data ( ) - > inherits ( " TQTextEdit " ) ) {
} else if ( widIt . data ( ) - > inherits ( TQTEXTEDIT_OBJECT_NAME_STRING ) ) {
TQTextEdit * wdg = static_cast < TQTextEdit * > ( widIt . data ( ) ) ;
TQTextEdit * wdg = static_cast < TQTextEdit * > ( widIt . data ( ) ) ;
wdg - > setText ( TQString : : null ) ;
wdg - > setText ( TQString : : null ) ;
}
}
@ -176,16 +176,16 @@ void DesignerFields::load( DesignerFields::Storage *storage )
TQMap < TQString , TQWidget * > : : ConstIterator it = mWidgets . find ( * it2 ) ;
TQMap < TQString , TQWidget * > : : ConstIterator it = mWidgets . find ( * it2 ) ;
if ( it ! = mWidgets . end ( ) ) {
if ( it ! = mWidgets . end ( ) ) {
if ( it . data ( ) - > inherits ( " TQLineEdit " ) ) {
if ( it . data ( ) - > inherits ( TQLINEEDIT_OBJECT_NAME_STRING ) ) {
TQLineEdit * wdg = static_cast < TQLineEdit * > ( it . data ( ) ) ;
TQLineEdit * wdg = static_cast < TQLineEdit * > ( it . data ( ) ) ;
wdg - > setText ( value ) ;
wdg - > setText ( value ) ;
} else if ( it . data ( ) - > inherits ( " TQSpinBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQSPINBOX_OBJECT_NAME_STRING ) ) {
TQSpinBox * wdg = static_cast < TQSpinBox * > ( it . data ( ) ) ;
TQSpinBox * wdg = static_cast < TQSpinBox * > ( it . data ( ) ) ;
wdg - > setValue ( value . toInt ( ) ) ;
wdg - > setValue ( value . toInt ( ) ) ;
} else if ( it . data ( ) - > inherits ( " TQCheckBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQCHECKBOX_OBJECT_NAME_STRING ) ) {
TQCheckBox * wdg = static_cast < TQCheckBox * > ( it . data ( ) ) ;
TQCheckBox * wdg = static_cast < TQCheckBox * > ( it . data ( ) ) ;
wdg - > setChecked ( value = = " true " | | value = = " 1 " ) ;
wdg - > setChecked ( value = = " true " | | value = = " 1 " ) ;
} else if ( it . data ( ) - > inherits ( " QDateTimeEdit " ) ) {
} else if ( it . data ( ) - > inherits ( TQDATETIMEEDIT_OBJECT_NAME_STRING ) ) {
QDateTimeEdit * wdg = static_cast < QDateTimeEdit * > ( it . data ( ) ) ;
QDateTimeEdit * wdg = static_cast < QDateTimeEdit * > ( it . data ( ) ) ;
wdg - > setDateTime ( TQDateTime : : fromString ( value , Qt : : ISODate ) ) ;
wdg - > setDateTime ( TQDateTime : : fromString ( value , Qt : : ISODate ) ) ;
} else if ( it . data ( ) - > inherits ( " KDateTimeWidget " ) ) {
} else if ( it . data ( ) - > inherits ( " KDateTimeWidget " ) ) {
@ -194,10 +194,10 @@ void DesignerFields::load( DesignerFields::Storage *storage )
} else if ( it . data ( ) - > inherits ( " KDatePicker " ) ) {
} else if ( it . data ( ) - > inherits ( " KDatePicker " ) ) {
KDatePicker * wdg = static_cast < KDatePicker * > ( it . data ( ) ) ;
KDatePicker * wdg = static_cast < KDatePicker * > ( it . data ( ) ) ;
wdg - > setDate ( TQDate : : fromString ( value , Qt : : ISODate ) ) ;
wdg - > setDate ( TQDate : : fromString ( value , Qt : : ISODate ) ) ;
} else if ( it . data ( ) - > inherits ( " TQComboBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQCOMBOBOX_OBJECT_NAME_STRING ) ) {
TQComboBox * wdg = static_cast < TQComboBox * > ( it . data ( ) ) ;
TQComboBox * wdg = static_cast < TQComboBox * > ( it . data ( ) ) ;
wdg - > setCurrentText ( value ) ;
wdg - > setCurrentText ( value ) ;
} else if ( it . data ( ) - > inherits ( " TQTextEdit " ) ) {
} else if ( it . data ( ) - > inherits ( TQTEXTEDIT_OBJECT_NAME_STRING ) ) {
TQTextEdit * wdg = static_cast < TQTextEdit * > ( it . data ( ) ) ;
TQTextEdit * wdg = static_cast < TQTextEdit * > ( it . data ( ) ) ;
wdg - > setText ( value ) ;
wdg - > setText ( value ) ;
}
}
@ -210,13 +210,13 @@ void DesignerFields::save( DesignerFields::Storage *storage )
TQMap < TQString , TQWidget * > : : Iterator it ;
TQMap < TQString , TQWidget * > : : Iterator it ;
for ( it = mWidgets . begin ( ) ; it ! = mWidgets . end ( ) ; + + it ) {
for ( it = mWidgets . begin ( ) ; it ! = mWidgets . end ( ) ; + + it ) {
TQString value ;
TQString value ;
if ( it . data ( ) - > inherits ( " TQLineEdit " ) ) {
if ( it . data ( ) - > inherits ( TQLINEEDIT_OBJECT_NAME_STRING ) ) {
TQLineEdit * wdg = static_cast < TQLineEdit * > ( it . data ( ) ) ;
TQLineEdit * wdg = static_cast < TQLineEdit * > ( it . data ( ) ) ;
value = wdg - > text ( ) ;
value = wdg - > text ( ) ;
} else if ( it . data ( ) - > inherits ( " TQSpinBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQSPINBOX_OBJECT_NAME_STRING ) ) {
TQSpinBox * wdg = static_cast < TQSpinBox * > ( it . data ( ) ) ;
TQSpinBox * wdg = static_cast < TQSpinBox * > ( it . data ( ) ) ;
value = TQString : : number ( wdg - > value ( ) ) ;
value = TQString : : number ( wdg - > value ( ) ) ;
} else if ( it . data ( ) - > inherits ( " TQCheckBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQCHECKBOX_OBJECT_NAME_STRING ) ) {
TQCheckBox * wdg = static_cast < TQCheckBox * > ( it . data ( ) ) ;
TQCheckBox * wdg = static_cast < TQCheckBox * > ( it . data ( ) ) ;
value = ( wdg - > isChecked ( ) ? " true " : " false " ) ;
value = ( wdg - > isChecked ( ) ? " true " : " false " ) ;
} else if ( it . data ( ) - > inherits ( " QDateTimeEdit " ) ) {
} else if ( it . data ( ) - > inherits ( " QDateTimeEdit " ) ) {
@ -228,10 +228,10 @@ void DesignerFields::save( DesignerFields::Storage *storage )
} else if ( it . data ( ) - > inherits ( " KDatePicker " ) ) {
} else if ( it . data ( ) - > inherits ( " KDatePicker " ) ) {
KDatePicker * wdg = static_cast < KDatePicker * > ( it . data ( ) ) ;
KDatePicker * wdg = static_cast < KDatePicker * > ( it . data ( ) ) ;
value = wdg - > date ( ) . toString ( Qt : : ISODate ) ;
value = wdg - > date ( ) . toString ( Qt : : ISODate ) ;
} else if ( it . data ( ) - > inherits ( " TQComboBox " ) ) {
} else if ( it . data ( ) - > inherits ( TQCOMBOBOX_OBJECT_NAME_STRING ) ) {
TQComboBox * wdg = static_cast < TQComboBox * > ( it . data ( ) ) ;
TQComboBox * wdg = static_cast < TQComboBox * > ( it . data ( ) ) ;
value = wdg - > currentText ( ) ;
value = wdg - > currentText ( ) ;
} else if ( it . data ( ) - > inherits ( " TQTextEdit " ) ) {
} else if ( it . data ( ) - > inherits ( TQTEXTEDIT_OBJECT_NAME_STRING ) ) {
TQTextEdit * wdg = static_cast < TQTextEdit * > ( it . data ( ) ) ;
TQTextEdit * wdg = static_cast < TQTextEdit * > ( it . data ( ) ) ;
value = wdg - > text ( ) ;
value = wdg - > text ( ) ;
}
}