Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/49/head
Michele Calgaro 10 months ago
parent d11c6b6bde
commit 53c180e71c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -45,7 +45,7 @@ void KWidgetStreamer::fromStream( TQDataStream& stream, TQObject* to )
void KWidgetStreamer::propertyToStream( const TQObject* from, TQDataStream& stream ) void KWidgetStreamer::propertyToStream( const TQObject* from, TQDataStream& stream )
{ {
// Only handle widgets. Alternatives to widgets are layouts, validators, timers, etc. // Only handle widgets. Alternatives to widgets are layouts, validators, timers, etc.
if ( ! from->inherits(TQWIDGET_OBJECT_NAME_STRING) ) if ( ! from->inherits("TQWidget") )
return; return;
// Serializing all the children (if any). // Serializing all the children (if any).
@ -80,7 +80,7 @@ void KWidgetStreamer::propertyToStream( const TQObject* from, TQDataStream& stre
void KWidgetStreamer::propertyFromStream( TQDataStream& stream, TQObject* to ) void KWidgetStreamer::propertyFromStream( TQDataStream& stream, TQObject* to )
{ {
// Only handle widgets. Alternatives to widgets are layouts, validators, timers, etc. // Only handle widgets. Alternatives to widgets are layouts, validators, timers, etc.
if ( ! to->inherits(TQWIDGET_OBJECT_NAME_STRING) ) if ( ! to->inherits("TQWidget") )
return; return;
// Stream in all the children (if any) // Stream in all the children (if any)
@ -119,7 +119,7 @@ KWidgetStreamer::KWidgetStreamer ()
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("checked") << TQString::fromLatin1("tristate"); << TQString::fromLatin1("checked") << TQString::fromLatin1("tristate");
_map.insert(TQString::fromLatin1(TQCHECKBOX_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQCheckBox"), l);
// TQComboBox // TQComboBox
l.clear(); l.clear();
@ -127,51 +127,51 @@ KWidgetStreamer::KWidgetStreamer ()
<< TQString::fromLatin1("editable") << TQString::fromLatin1("currentItem") << TQString::fromLatin1("editable") << TQString::fromLatin1("currentItem")
<< TQString::fromLatin1("maxCount") << TQString::fromLatin1("insertionPolicy") << TQString::fromLatin1("maxCount") << TQString::fromLatin1("insertionPolicy")
<< TQString::fromLatin1("autoCompletion"); << TQString::fromLatin1("autoCompletion");
_map.insert(TQString::fromLatin1(TQCOMBOBOX_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQComboBox"), l);
// TQDial // TQDial
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("tracking") << TQString::fromLatin1("wrapping") << TQString::fromLatin1("tracking") << TQString::fromLatin1("wrapping")
<< TQString::fromLatin1("value"); << TQString::fromLatin1("value");
_map.insert(TQString::fromLatin1(TQDIAL_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQDial"), l);
// TQLCDNumber // TQLCDNumber
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("numDigits") << TQString::fromLatin1("mode") << TQString::fromLatin1("numDigits") << TQString::fromLatin1("mode")
<< TQString::fromLatin1("segmentStyle") << TQString::fromLatin1("value"); << TQString::fromLatin1("segmentStyle") << TQString::fromLatin1("value");
_map.insert(TQString::fromLatin1(TQLCDNUMBER_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQLCDNumber"), l);
// TQLineEdit // TQLineEdit
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("text") << TQString::fromLatin1("maxLength") << TQString::fromLatin1("text") << TQString::fromLatin1("maxLength")
<< TQString::fromLatin1("echoMode") << TQString::fromLatin1("alignment"); << TQString::fromLatin1("echoMode") << TQString::fromLatin1("alignment");
_map.insert(TQString::fromLatin1(TQLINEEDIT_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQLineEdit"), l);
// TQMultiLineEdit // TQMultiLineEdit
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("text") << TQString::fromLatin1("text")
<< TQString::fromLatin1("alignment"); << TQString::fromLatin1("alignment");
_map.insert(TQString::fromLatin1(TQTEXTEDIT_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQTextEdit"), l);
// TQRadioButton // TQRadioButton
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("checked"); << TQString::fromLatin1("checked");
_map.insert(TQString::fromLatin1(TQRADIOBUTTON_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQRadioButton"), l);
// TQSlider // TQSlider
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("value"); << TQString::fromLatin1("value");
_map.insert(TQString::fromLatin1(TQSLIDER_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQSlider"), l);
// TQSpinBox // TQSpinBox
l.clear(); l.clear();
l << TQString::fromLatin1("enabled") l << TQString::fromLatin1("enabled")
<< TQString::fromLatin1("value"); << TQString::fromLatin1("value");
_map.insert(TQString::fromLatin1(TQSPINBOX_OBJECT_NAME_STRING), l); _map.insert(TQString::fromLatin1("TQSpinBox"), l);
} }

@ -37,7 +37,7 @@
<pre> <pre>
KWidgetStreamer streamer; KWidgetStreamer streamer;
KWidgetStreamer::PropertyMap& map = streamer.propertyMap(); KWidgetStreamer::PropertyMap& map = streamer.propertyMap();
KWidgetStreamer::PropertyList& list = *map.find(TQLCDNUMBER_OBJECT_NAME_STRING); KWidgetStreamer::PropertyList& list = *map.find("TQLCDNumber");
list.remove("numDigits"); list.remove("numDigits");
</pre> </pre>
**/ **/

@ -172,7 +172,7 @@ PyObject* py_read_config_entry(PyObject *, PyObject *args)
return Py_BuildValue((char*)"l", i); return Py_BuildValue((char*)"l", i);
} }
if (type == TQSTRING_OBJECT_NAME_STRING) if (type == "TQString")
{ {
return Py_BuildValue((char*)"s", entry.toString().ascii()); return Py_BuildValue((char*)"s", entry.toString().ascii());
} }

@ -348,7 +348,7 @@ PyObject* py_getInputFocus(PyObject *, PyObject *args)
// //
TQWidget *obj = ((karamba*)widget)->focusWidget(); TQWidget *obj = ((karamba*)widget)->focusWidget();
if(obj->isA(TQLINEEDIT_OBJECT_NAME_STRING)) // SKLineEdit is no TQ_Object, but TQLineEdit can only be here as a SKLineEdit if(obj->isA("TQLineEdit")) // SKLineEdit is no TQ_Object, but TQLineEdit can only be here as a SKLineEdit
return Py_BuildValue((char*)"l", ((SKLineEdit*)obj)->getInput()); return Py_BuildValue((char*)"l", ((SKLineEdit*)obj)->getInput());
return Py_BuildValue((char*)"l", 0); return Py_BuildValue((char*)"l", 0);

@ -144,7 +144,7 @@ TQString NoatunSensor::getTitle()
else else
{ {
TQDataStream reply(replyData, IO_ReadOnly); TQDataStream reply(replyData, IO_ReadOnly);
if (replyType == TQSTRING_OBJECT_NAME_STRING) if (replyType == "TQString")
{ {
reply >> result; reply >> result;
result.replace( TQRegExp("_")," " ); result.replace( TQRegExp("_")," " );

@ -274,7 +274,7 @@ void AddAction::updateParameter()
{ theValue->raiseWidget(1); { theValue->raiseWidget(1);
theValueCheckBox->setChecked(theArguments[index].toBool()); theValueCheckBox->setChecked(theArguments[index].toBool());
} }
else if(type.find(TQSTRINGLIST_OBJECT_NAME_STRING) != -1) else if(type.find("TQStringList") != -1)
{ theValue->raiseWidget(4); { theValue->raiseWidget(4);
TQStringList backup = theArguments[index].toStringList(); TQStringList backup = theArguments[index].toStringList();
// backup needed because calling clear will kill what ever has been saved. // backup needed because calling clear will kill what ever has been saved.
@ -313,7 +313,7 @@ void AddAction::slotParameterChanged()
theArguments[index].asDouble() = theValueDoubleNumInput->value(); theArguments[index].asDouble() = theValueDoubleNumInput->value();
else if(type.find("bool") != -1) else if(type.find("bool") != -1)
theArguments[index].asBool() = theValueCheckBox->isChecked(); theArguments[index].asBool() = theValueCheckBox->isChecked();
else if(type.find(TQSTRINGLIST_OBJECT_NAME_STRING) != -1) else if(type.find("TQStringList") != -1)
theArguments[index].asStringList() = theValueEditListBox->items(); theArguments[index].asStringList() = theValueEditListBox->items();
else else
theArguments[index].asString() = theValueLineEdit->text(); theArguments[index].asString() = theValueLineEdit->text();

@ -8,7 +8,7 @@
<action objid="KonquerorIface" prototype="void createNewWindow(QString)" repeat="0" autostart="0"> <action objid="KonquerorIface" prototype="void createNewWindow(QString)" repeat="0" autostart="0">
<name>Create New Window</name> <name>Create New Window</name>
<comment>Creates a new window and loads an arbitrary URL.</comment> <comment>Creates a new window and loads an arbitrary URL.</comment>
<argument type=TQSTRING_OBJECT_NAME_STRING><comment>The URL to load in the window initially.</comment></argument> <argument type="TQString"><comment>The URL to load in the window initially.</comment></argument>
</action> </action>
<action objid="MainApplication-Interface" prototype="void quit()" repeat="0" autostart="0"> <action objid="MainApplication-Interface" prototype="void quit()" repeat="0" autostart="0">
<name>Quit</name> <name>Quit</name>

@ -6,13 +6,13 @@
<action objid="default" prototype="void tdeinit_exec(QString, QStringList)" repeat="0" autostart="0"> <action objid="default" prototype="void tdeinit_exec(QString, QStringList)" repeat="0" autostart="0">
<name>Execute</name> <name>Execute</name>
<comment>Runs a program or script</comment> <comment>Runs a program or script</comment>
<argument type=TQSTRING_OBJECT_NAME_STRING><comment>The executable name and path of the program or script to run</comment></argument> <argument type="TQString"><comment>The executable name and path of the program or script to run</comment></argument>
<argument type=TQSTRINGLIST_OBJECT_NAME_STRING><comment>Parameters for the program or script</comment></argument> <argument type="TQStringList"><comment>Parameters for the program or script</comment></argument>
</action> </action>
<action objid="default" prototype="void tdeinit_exec_wait(QString, QStringList)" repeat="0" autostart="0"> <action objid="default" prototype="void tdeinit_exec_wait(QString, QStringList)" repeat="0" autostart="0">
<name>Execute and Wait</name> <name>Execute and Wait</name>
<comment>Runs a program or script and waits for it to finish</comment> <comment>Runs a program or script and waits for it to finish</comment>
<argument type=TQSTRING_OBJECT_NAME_STRING><comment>The executable name and path of the program or script to run</comment></argument> <argument type="TQString"><comment>The executable name and path of the program or script to run</comment></argument>
<argument type=TQSTRINGLIST_OBJECT_NAME_STRING><comment>Parameters for the program or script</comment></argument> <argument type="TQStringList"><comment>Parameters for the program or script</comment></argument>
</action> </action>
</profile> </profile>

Loading…
Cancel
Save