summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 13:59:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 13:59:20 +0900
commit0580616e20b68c764cdbbd9a01c9dd21f99766d4 (patch)
tree1ab8d38ab08f75b51f27d2d826c3338c272236bd
parent9c510e0b59a1c8a5de3073849a205d92d5d18911 (diff)
downloadtdewebdev-0580616e.tar.gz
tdewebdev-0580616e.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--doc/kommander/dcop.docbook20
-rw-r--r--doc/kommander/extending.docbook48
-rw-r--r--doc/kommander/parser.docbook6
-rw-r--r--doc/kommander/tutorials.docbook2
-rw-r--r--kommander/examples/current/b1.kmdr2
-rw-r--r--kommander/examples/old/form4.kmdr4
-rw-r--r--kommander/examples/old/form5.kmdr8
-rw-r--r--kommander/examples/old/settings.kmdr4
-rw-r--r--kommander/examples/old/tidy.kmdr4
-rw-r--r--kommander/examples/old/widgetgenerator.kmdr36
-rw-r--r--kommander/examples/old/wizard.kmdr12
-rw-r--r--kommander/examples/tutorial/picview.kmdr2
-rw-r--r--kommander/examples/tutorial/slots.kmdr2
-rw-r--r--kommander/kmdrtools/dcoptool-oldparser.kmdr748
-rw-r--r--quanta/data/dtep/html-frameset/common.tag2
-rw-r--r--quanta/data/dtep/html-strict/common.tag2
-rw-r--r--quanta/data/dtep/html/common.tag2
-rw-r--r--quanta/data/dtep/html5/common.tag2
-rw-r--r--quanta/data/dtep/wml-1-2/common.tag2
-rw-r--r--quanta/data/dtep/xhtml-basic/common.tag2
-rw-r--r--quanta/data/dtep/xhtml-frameset/common.tag2
-rw-r--r--quanta/data/dtep/xhtml-strict/common.tag2
-rw-r--r--quanta/data/dtep/xhtml/common.tag2
-rw-r--r--quanta/data/dtep/xhtml11/common.tag2
-rw-r--r--quanta/quanta_uml.xmi230
-rw-r--r--quanta/scripts/tidy.kmdr4
26 files changed, 576 insertions, 576 deletions
diff --git a/doc/kommander/dcop.docbook b/doc/kommander/dcop.docbook
index 1fd7c170..e13db5e6 100644
--- a/doc/kommander/dcop.docbook
+++ b/doc/kommander/dcop.docbook
@@ -30,7 +30,7 @@ This assumes you are inside a &kommander; file and have access to the special @p
&kommander; evolved the much faster internal &DCOP; function. Using it from another application window (console &DCOP; is very slow) is more complicated because you must give lots of information, including a prototype of the call. The above call would become: (Note that @dcopid is actually internal to the dialog, but you could replace it with a valid process ID)
</para>
<screen>
-@dcop(@dcopid, KommanderIf, <quote>enableWidget(QString, bool)</quote>, Widget, true)
+@dcop(@dcopid, KommanderIf, <quote>enableWidget(TQString, bool)</quote>, Widget, true)
</screen>
<para>
In the early &kommander; nesting &DCOP; calls inside script language structures (like <application>bash</application>) used console method calls. <emphasis>If you use internal &DCOP; all &kommander; specials will be executed first and then the script will be executed.</emphasis> Please read that again as it will cause you no end of grief with a <application>bash</application> loop using &kommander; specials.
@@ -49,7 +49,7 @@ As you can see the new syntax is very easy, as well as consistent visually with
<title>&DCOP; for Global Variables</title>
<variablelist>
<varlistentry>
-<term>global(QString variableName)</term>
+<term>global(TQString variableName)</term>
<listitem>
<para>
Returns the value of the specified global variable. When a script is run from within a &kommander; window any (non-global) variables set in that script will cease to exist after the script completes and therfore will not be available to other script processes or in a new instance of the calling process. The global <quote>scope</quote> means the variable will exist for any process of the window until that window is closed. You may change these variables at any time with a new call to <function>@setGlobal</function>.
@@ -57,10 +57,10 @@ Returns the value of the specified global variable. When a script is run from w
</listitem>
</varlistentry>
<varlistentry>
-<term>setGlobal(QString variableName, QString value)</term>
+<term>setGlobal(TQString variableName, TQString value)</term>
<listitem>
<para>
-Creates a variable that is global to the window process and assigns the value to it. This value can be retrieved with global(QString variableName) or set again.
+Creates a variable that is global to the window process and assigns the value to it. This value can be retrieved with global(TQString variableName) or set again.
</para>
</listitem>
</varlistentry>
@@ -75,7 +75,7 @@ The following list is old and left here for reference purposes only. For a compl
</para>
<variablelist>
<varlistentry>
-<term>setText(QString text)</term>
+<term>setText(TQString text)</term>
<listitem>
<para>
This removes the text displayed in the widget and replaces it with the text supplied.
@@ -99,7 +99,7 @@ Returns the text associated with the specified widget. This is not the same as
</listitem>
</varlistentry>
<varlistentry>
-<term>setAssociatedText(QString text)</term>
+<term>setAssociatedText(TQString text)</term>
<listitem>
<para>
This sets the &kommander; Text default string. This is typically set to <quote>@widgetText</quote> to display what is entered into the widget. It is unlikely you will have much need for this, but if you do it is there. Applies to all widgets that can contain data.
@@ -113,7 +113,7 @@ This sets the &kommander; Text default string. This is typically set to <quote>
<title>&DCOP; for ListBox and ComboBox Widgets</title>
<variablelist>
<varlistentry>
-<term>addListItem(QString item, int index)</term>
+<term>addListItem(TQString item, int index)</term>
<listitem>
<para>
Adds an item to a ListBox widget at the specified index. List index starts at zero. To add to the end of the list use -1.
@@ -129,7 +129,7 @@ This adds a list of strings all at once. The list should be delimited by <acron
</listitem>
</varlistentry>
<varlistentry>
-<term>addUniqueItem(QString item)</term>
+<term>addUniqueItem(TQString item)</term>
<listitem>
<para>
addUniqueItem will add an item to the end of the list only if it is unique.
@@ -175,7 +175,7 @@ Set the current (or selected) item to the index specified. Applies to ListBox a
<title>&DCOP; for CheckBox and RadioButton Widgets</title>
<variablelist>
<varlistentry>
-<term>setChecked(QString widgetName, bool checked)</term>
+<term>setChecked(TQString widgetName, bool checked)</term>
<listitem>
<para>
Checks/unchecks CheckBox or RadioButton widgets.
@@ -189,7 +189,7 @@ Checks/unchecks CheckBox or RadioButton widgets.
<title>&DCOP; for TabWidget Widgets</title>
<variablelist>
<varlistentry>
-<term>setCurrentTab(QString widgetName, int index)</term>
+<term>setCurrentTab(TQString widgetName, int index)</term>
<listitem>
<para>
Selected the tab by index for TabWidgets. Index starts at 0.
diff --git a/doc/kommander/extending.docbook b/doc/kommander/extending.docbook
index 353390ca..8006bdef 100644
--- a/doc/kommander/extending.docbook
+++ b/doc/kommander/extending.docbook
@@ -63,31 +63,31 @@ class KomLineEdit : public KLineEdit, public KommanderWidget
{
TQ_OBJECT
- TQ_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
+ TQ_PROPERTY(TQString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
TQ_PROPERTY(QStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false)
TQ_PROPERTY(bool KommanderWidget READ isKommanderWidget)
public:
- KomLineEdit(QWidget *a_parent, const char *a_name);
+ KomLineEdit(TQWidget *a_parent, const char *a_name);
~KomLineEdit();
- virtual QString widgetText() const;
+ virtual TQString widgetText() const;
virtual bool isKommanderWidget() const;
virtual void setAssociatedText(const QStringList&amp;);
virtual QStringList associatedText() const;
- virtual QString currentState() const;
+ virtual TQString currentState() const;
- virtual QString populationText() const;
- virtual void setPopulationText(const QString&amp;);
+ virtual TQString populationText() const;
+ virtual void setPopulationText(const TQString&amp;);
public slots:
- virtual void setWidgetText(const QString &amp;);
+ virtual void setWidgetText(const TQString &amp;);
virtual void populate();
protected:
void showEvent( QShowEvent *e );
signals:
void widgetOpened();
- void widgetTextChanged(const QString &amp;);
+ void widgetTextChanged(const TQString &amp;);
};
</screen>
<para>Most of this is just template code that you don't need to worry about.
@@ -99,7 +99,7 @@ widget we wish to integrate with &kommander;, and secondly from KommanderWidget.
There are a few parts in the cpp file that are important to each particular widget.
</para>
<screen>
-KomLineEdit::KomLineEdit(QWidget *a_parent, const char *a_name)
+KomLineEdit::KomLineEdit(TQWidget *a_parent, const char *a_name)
: KLineEdit(a_parent, a_name), KommanderWidget(this)
{
QStringList states;
@@ -115,9 +115,9 @@ that had different kinds of states, such as a check box, you might
set three states <emphasis>unchecked</emphasis>, <emphasis>semichecked</emphasis> and <emphasis>checked</emphasis> here.
</para>
<screen>
-QString KomLineEdit::currentState() const
+TQString KomLineEdit::currentState() const
{
- return QString("default");
+ return TQString("default");
}</screen>
<para>We set the states in the constructor above, and this just
returns the current state of the widget. For our widget
@@ -126,12 +126,12 @@ that checks what state your widget is currently in and
return the appropriate string here.
</para>
<screen>
-QString KomLineEdit::widgetText() const
+TQString KomLineEdit::widgetText() const
{
return KLineEdit::text();
}
-void KomLineEdit::setWidgetText(const QString &amp;a_text)
+void KomLineEdit::setWidgetText(const TQString &amp;a_text)
{
KLineEdit::setText(a_text);
emit widgetTextChanged(a_text);
@@ -139,7 +139,7 @@ void KomLineEdit::setWidgetText(const QString &amp;a_text)
</screen>
<para>These are the two most important methods, where the bulk of the
functional code goes.
-<emphasis>QString KomLineEdit::widgetText() const</emphasis> method returns the widget text of the
+<emphasis>TQString KomLineEdit::widgetText() const</emphasis> method returns the widget text of the
widget (the text that the <emphasis>@widgetText</emphasis> special is expanded to in text
associations). For our widget, the widget text is simply the text inside
the line edit, so we just return that. Similarly when setting the widget text,
@@ -162,17 +162,17 @@ enum Functions {
Function2,
LastFunction
};
-KomLineEdit::KomLineEdit(QWidget *a_parent, const char *a_name)
+KomLineEdit::KomLineEdit(TQWidget *a_parent, const char *a_name)
: KLineEdit(a_parent, a_name), KommanderWidget(this)
{
... //code like described above
KommanderPlugin::setDefaultGroup(Group::DCOP);
- KommanderPlugin::registerFunction(Function1, "function1(QString widget, QString arg1, int arg2)", i18n("Call function1 with two arguments, second is optional."), 2, 3);
- KommanderPlugin::registerFunction(function2, "function2(QString widget)", i18n("Get a QString as a result of function2."), 1);
+ KommanderPlugin::registerFunction(Function1, "function1(TQString widget, TQString arg1, int arg2)", i18n("Call function1 with two arguments, second is optional."), 2, 3);
+ KommanderPlugin::registerFunction(function2, "function2(TQString widget)", i18n("Get a TQString as a result of function2."), 1);
}
</screen>
<para>This registers two functions: <emphasis>function1 and function2</emphasis>. The number assigned to the functions (here <emphasis>1160</emphasis> and <emphasis>1161</emphasis>) must be unique, not used in any other plugin or
-inside &kommander;. <emphasis>function1</emphasis> takes two arguments, one is optional, <emphasis>function2</emphasis> takes no argument and returns a string. The <emphasis>QString widget</emphasis> argument in the signatures notes that this functions work on a widget, like: <emphasis>KomLineEdit.function1("foo", 1)</emphasis>.
+inside &kommander;. <emphasis>function1</emphasis> takes two arguments, one is optional, <emphasis>function2</emphasis> takes no argument and returns a string. The <emphasis>TQString widget</emphasis> argument in the signatures notes that this functions work on a widget, like: <emphasis>KomLineEdit.function1("foo", 1)</emphasis>.
</para>
<para>To teach &kommander; that the widget supports these functions, add a method like this:
</para>
@@ -187,7 +187,7 @@ function.
The function code should be handled inside the handleDCOP method:
</para>
<screen>
-QString KomLineEdit::handleDCOP(int function, const QStringList&amp; args)
+TQString KomLineEdit::handleDCOP(int function, const QStringList&amp; args)
{
switch (function)
{
@@ -203,7 +203,7 @@ QString KomLineEdit::handleDCOP(int function, const QStringList&amp; args)
default:
return KommanderWidget::handleDCOP(function, args);
}
- return QString::null;
+ return TQString::null;
}
</screen>
<para>There are cases when the widget should appear differently in the editor than in
@@ -226,7 +226,7 @@ derive from QLabel, and use this in the constructor:
functions, like in the <emphasis>execute</emphasis> function. Here is an example from the AboutDialog widget:
</para>
<screen>
-QString AboutDialog::handleDCOP(int function, const QStringList&amp; args)
+TQString AboutDialog::handleDCOP(int function, const QStringList&amp; args)
{
switch (function) {
...
@@ -287,7 +287,7 @@ class MyKomPlugin : public KommanderPlugin
{
public:
MyKomPlugin();
- virtual QWidget *create( const QString &amp;className, QWidget *parent = 0, const char *name = 0 );
+ virtual TQWidget *create( const TQString &amp;className, TQWidget *parent = 0, const char *name = 0 );
};
</screen>
<para>
@@ -313,7 +313,7 @@ etc.
Regarding the icon, the above example loads a medium sized icon called <emphasis>iconname</emphasis> from the standard &kde; icon location.
</para>
<screen>
-QWidget *MyKomPlugin::create( const QString &amp;className, QWidget *parent, const char *name )
+TQWidget *MyKomPlugin::create( const TQString &amp;className, TQWidget *parent, const char *name )
{
if( className == "KomLineEdit" )
return new KomLineEdit( parent, name );
@@ -410,7 +410,7 @@ You need to add to the <emphasis>editor/widgetfactory.cpp</emphasis> as well:
...
#include "mywidget.h"
...
-QWidget *WidgetFactory::createWidget( const QString &amp;className, QWidget *parent, const char *name, bool init,
+TQWidget *WidgetFactory::createWidget( const TQString &amp;className, TQWidget *parent, const char *name, bool init,
const QRect *r, Qt::Orientation orient )
{
...
diff --git a/doc/kommander/parser.docbook b/doc/kommander/parser.docbook
index a008c431..a8bec882 100644
--- a/doc/kommander/parser.docbook
+++ b/doc/kommander/parser.docbook
@@ -307,8 +307,8 @@ And now you access those with <emphasis>_xcount</emphasis> and <emphasis>_xquote
</para>
<para>
DCOP can be complex, which is why we recommend using the tools we develop to enable creating DCOP for remote &kommander; dialogs with something like a function browser. Here is an example DCOP call issued from a dialog opened from a parent &kommander; window. Since it knows who its parent is it can send information back while it is open and freely access all its parent's functionality with the exception of slots. Of course that can be done internally with a script which can be called externally, so in practice there is no limit to what can be done.
-<screen>dcop("kmdr-executor-"+parentPid, "KommanderIf", "setText(QString,QString)", "StatusBar8", "Hello")</screen>
-Let's look at this piece by piece. First of all we add <emphasis>parentPid</emphasis> to "kmdr-executor-" as we make no assumption a &kommander; window was the caller. You could use this with Quanta or KSpread or whatever. Next we are addressing <emphasis>KommanderIf</emphasis>, which is a <emphasis>nice</emphasis> interface for end users which has been cleaned up. We hope eventually as KDE moves from DCOP to DBUS on KDE4 that more applications adopt a nice interface for integration. The next parameter, <emphasis>"setText(QString,QString)"</emphasis> is important because it <emphasis>prototypes</emphasis> the parameters allowed. Otherwise &kommander; could not validate the call. So without a definition of the DCOP call being used you will get an error. The remaining parameters are of course what is being passed. We recommend you look at applications with <command>kdcop</command> to see how this works and practice dcop calls from the shell to get your syntax right.
+<screen>dcop("kmdr-executor-"+parentPid, "KommanderIf", "setText(TQString,TQString)", "StatusBar8", "Hello")</screen>
+Let's look at this piece by piece. First of all we add <emphasis>parentPid</emphasis> to "kmdr-executor-" as we make no assumption a &kommander; window was the caller. You could use this with Quanta or KSpread or whatever. Next we are addressing <emphasis>KommanderIf</emphasis>, which is a <emphasis>nice</emphasis> interface for end users which has been cleaned up. We hope eventually as KDE moves from DCOP to DBUS on KDE4 that more applications adopt a nice interface for integration. The next parameter, <emphasis>"setText(TQString,TQString)"</emphasis> is important because it <emphasis>prototypes</emphasis> the parameters allowed. Otherwise &kommander; could not validate the call. So without a definition of the DCOP call being used you will get an error. The remaining parameters are of course what is being passed. We recommend you look at applications with <command>kdcop</command> to see how this works and practice dcop calls from the shell to get your syntax right.
</para>
</sect2>
</sect1>
@@ -557,7 +557,7 @@ file with given <emphasis>key</emphasis>; if there is no such value <emphasis>de
for best control.
</para></listitem>
<listitem>
-<para><command>connect(<parameter>sender</parameter>, <parameter>signal</parameter>, <parameter>receiver</parameter>, <parameter>slot</parameter>)</command> - connect a widget signal to a widget slot. See the connection dialog and select similar widgets for possibilities. If for instance a signal looks like looks like <command>execute(const QString&amp;)</command> that is exactly what must be in quotes there.
+<para><command>connect(<parameter>sender</parameter>, <parameter>signal</parameter>, <parameter>receiver</parameter>, <parameter>slot</parameter>)</command> - connect a widget signal to a widget slot. See the connection dialog and select similar widgets for possibilities. If for instance a signal looks like looks like <command>execute(const TQString&amp;)</command> that is exactly what must be in quotes there.
</para></listitem>
<listitem>
<para><command>disconnect(<parameter>sender</parameter>, <parameter>signal</parameter>, <parameter>receiver</parameter>, <parameter>slot</parameter>)</command> - undo the connection as listed above. Again, exact syntax is essential.
diff --git a/doc/kommander/tutorials.docbook b/doc/kommander/tutorials.docbook
index 6071c60c..a9ccafa8 100644
--- a/doc/kommander/tutorials.docbook
+++ b/doc/kommander/tutorials.docbook
@@ -83,7 +83,7 @@ One of the very useful features inherited from Qt Designer was signals and slots
<para>
To access the connection tool you can open it by right clicking anywhere on the dialog and selecting it. Click the menu and you will see a list of connections made at the bottom. Above that are two lists of signals and slots and above them the respective sender and receiver are selected. An easy way to make connections is visually. Look at the toolbar or the Tools menu. There are three items grouped there. A pointer, signals and slot connections and the tab order or widgets. Selecting this sets connection mode for the curios. Click on your widget to send the signal and drag it to your widget to receive it in a slot. As you do this you will see a line and drop indications on the widget under the mouse. The StatusBar on the Editor will tell you what is being connected.
</para>
-<note><para>In version 1.3 there is a &kommander; function connect() which allows you to connect signals and slots on the fly. This is useful if you just used createWidget. Obviously you can't use the dialog for something &kommander; doesn't yet know exists. Unfortunately there are too many combinations to list so you have to type out signals and slots. <emphasis>These must be typed verbatim or they will fail.</emphasis> This is where the connection tool is handy again. Open it and select two widgets like the two you want to connect and read the connection information. if it says <command>execute(const QString&amp;)</command> that is exactly what you must type.</para></note>
+<note><para>In version 1.3 there is a &kommander; function connect() which allows you to connect signals and slots on the fly. This is useful if you just used createWidget. Obviously you can't use the dialog for something &kommander; doesn't yet know exists. Unfortunately there are too many combinations to list so you have to type out signals and slots. <emphasis>These must be typed verbatim or they will fail.</emphasis> This is where the connection tool is handy again. Open it and select two widgets like the two you want to connect and read the connection information. if it says <command>execute(const TQString&amp;)</command> that is exactly what you must type.</para></note>
</sect2>
<sect2 id="slot-functions">
diff --git a/kommander/examples/current/b1.kmdr b/kommander/examples/current/b1.kmdr
index 09725243..4dd7ee30 100644
--- a/kommander/examples/current/b1.kmdr
+++ b/kommander/examples/current/b1.kmdr
@@ -121,7 +121,7 @@ endif
<property name="associations" stdset="0">
<stringlist>
<string>//message_info("parentPid = "+parentPid+"\npid = "+pid)
-dcop("kmdr-executor-"+parentPid, "KommanderIf", "setText(QString,QString)", "StatusBar8", "Hello")
+dcop("kmdr-executor-"+parentPid, "KommanderIf", "setText(TQString,TQString)", "StatusBar8", "Hello")
</string>
</stringlist>
</property>
diff --git a/kommander/examples/old/form4.kmdr b/kommander/examples/old/form4.kmdr
index db66649e..3bb039e2 100644
--- a/kommander/examples/old/form4.kmdr
+++ b/kommander/examples/old/form4.kmdr
@@ -79,9 +79,9 @@
<connections>
<connection>
<sender>TextEdit1</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>LineEdit1</receiver>
- <slot>setWidgetText(const QString&amp;)</slot>
+ <slot>setWidgetText(const TQString&amp;)</slot>
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
diff --git a/kommander/examples/old/form5.kmdr b/kommander/examples/old/form5.kmdr
index ef7127c2..1f244567 100644
--- a/kommander/examples/old/form5.kmdr
+++ b/kommander/examples/old/form5.kmdr
@@ -331,15 +331,15 @@ Ha ha. We got it all with Kommander!</string>
<connections>
<connection>
<sender>ExecButton9</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>usetext</receiver>
- <slot>setWidgetText(const QString&amp;)</slot>
+ <slot>setWidgetText(const TQString&amp;)</slot>
</connection>
<connection>
<sender>ExecButton9_2</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>usetext</receiver>
- <slot>setText(const QString&amp;)</slot>
+ <slot>setText(const TQString&amp;)</slot>
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
diff --git a/kommander/examples/old/settings.kmdr b/kommander/examples/old/settings.kmdr
index 988dc3f9..df796460 100644
--- a/kommander/examples/old/settings.kmdr
+++ b/kommander/examples/old/settings.kmdr
@@ -249,9 +249,9 @@ Items")
</connection>
<connection>
<sender>ExecButton1</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>listBox</receiver>
- <slot>setWidgetText(const QString&amp;)</slot>
+ <slot>setWidgetText(const TQString&amp;)</slot>
</connection>
<connection>
<sender>settingsDialog</sender>
diff --git a/kommander/examples/old/tidy.kmdr b/kommander/examples/old/tidy.kmdr
index e8641450..acc47721 100644
--- a/kommander/examples/old/tidy.kmdr
+++ b/kommander/examples/old/tidy.kmdr
@@ -1150,9 +1150,9 @@ fi
</connection>
<connection>
<sender>ExecButton2</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>GtidyPath</receiver>
- <slot>setWidgetText(const QString&amp;)</slot>
+ <slot>setWidgetText(const TQString&amp;)</slot>
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
diff --git a/kommander/examples/old/widgetgenerator.kmdr b/kommander/examples/old/widgetgenerator.kmdr
index a6d8eaaa..c1be33a2 100644
--- a/kommander/examples/old/widgetgenerator.kmdr
+++ b/kommander/examples/old/widgetgenerator.kmdr
@@ -100,37 +100,37 @@ headerContent="/****************************************************************
/* OTHER INCLUDES */
#include &lt;kommanderwidget.h&gt;
-class QWidget;
+class TQWidget;
class QShowEvent;
class @className : public @inheritClassName, public KommanderWidget
{
TQ_OBJECT
- TQ_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
+ TQ_PROPERTY(TQString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
TQ_PROPERTY(QStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false)
TQ_PROPERTY(bool KommanderWidget READ isKommanderWidget)
public:
- @className(QWidget *a_parent, const char *a_name);
+ @className(TQWidget *a_parent, const char *a_name);
~@className();
- virtual QString widgetText() const;
+ virtual TQString widgetText() const;
virtual bool isKommanderWidget() const;
virtual void setAssociatedText(QStringList);
virtual QStringList associatedText() const;
- virtual QString currentState() const;
+ virtual TQString currentState() const;
- virtual QString populationText() const;
- virtual void setPopulationText(QString);
+ virtual TQString populationText() const;
+ virtual void setPopulationText(TQString);
public Q_SLOTS:
- virtual void setWidgetText(const QString &amp;);
+ virtual void setWidgetText(const TQString &amp;);
virtual void populate();
Q_SIGNALS:
void widgetOpened();
- void widgetTextChanged(const QString &amp;);
+ void widgetTextChanged(const TQString &amp;);
protected:
void showEvent( QShowEvent *e );
private:
@@ -169,7 +169,7 @@ cppContent="/*******************************************************************
#include &lt;kommanderwidget.h&gt;
#include \"$classNameLower.h\"
-@className::@className(QWidget *a_parent, const char *a_name)
+@className::@className(TQWidget *a_parent, const char *a_name)
: @inheritClassName(a_parent, a_name), KommanderWidget(this)
{
QStringList states;
@@ -182,9 +182,9 @@ cppContent="/*******************************************************************
{
}
-QString @className::currentState() const
+TQString @className::currentState() const
{
- return QString(\"default\");
+ return TQString(\"default\");
}
bool @className::isKommanderWidget() const
@@ -204,30 +204,30 @@ void @className::setAssociatedText(QStringList a_at)
void @className::populate()
{
- QString txt = KommanderWidget::evalAssociatedText( populationText() );
+ TQString txt = KommanderWidget::evalAssociatedText( populationText() );
setWidgetText( txt );
}
-QString @className::populationText() const
+TQString @className::populationText() const
{
return KommanderWidget::populationText();
}
-void @className::setPopulationText(QString a_text)
+void @className::setPopulationText(TQString a_text)
{
KommanderWidget::setPopulationText(a_text);
}
-void @className::setWidgetText(const QString &amp;a_text)
+void @className::setWidgetText(const TQString &amp;a_text)
{
//set the widget text of your widget here
emit widgetTextChanged(a_text);
}
-QString @className::widgetText() const
+TQString @className::widgetText() const
{
// implement your widget text here
- return QString::null;
+ return TQString::null;
}
void @className::showEvent( QShowEvent *e )
diff --git a/kommander/examples/old/wizard.kmdr b/kommander/examples/old/wizard.kmdr
index 352aaef3..d7f57170 100644
--- a/kommander/examples/old/wizard.kmdr
+++ b/kommander/examples/old/wizard.kmdr
@@ -39,7 +39,7 @@
</property>
<property name="associations" stdset="0">
<stringlist>
- <string>@dcop(@dcopid, KommanderIf, enableWidget(QString,bool), next, @CheckBox1.checked)
+ <string>@dcop(@dcopid, KommanderIf, enableWidget(TQString,bool), next, @CheckBox1.checked)
</string>
</stringlist>
@@ -156,7 +156,7 @@
</property>
<property name="associations" stdset="0">
<stringlist>
- <string>@dcop(@dcopid, KommanderIf, enableWidget(QString,bool), next, @CheckBox1_2.checked)
+ <string>@dcop(@dcopid, KommanderIf, enableWidget(TQString,bool), next, @CheckBox1_2.checked)
</string>
</stringlist>
@@ -213,7 +213,7 @@
</property>
<property name="associations" stdset="0">
<stringlist>
- <string>@dcop(@dcopid, KommanderIf, enableWidget(QString,bool), finish, @CheckBox2.checked)
+ <string>@dcop(@dcopid, KommanderIf, enableWidget(TQString,bool), finish, @CheckBox2.checked)
</string>
</stringlist>
@@ -262,15 +262,15 @@
</connection>
<connection>
<sender>Wizard1</sender>
- <signal>selected(const QString&amp;)</signal>
+ <signal>selected(const TQString&amp;)</signal>
<receiver>ScriptObject1_2</receiver>
<slot>execute()</slot>
</connection>
<connection>
<sender>Wizard1</sender>
- <signal>selected(const QString&amp;)</signal>
+ <signal>selected(const TQString&amp;)</signal>
<receiver>LineEdit6</receiver>
- <slot>setText(const QString&amp;)</slot>
+ <slot>setText(const TQString&amp;)</slot>
</connection>
<connection>
<sender>CheckBox2</sender>
diff --git a/kommander/examples/tutorial/picview.kmdr b/kommander/examples/tutorial/picview.kmdr
index 1617b53d..4fdca299 100644
--- a/kommander/examples/tutorial/picview.kmdr
+++ b/kommander/examples/tutorial/picview.kmdr
@@ -133,7 +133,7 @@
<connections>
<connection>
<sender>FileSelector1</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>ListBox1</receiver>
<slot>populate()</slot>
</connection>
diff --git a/kommander/examples/tutorial/slots.kmdr b/kommander/examples/tutorial/slots.kmdr
index d4f2b524..ae0fec91 100644
--- a/kommander/examples/tutorial/slots.kmdr
+++ b/kommander/examples/tutorial/slots.kmdr
@@ -185,7 +185,7 @@ fi
<connections>
<connection>
<sender>FileSelector</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>FileListBox</receiver>
<slot>populate()</slot>
</connection>
diff --git a/kommander/kmdrtools/dcoptool-oldparser.kmdr b/kommander/kmdrtools/dcoptool-oldparser.kmdr
index 6a21755a..d3a00bc7 100644
--- a/kommander/kmdrtools/dcoptool-oldparser.kmdr
+++ b/kommander/kmdrtools/dcoptool-oldparser.kmdr
@@ -30,98 +30,98 @@
@TextParam4.setVisible(false)
@param4.setVisible(false)
-@setGlobal(Array,"values(QString)
-keys(QString)
-clear(QString)
-count(QString)
-count(QString)
-remove(QString,QString)
-remove(QString,QString)
-fromString(QString,QString)
-toString(QString)
-toString(QString)
-toString(QString)
-toString(QString)
-toString(QString)")
+@setGlobal(Array,"values(TQString)
+keys(TQString)
+clear(TQString)
+count(TQString)
+count(TQString)
+remove(TQString,TQString)
+remove(TQString,TQString)
+fromString(TQString,TQString)
+toString(TQString)
+toString(TQString)
+toString(TQString)
+toString(TQString)
+toString(TQString)")
-@setGlobal(File,"read(QString)
-write(QString,QString)
-append(QString,QString)")
+@setGlobal(File,"read(TQString)
+write(TQString,TQString)
+append(TQString,TQString)")
-@setGlobal(Input,"text(QString,QString,QString)
-password(QString,QString)
-value(QString,QString,int,int,int,int)
-double(QString,QString,double,double,double,double)
-openfile(QString,QString,QString)
-savefile(QString,QString,QString)
-directory(QString,QString,QString)
-openfiles(QString,QString,QString)")
+@setGlobal(Input,"text(TQString,TQString,TQString)
+password(TQString,TQString)
+value(TQString,TQString,int,int,int,int)
+double(TQString,TQString,double,double,double,double)
+openfile(TQString,TQString,TQString)
+savefile(TQString,TQString,TQString)
+directory(TQString,TQString,TQString)
+openfiles(TQString,TQString,TQString)")
-@setGlobal(DCOP,"addUniqueItem(QString,QString)
-associatedText(QString)
-cellText(QString,int,int)
-checked(QString)
-children(QString,bool)
-clear(QString)
-count(QString)
-currentColumn(QString)
-currentItem(QString)
-currentRow(QString)
-execute(QString)
-findItem(QString,QString)
-insertColumn(QString,int,int)
-insertItem(QString,QString,int)
-insertItems(QString,QStringList,int)
-insertRow(QString,int,int)
-item(QString,int)
-itemDepth(QString,int)
-itemPath(QString,int)
-removeColumn(QString,int,int)
-removeItem(QString,int)
-removeRow(QString,int,int)
-selection(QString)
-setAssociatedText(QString,QString)
-setEnabled(QString,bool)
-setCellText(QString,int,int,QString)
-setCellWidget(QString,int,int,QString)
-cellWidget(QString,int,int)
-setChecked(QString,bool)
-setColumnCaption(QString,int,QString)
-setCurrentItem(QString,int)
-insertTab(QString,QString,int)
-setMaximum(QString,int)
-setPixmap(QString,QString,int)
-setRowCaption(QString,int,QString)
-setSelection(QString,QString)
-setText(QString,QString)
-setVisible(QString,bool)
-type(QString)
-setEditable(QString,bool)")
+@setGlobal(DCOP,"addUniqueItem(TQString,TQString)
+associatedText(TQString)
+cellText(TQString,int,int)
+checked(TQString)
+children(TQString,bool)
+clear(TQString)
+count(TQString)
+currentColumn(TQString)
+currentItem(TQString)
+currentRow(TQString)
+execute(TQString)
+findItem(TQString,TQString)
+insertColumn(TQString,int,int)
+insertItem(TQString,TQString,int)
+insertItems(TQString,QStringList,int)
+insertRow(TQString,int,int)
+item(TQString,int)
+itemDepth(TQString,int)
+itemPath(TQString,int)
+removeColumn(TQString,int,int)
+removeItem(TQString,int)
+removeRow(TQString,int,int)
+selection(TQString)
+setAssociatedText(TQString,TQString)
+setEnabled(TQString,bool)
+setCellText(TQString,int,int,TQString)
+setCellWidget(TQString,int,int,TQString)
+cellWidget(TQString,int,int)
+setChecked(TQString,bool)
+setColumnCaption(TQString,int,TQString)
+setCurrentItem(TQString,int)
+insertTab(TQString,TQString,int)
+setMaximum(TQString,int)
+setPixmap(TQString,TQString,int)
+setRowCaption(TQString,int,TQString)
+setSelection(TQString,TQString)
+setText(TQString,TQString)
+setVisible(TQString,bool)
+type(TQString)
+setEditable(TQString,bool)")
-@setGlobal(File,"read(QString)
-write(QString,QString)
-append(QString,QString)")
+@setGlobal(File,"read(TQString)
+write(TQString,TQString)
+append(TQString,TQString)")
@setGlobal(KommanderMessage,"")
-@setGlobal(String,"length(QString)
-contains(QString,QString)
-find(QString,QString,int)
-findRev(QString,QString,int)
-left(QString,int)
-right(QString,int)
-mid(QString,int,int)
-remove(QString,QString)
-replace(QString,QString,QString)
-upper(QString)
-lower(QString)
-compare(QString,QString)
-isEmpty(QString)
-isNumber(QString)
-section(QString,QString,int)
-args(QString,QString,QString,QString)
-args(QString,QString,QString,QString)
-args(QString,QString,QString,QString)")
+@setGlobal(String,"length(TQString)
+contains(TQString,TQString)
+find(TQString,TQString,int)
+findRev(TQString,TQString,int)
+left(TQString,int)
+right(TQString,int)
+mid(TQString,int,int)
+remove(TQString,TQString)
+replace(TQString,TQString,TQString)
+upper(TQString)
+lower(TQString)
+compare(TQString,TQString)
+isEmpty(TQString)
+isNumber(TQString)
+section(TQString,TQString,int)
+args(TQString,TQString,TQString,TQString)
+args(TQString,TQString,TQString,TQString)
+args(TQString,TQString,TQString,TQString)")
@functiongroup.setCurrentItem(1)
@@ -647,10 +647,10 @@ fi
@#@exec(kdialog --msgbox "@global(_KDDIR)\n")
@# dcop kmdr-executor-32730 KommanderIf children kmdr-executor-32730 1
@wname.clear
-@setGlobal(items,@dcop(@global(pdlg), KommanderIf, "children(QString,bool)", @global(pdlg), 1 ))
+@setGlobal(items,@dcop(@global(pdlg), KommanderIf, "children(TQString,bool)", @global(pdlg), 1 ))
@setGlobal(iwd,"")
@forEach(i, @global(items))
- @setGlobal(iwd, "@global(iwd)@i (@dcop(@global(pdlg), KommanderIf, "type(QString)", @i))\n")
+ @setGlobal(iwd, "@global(iwd)@i (@dcop(@global(pdlg), KommanderIf, "type(TQString)", @i))\n")
@end
@wname.insertItems(@global(iwd),0)</string>
</stringlist>
@@ -757,7 +757,7 @@ fi
<string>@##### put the following in @setfunction #########
@# set up dialog based on function
@switch(@functiongroup.selection::@proto.selection)
-@case(DCOP::addUniqueItem(QString,QString))
+@case(DCOP::addUniqueItem(TQString,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"item")
@setGlobal(PARM2,"")
@@ -765,7 +765,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,addUniqueItem)
@setGlobal(DESC,"Inserts the item if it will not create a duplicate.")
-@case(DCOP::associatedText(QString))
+@case(DCOP::associatedText(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -773,7 +773,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,associatedText)
@setGlobal(DESC,"Returns scripts associated with widget. This is an advanced feature that would not be commonly used.")
-@case(DCOP::cellText(QString,int,int))
+@case(DCOP::cellText(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"column")
@@ -781,7 +781,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,cellText)
@setGlobal(DESC,"Returns text of a cell in a table.")
-@case(DCOP::checked(QString))
+@case(DCOP::checked(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -789,7 +789,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,checked)
@setGlobal(DESC,"Returns 1 for checked boxes, 0 for unchecked.")
-@case(DCOP::children(QString,bool))
+@case(DCOP::children(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"recursive")
@setGlobal(PARM2,"")
@@ -797,7 +797,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,children)
@setGlobal(DESC,"Returns the list of child widgets contained in the parent widget. Set the &lt;i&gt;recursive&lt;/i&gt; parameter to &lt;i&gt;true&lt;/i&gt; to include widgets contained by child widgets.")
-@case(DCOP::clear(QString))
+@case(DCOP::clear(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -805,7 +805,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,clear)
@setGlobal(DESC,"Removes all content from the widget.")
-@case(DCOP::count(QString))
+@case(DCOP::count(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -813,7 +813,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,count)
@setGlobal(DESC,"Returns number of items in a widget such as combobox or listbox.")
-@case(DCOP::currentColumn(QString))
+@case(DCOP::currentColumn(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -821,7 +821,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,currentColumn)
@setGlobal(DESC,"Returns index of current column.")
-@case(DCOP::currentItem(QString))
+@case(DCOP::currentItem(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -829,7 +829,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,currentItem)
@setGlobal(DESC,"Returns index of current item.")
-@case(DCOP::currentRow(QString))
+@case(DCOP::currentRow(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -837,7 +837,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,currentRow)
@setGlobal(DESC,"Returns index of current row.")
-@case(DCOP::execute(QString))
+@case(DCOP::execute(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -845,7 +845,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,execute)
@setGlobal(DESC,"Executes the script associated with the widget. With the new parser the execute method can take one or more arguments.")
-@case(DCOP::findItem(QString,QString))
+@case(DCOP::findItem(TQString,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"item")
@setGlobal(PARM2,"")
@@ -853,7 +853,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,findItem)
@setGlobal(DESC,"Returns the index of an item with the given text.")
-@case(DCOP::insertColumn(QString,int,int))
+@case(DCOP::insertColumn(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"column")
@setGlobal(PARM2,"count")
@@ -861,7 +861,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,insertColumn)
@setGlobal(DESC,"Inserts new column &amp;#040;or &lt;i&gt;count&lt;/i&gt; columns&amp;#041; at &lt;i&gt;column&lt;/i&gt; position.")
-@case(DCOP::insertItem(QString,QString,int))
+@case(DCOP::insertItem(TQString,TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"item")
@setGlobal(PARM2,"index")
@@ -869,7 +869,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,insertItem)
@setGlobal(DESC,"Inserts item at &lt;i&gt;index&lt;/i&gt; position.")
-@case(DCOP::insertItems(QString,QStringList,int))
+@case(DCOP::insertItems(TQString,QStringList,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"items")
@setGlobal(PARM2,"index")
@@ -877,7 +877,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,insertItems)
@setGlobal(DESC,"Inserts multiple items &amp;#040;EOL-separated&amp;#041; at &lt;i&gt;index&lt;/i&gt; position.")
-@case(DCOP::insertRow(QString,int,int))
+@case(DCOP::insertRow(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"count")
@@ -885,7 +885,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,insertRow)
@setGlobal(DESC,"Inserts new row &amp;#040;or &lt;i&gt;count&lt;/i&gt; rows&amp;#041; at &lt;i&gt;row&lt;/i&gt; position.")
-@case(DCOP::item(QString,int))
+@case(DCOP::item(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"index")
@setGlobal(PARM2,"")
@@ -893,7 +893,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,item)
@setGlobal(DESC,"Returns the text of the item at the given index.")
-@case(DCOP::itemDepth(QString,int))
+@case(DCOP::itemDepth(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"index")
@setGlobal(PARM2,"")
@@ -901,7 +901,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,itemDepth)
@setGlobal(DESC,"Returns the depth of the current item in the tree. Root items have depth 0.")
-@case(DCOP::itemPath(QString,int))
+@case(DCOP::itemPath(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"index")
@setGlobal(PARM2,"")
@@ -909,7 +909,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,itemPath)
@setGlobal(DESC,"Returns the slash-separated path to the given item in the tree.")
-@case(DCOP::removeColumn(QString,int,int))
+@case(DCOP::removeColumn(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"column")
@setGlobal(PARM2,"count")
@@ -917,7 +917,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,removeColumn)
@setGlobal(DESC,"Removes the column &amp;#040;or &lt;i&gt;count&lt;/i&gt; consecutive columns&amp;#041; with the given index.")
-@case(DCOP::removeItem(QString,int))
+@case(DCOP::removeItem(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"index")
@setGlobal(PARM2,"")
@@ -925,7 +925,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,removeItem)
@setGlobal(DESC,"Removes the item with the given index.")
-@case(DCOP::removeRow(QString,int,int))
+@case(DCOP::removeRow(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"count")
@@ -933,7 +933,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,removeRow)
@setGlobal(DESC,"Removes the row &amp;#040;or &lt;i&gt;count&lt;/i&gt; consecutive rows&amp;#041; with the given index.")
-@case(DCOP::selection(QString))
+@case(DCOP::selection(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -941,7 +941,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,selection)
@setGlobal(DESC,"Returns selected text or text of current item.\nIn case of Table widgets, returns the selection coordinates, separated by commas in TopRow,LeftColumn,BottomRow,RightColumn form. ")
-@case(DCOP::setAssociatedText(QString,QString))
+@case(DCOP::setAssociatedText(TQString,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -949,7 +949,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setAssociatedText)
@setGlobal(DESC,"Sets scripts associated with widget. This is an advanced feature that would not be commonly used.")
-@case(DCOP::setEnabled(QString,bool))
+@case(DCOP::setEnabled(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"enabled")
@setGlobal(PARM2,"")
@@ -957,7 +957,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setEnabled)
@setGlobal(DESC,"Enables or disables widget.")
-@case(DCOP::setCellText(QString,int,int,QString))
+@case(DCOP::setCellText(TQString,int,int,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"col")
@@ -965,7 +965,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setCellText)
@setGlobal(DESC,"Sets text of a cell in a table.")
-@case(DCOP::setCellWidget(QString,int,int,QString))
+@case(DCOP::setCellWidget(TQString,int,int,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"col")
@@ -973,7 +973,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setCellWidget)
@setGlobal(DESC,"Inserts a widget into a cell of a table.")
-@case(DCOP::cellWidget(QString,int,int))
+@case(DCOP::cellWidget(TQString,int,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"col")
@@ -981,7 +981,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,cellWidget)
@setGlobal(DESC,"Returns the name of a widget inserted into a cell, or an empty string if the cell contains no widget or an unknown widget type.")
-@case(DCOP::setChecked(QString,bool))
+@case(DCOP::setChecked(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"checked")
@setGlobal(PARM2,"")
@@ -989,7 +989,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setChecked)
@setGlobal(DESC,"Sets/unsets checkbox.")
-@case(DCOP::setColumnCaption(QString,int,QString))
+@case(DCOP::setColumnCaption(TQString,int,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"column")
@setGlobal(PARM2,"text")
@@ -997,7 +997,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setColumnCaption)
@setGlobal(DESC,"Sets caption of the column &lt;i&gt;column&lt;/i&gt;.")
-@case(DCOP::setCurrentItem(QString,int))
+@case(DCOP::setCurrentItem(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"index")
@setGlobal(PARM2,"")
@@ -1005,7 +1005,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setCurrentItem)
@setGlobal(DESC,"Selects the item at the specified index. Indexes are zero based.")
-@case(DCOP::insertTab(QString,QString,int))
+@case(DCOP::insertTab(TQString,TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"label")
@setGlobal(PARM2,"index")
@@ -1013,7 +1013,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,insertTab)
@setGlobal(DESC,"Inserts a tab to the tabwidget with the specified label at the given index. Indexes are zero based.")
-@case(DCOP::setMaximum(QString,int))
+@case(DCOP::setMaximum(TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"value")
@setGlobal(PARM2,"")
@@ -1021,7 +1021,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setMaximum)
@setGlobal(DESC,"Sets maximum numeric value")
-@case(DCOP::setPixmap(QString,QString,int))
+@case(DCOP::setPixmap(TQString,TQString,int))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"iconName")
@setGlobal(PARM2,"index")
@@ -1029,7 +1029,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setPixmap)
@setGlobal(DESC,"Sets pixmap at the given index to the specified icon. Use &lt;i&gt;index = -1&lt;/i&gt; to set the pixmap for all items.")
-@case(DCOP::setRowCaption(QString,int,QString))
+@case(DCOP::setRowCaption(TQString,int,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"row")
@setGlobal(PARM2,"text")
@@ -1037,7 +1037,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setRowCaption)
@setGlobal(DESC,"Sets caption of the row &lt;i&gt;row&lt;/i&gt;.")
-@case(DCOP::setSelection(QString,QString))
+@case(DCOP::setSelection(TQString,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -1045,7 +1045,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setSelection)
@setGlobal(DESC,"Selects given text or select item containing given text.")
-@case(DCOP::setText(QString,QString))
+@case(DCOP::setText(TQString,TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -1053,7 +1053,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setText)
@setGlobal(DESC,"Sets widget's content.")
-@case(DCOP::setVisible(QString,bool))
+@case(DCOP::setVisible(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"visible")
@setGlobal(PARM2,"")
@@ -1061,7 +1061,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setVisible)
@setGlobal(DESC,"Shows/hides widget.")
-@case(DCOP::type(QString))
+@case(DCOP::type(TQString))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -1069,7 +1069,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,type)
@setGlobal(DESC,"Returns type&amp;#040;class&amp;#041; of widget.")
-@case(DCOP::setEditable(QString,bool))
+@case(DCOP::setEditable(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1077,7 +1077,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setEditable)
@setGlobal(DESC,"Makes the widget editable or read only, depending on the editable argument.")
-@case(Kommander::setEditable(QString,bool))
+@case(Kommander::setEditable(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1085,7 +1085,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setEditable)
@setGlobal(DESC,"Returns current widget's content. This was required inside widget A to return widget A content when requested by widget B. The new method is to use &amp;#064;A.text inside B instead of just &amp;#064;A if you just want the unaltered text.")
-@case(Kommander::setEditable(QString,bool))
+@case(Kommander::setEditable(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1093,7 +1093,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setEditable)
@setGlobal(DESC,"Returns selected text or text of current item. This is deprecated for &lt;i&gt;&amp;#064;mywidget.selected&lt;/i&gt;.")
-@case(Kommander::setEditable(QString,bool))
+@case(Kommander::setEditable(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1101,7 +1101,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setEditable)
@setGlobal(DESC,"Does nothing. This is useful if you request a CheckBox or RadioButton to return a value where a state, typically the unchecked state, has no value. The &amp;#064;null prevents an error indicating it is empty.")
-@case(Kommander::pid(QString,bool))
+@case(Kommander::pid(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1109,7 +1109,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,pid)
@setGlobal(DESC,"Returns the pid &amp;#040;process ID&amp;#041; of the current process.")
-@case(Kommander::dcopid(QString,bool))
+@case(Kommander::dcopid(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1117,7 +1117,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,dcopid)
@setGlobal(DESC,"Returns DCOP identifier of current process. This is shorthand for &lt;i&gt;kmdr-executor-&amp;#064;pid&lt;/i&gt;.")
-@case(Kommander::parentPid(QString,bool))
+@case(Kommander::parentPid(TQString,bool))
@setGlobal(enWidget,1)
@setGlobal(PARM1,"editable")
@setGlobal(PARM2,"")
@@ -1125,7 +1125,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,parentPid)
@setGlobal(DESC,"Returns the pid of the parent Kommander window.")
-@case(Kommander::debug(QString))
+@case(Kommander::debug(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -1133,7 +1133,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,debug)
@setGlobal(DESC,"Writes &lt;i&gt;text&lt;/i&gt; on stderr.")
-@case(Kommander::echo(QString))
+@case(Kommander::echo(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -1141,7 +1141,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,echo)
@setGlobal(DESC,"Writes &lt;i&gt;text&lt;/i&gt; on standard output.")
-@case(Kommander::echo(QString))
+@case(Kommander::echo(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"")
@@ -1149,7 +1149,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,echo)
@setGlobal(DESC,"Executes a script block. Bash is used if no shell is given. It is primarily for use in non-button widgets where script actions are not expected. Full path is not required for the shell which may be useful for portability. &lt;p&gt;&lt;i&gt;If this is used inside a button it allows alternate script languages to be used and will return a value to the main script, which may be unexpected.&lt;/i&gt;")
-@case(Kommander::env(QString))
+@case(Kommander::env(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"")
@@ -1157,7 +1157,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,env)
@setGlobal(DESC,"Returns value of an environment &amp;#040;shell&amp;#041; variable. Do not use &lt;i&gt;$&lt;/i&gt; in the name. For example, &lt;i&gt;&amp;#064;env&amp;#040;PATH&amp;#041;&lt;/i&gt;.")
-@case(Kommander::exec(QString))
+@case(Kommander::exec(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"command")
@setGlobal(PARM2,"")
@@ -1165,7 +1165,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,exec)
@setGlobal(DESC,"Executes an external shell command.")
-@case(Kommander::exec(QString))
+@case(Kommander::exec(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"command")
@setGlobal(PARM2,"")
@@ -1173,7 +1173,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,exec)
@setGlobal(DESC,"Parses an expression and returns computed value.")
-@case(Kommander::forEach(QString,QString))
+@case(Kommander::forEach(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"items")
@@ -1181,7 +1181,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,forEach)
@setGlobal(DESC,"Executes loop: values from &lt;i&gt;items&lt;/i&gt; list &amp;#040;passed as EOL-separated string&amp;#041; are assigned to the variable. &lt;br&gt;&lt;b&gt;Old&lt;/b&gt;&lt;br&gt; &lt;i&gt;&amp;#064;forEach&amp;#040;i,A\\nB\\nC\\n&amp;#041;&lt;br&gt; &amp;#064;# &amp;#064;i=A&lt;br&gt;&amp;#064;end&lt;/i&gt;&lt;br&gt;&lt;b&gt;New&lt;/b&gt;&lt;br&gt;&lt;i&gt;foreach i in MyArray do&lt;br&gt; //i = key, MyArray[i] = val&lt;br&gt;end ")
-@case(Kommander::for(QString,int,int,int))
+@case(Kommander::for(TQString,int,int,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"start")
@@ -1189,7 +1189,7 @@ fi
@setGlobal(PARM4,"step")
@setGlobal(short,for)
@setGlobal(DESC,"Executes loop: variable is set to &lt;i&gt;start&lt;/i&gt; and is increased by &lt;i&gt;step&lt;/i&gt; each time loop is executed. Execution stops when variable becomes larger then &lt;i&gt;end&lt;/i&gt;. &lt;br&gt;&lt;b&gt;Old&lt;/b&gt;&lt;br&gt;&lt;i&gt;&amp;#064;for&amp;#040;i,1,10,1&amp;#041;&lt;br&gt; &amp;#064;# &amp;#064;i=1&lt;br&gt;&amp;#064;endif&lt;/i&gt;&lt;br&gt;&lt;b&gt;New&lt;/b&gt;&lt;br&gt;&lt;i&gt;for i=0 to 20 step 5 do&lt;br&gt; debug&amp;#040;i&amp;#041;&lt;br&gt;end&lt;/i&gt;.")
-@case(Kommander::for(QString,int,int,int))
+@case(Kommander::for(TQString,int,int,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"start")
@@ -1197,7 +1197,7 @@ fi
@setGlobal(PARM4,"step")
@setGlobal(short,for)
@setGlobal(DESC,"Returns the value of a global variable.")
-@case(Kommander::i18n(QString))
+@case(Kommander::i18n(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"")
@@ -1205,7 +1205,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,i18n)
@setGlobal(DESC,"Translates the string into the current language. Texts in GUI would be automatically extracted for translation.")
-@case(Kommander::if(QString))
+@case(Kommander::if(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"expression")
@setGlobal(PARM2,"")
@@ -1213,7 +1213,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,if)
@setGlobal(DESC,"Executes block if expression is true &amp;#040;non-zero number or non-empty string.&amp;#041; &lt;p&gt;&lt;b&gt;Old&lt;/b&gt;Close with &lt;b&gt;&amp;#064;endif&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;New&lt;/b&gt;&lt;br&gt;if val == true then&lt;br&gt;// do op&lt;br&gt;elseif cond&lt;br&gt;// second chance&lt;br&gt;else&lt;br&gt;// cond failed&lt;br&gt;endif&lt;/p&gt;")
-@case(Kommander::dialog(QString,QString))
+@case(Kommander::dialog(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"file")
@setGlobal(PARM2,"args")
@@ -1221,7 +1221,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,dialog)
@setGlobal(DESC,"Executes another Kommander dialog. Current dialog directory is used if no path is given. Arguments may be given as named arguments which will become global variables in the new dialog. For instance: &lt;i&gt;var=val&lt;/i&gt;")
-@case(Kommander::readSetting(QString,QString))
+@case(Kommander::readSetting(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"key")
@setGlobal(PARM2,"default")
@@ -1229,7 +1229,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,readSetting)
@setGlobal(DESC,"Reads setting from configration file for this dialog.")
-@case(Kommander::setGlobal(QString,QString))
+@case(Kommander::setGlobal(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"variable")
@setGlobal(PARM2,"value")
@@ -1237,7 +1237,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,setGlobal)
@setGlobal(DESC,"Sets the value of a global variable. Global variables exist for the life of the Kommander window.")
-@case(Kommander::writeSetting(QString,QString))
+@case(Kommander::writeSetting(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"key")
@setGlobal(PARM2,"value")
@@ -1245,7 +1245,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,writeSetting)
@setGlobal(DESC,"Stores setting in configuration file for this dialog.")
-@case(Kommander::writeSetting(QString,QString))
+@case(Kommander::writeSetting(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"key")
@setGlobal(PARM2,"value")
@@ -1253,7 +1253,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,writeSetting)
@setGlobal(DESC,"Begin of &lt;b&gt;switch&lt;/b&gt; block. Following &lt;b&gt;case&lt;/b&gt; values are compared to &lt;i&gt;expression&lt;/i&gt;.&lt;p&gt;&amp;#064;switch&amp;#040;&amp;#041;&lt;br&gt;&amp;#064;case&amp;#040;&amp;#041;&lt;br&gt;&amp;#064;end")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1261,7 +1261,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Executes an external DCOP call.")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1269,7 +1269,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Adds a comment to EOL that Kommander will not parse")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1277,7 +1277,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Creates a new widget with the specified type and as the child of parent.")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1285,7 +1285,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Returns true if there is a widget with the passed name, false otherwise.")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1293,7 +1293,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Connects the signal of sender with the slot of the receiver")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1301,7 +1301,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Disconnects the signal of sender from the slot of the receiver")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1309,7 +1309,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Exits script execution and returns")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1317,7 +1317,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Exits the current block of a while, for or foreach loop")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1325,7 +1325,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Exit a step and return to the beginning of a loop")
-@case(Kommander::dcop(QString,QString,QString,QString))
+@case(Kommander::dcop(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"id")
@setGlobal(PARM2,"interface")
@@ -1333,7 +1333,7 @@ fi
@setGlobal(PARM4,"args")
@setGlobal(short,dcop)
@setGlobal(DESC,"Return from a script, optionaly with a value from the script to the caller")
-@case(Array::values(QString))
+@case(Array::values(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1341,7 +1341,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,values)
@setGlobal(DESC,"Returns an EOL-separated list of all values in the array.")
-@case(Array::keys(QString))
+@case(Array::keys(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1349,7 +1349,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,keys)
@setGlobal(DESC,"Returns an EOL-separated list of all keys in the array.")
-@case(Array::clear(QString))
+@case(Array::clear(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1357,7 +1357,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,clear)
@setGlobal(DESC,"Removes all elements from the array.")
-@case(Array::count(QString))
+@case(Array::count(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1365,7 +1365,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,count)
@setGlobal(DESC,"Returns the number of elements in the array.")
-@case(Array::count(QString))
+@case(Array::count(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1373,7 +1373,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,count)
@setGlobal(DESC,"Returns the value associated with the given key.")
-@case(Array::remove(QString,QString))
+@case(Array::remove(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"key")
@@ -1381,7 +1381,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,remove)
@setGlobal(DESC,"Removes element with the given key from the array.")
-@case(Array::remove(QString,QString))
+@case(Array::remove(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"key")
@@ -1389,7 +1389,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,remove)
@setGlobal(DESC,"Adds element with the given key and value to the array")
-@case(Array::fromString(QString,QString))
+@case(Array::fromString(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"string")
@@ -1397,7 +1397,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,fromString)
@setGlobal(DESC,"Adds all elements in the string to the array. ")
-@case(Array::toString(QString))
+@case(Array::toString(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1405,7 +1405,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,toString)
@setGlobal(DESC,"Returns all elements in the array in &lt;pre&gt;key\\tvalue\\n&lt;/pre&gt; format.")
-@case(Array::toString(QString))
+@case(Array::toString(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1413,7 +1413,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,toString)
@setGlobal(DESC,"")
-@case(Array::toString(QString))
+@case(Array::toString(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1421,7 +1421,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,toString)
@setGlobal(DESC,"")
-@case(Array::toString(QString))
+@case(Array::toString(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1429,7 +1429,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,toString)
@setGlobal(DESC,"")
-@case(Array::toString(QString))
+@case(Array::toString(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"array")
@setGlobal(PARM2,"")
@@ -1437,7 +1437,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,toString)
@setGlobal(DESC,"")
-@case(String::length(QString))
+@case(String::length(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"")
@@ -1445,7 +1445,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,length)
@setGlobal(DESC,"Returns number of chars in the string.")
-@case(String::contains(QString,QString))
+@case(String::contains(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"substring")
@@ -1453,7 +1453,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,contains)
@setGlobal(DESC,"Checks if the the string contains the given substring.")
-@case(String::find(QString,QString,int))
+@case(String::find(TQString,TQString,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"sought")
@@ -1461,7 +1461,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,find)
@setGlobal(DESC,"Returns the position of a substring in the string, or -1 if it is not found.")
-@case(String::findRev(QString,QString,int))
+@case(String::findRev(TQString,TQString,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"sought")
@@ -1469,7 +1469,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,findRev)
@setGlobal(DESC,"Returns the position of a substring in the string, or -1 if it is not found. String is searched backwards")
-@case(String::left(QString,int))
+@case(String::left(TQString,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"n")
@@ -1477,7 +1477,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,left)
@setGlobal(DESC,"Returns the first &lt;i&gt;n&lt;/i&gt; chars of the string.")
-@case(String::right(QString,int))
+@case(String::right(TQString,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"n")
@@ -1485,7 +1485,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,right)
@setGlobal(DESC,"Returns the last &lt;i&gt;n&lt;/i&gt; chars of the string.")
-@case(String::mid(QString,int,int))
+@case(String::mid(TQString,int,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"start")
@@ -1493,7 +1493,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,mid)
@setGlobal(DESC,"Returns &lt;i&gt;n&lt;/i&gt; chars of the string, starting from &lt;i&gt;start&lt;/i&gt;.")
-@case(String::remove(QString,QString))
+@case(String::remove(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"substring")
@@ -1501,7 +1501,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,remove)
@setGlobal(DESC,"Removes all occurrences of given substring.")
-@case(String::replace(QString,QString,QString))
+@case(String::replace(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"substring")
@@ -1509,7 +1509,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,replace)
@setGlobal(DESC,"Replaces all occurrences of the given substring with the given replacement.")
-@case(String::upper(QString))
+@case(String::upper(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"")
@@ -1517,7 +1517,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,upper)
@setGlobal(DESC,"Converts the string to uppercase.")
-@case(String::lower(QString))
+@case(String::lower(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"")
@@ -1525,7 +1525,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,lower)
@setGlobal(DESC,"Converts the string to lowercase.")
-@case(String::compare(QString,QString))
+@case(String::compare(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string1")
@setGlobal(PARM2,"string2")
@@ -1533,7 +1533,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,compare)
@setGlobal(DESC,"Compares two strings. Returns 0 if they are equal, ")
-@case(String::isEmpty(QString))
+@case(String::isEmpty(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"")
@@ -1541,7 +1541,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,isEmpty)
@setGlobal(DESC,"Checks if the string is empty.")
-@case(String::isNumber(QString))
+@case(String::isNumber(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"")
@@ -1549,7 +1549,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,isNumber)
@setGlobal(DESC,"Checks if the string is a valid number.")
-@case(String::section(QString,QString,int))
+@case(String::section(TQString,TQString,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"separator")
@@ -1557,7 +1557,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,section)
@setGlobal(DESC,"Returns given section of a string.")
-@case(String::args(QString,QString,QString,QString))
+@case(String::args(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"arg1")
@@ -1565,7 +1565,7 @@ fi
@setGlobal(PARM4,"arg3")
@setGlobal(short,args)
@setGlobal(DESC,"Returns the given string with %1, %2, %3 replaced with &lt;i&gt;arg1&lt;/i&gt;, &lt;i&gt;arg2&lt;/i&gt;, &lt;i&gt;arg3&lt;/i&gt; accordingly.")
-@case(String::args(QString,QString,QString,QString))
+@case(String::args(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"arg1")
@@ -1573,7 +1573,7 @@ fi
@setGlobal(PARM4,"arg3")
@setGlobal(short,args)
@setGlobal(DESC,"Convert a string to an integer. If not possible use the default value")
-@case(String::args(QString,QString,QString,QString))
+@case(String::args(TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"string")
@setGlobal(PARM2,"arg1")
@@ -1581,7 +1581,7 @@ fi
@setGlobal(PARM4,"arg3")
@setGlobal(short,args)
@setGlobal(DESC,"Convert a string to a double precision floating point value. If not possible use the default value")
-@case(File::read(QString))
+@case(File::read(TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"")
@setGlobal(PARM2,"")
@@ -1589,7 +1589,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,read)
@setGlobal(DESC,"Returns content of given file.")
-@case(File::write(QString,QString))
+@case(File::write(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"file")
@setGlobal(PARM2,"string")
@@ -1597,7 +1597,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,write)
@setGlobal(DESC,"Writes given string to a file.")
-@case(File::append(QString,QString))
+@case(File::append(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"file")
@setGlobal(PARM2,"string")
@@ -1605,7 +1605,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,append)
@setGlobal(DESC,"Appends given string to the end of a file.")
-@case(Input::text(QString,QString,QString))
+@case(Input::text(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"caption")
@setGlobal(PARM2,"label")
@@ -1613,7 +1613,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,text)
@setGlobal(DESC,"Shows text selection dialog. Returns entered text.")
-@case(Input::password(QString,QString))
+@case(Input::password(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"caption")
@setGlobal(PARM2,"password")
@@ -1621,7 +1621,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,password)
@setGlobal(DESC,"Shows a dialog asking user for password and returns it.")
-@case(Input::value(QString,QString,int,int,int,int))
+@case(Input::value(TQString,TQString,int,int,int,int))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"caption")
@setGlobal(PARM2,"label")
@@ -1629,7 +1629,7 @@ fi
@setGlobal(PARM4,"min")
@setGlobal(short,value)
@setGlobal(DESC,"Shows value selection dialog. Returns entered value.")
-@case(Input::double(QString,QString,double,double,double,double))
+@case(Input::double(TQString,TQString,double,double,double,double))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"caption")
@setGlobal(PARM2,"label")
@@ -1637,7 +1637,7 @@ fi
@setGlobal(PARM4,"min")
@setGlobal(short,double)
@setGlobal(DESC,"Shows float value selection dialog. Returns entered value.")
-@case(Input::openfile(QString,QString,QString))
+@case(Input::openfile(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"startdir")
@setGlobal(PARM2,"filter")
@@ -1645,7 +1645,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,openfile)
@setGlobal(DESC,"Shows existing file selection dialog. Returns selected file.")
-@case(Input::savefile(QString,QString,QString))
+@case(Input::savefile(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"startdir")
@setGlobal(PARM2,"filter")
@@ -1653,7 +1653,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,savefile)
@setGlobal(DESC,"Shows save file selection dialog. Returns selected file.")
-@case(Input::directory(QString,QString,QString))
+@case(Input::directory(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"startdir")
@setGlobal(PARM2,"filter")
@@ -1661,7 +1661,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,directory)
@setGlobal(DESC,"Shows directory selection dialog. Returns selected directory.")
-@case(Input::openfiles(QString,QString,QString))
+@case(Input::openfiles(TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"startdir")
@setGlobal(PARM2,"filter")
@@ -1669,7 +1669,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,openfiles)
@setGlobal(DESC,"Shows multiple files selection dialog. Returns EOL-separated list of selected files.")
-@case(Message::info(QString,QString))
+@case(Message::info(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"caption")
@@ -1677,7 +1677,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,info)
@setGlobal(DESC,"Shows an information dialog.")
-@case(Message::error(QString,QString))
+@case(Message::error(TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"caption")
@@ -1685,7 +1685,7 @@ fi
@setGlobal(PARM4,"")
@setGlobal(short,error)
@setGlobal(DESC,"Shows an error dialog.")
-@case(Message::warning(QString,QString,QString,QString,QString))
+@case(Message::warning(TQString,TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"caption")
@@ -1693,7 +1693,7 @@ fi
@setGlobal(PARM4,"button2")
@setGlobal(short,warning)
@setGlobal(DESC,"Shows a warning dialog with up to three buttons. Returns number of selected button.")
-@case(Message::question(QString,QString,QString,QString,QString))
+@case(Message::question(TQString,TQString,TQString,TQString,TQString))
@setGlobal(enWidget,0)
@setGlobal(PARM1,"text")
@setGlobal(PARM2,"caption")
@@ -1816,46 +1816,46 @@ fi
<property name="associations" stdset="0">
<stringlist>
<string>@##### put the following in the @filteroff script #########
-@setGlobal(DCOP,"addUniqueItem(QString,QString)
-associatedText(QString)
-cellText(QString,int,int)
-checked(QString)
-children(QString,bool)
-clear(QString)
-count(QString)
-currentColumn(QString)
-currentItem(QString)
-currentRow(QString)
-execute(QString)
-findItem(QString,QString)
-insertColumn(QString,int,int)
-insertItem(QString,QString,int)
-insertItems(QString,QStringList,int)
-insertRow(QString,int,int)
-item(QString,int)
-itemDepth(QString,int)
-itemPath(QString,int)
-removeColumn(QString,int,int)
-removeItem(QString,int)
-removeRow(QString,int,int)
-selection(QString)
-setAssociatedText(QString,QString)
-setEnabled(QString,bool)
-setCellText(QString,int,int,QString)
-setCellWidget(QString,int,int,QString)
-cellWidget(QString,int,int)
-setChecked(QString,bool)
-setColumnCaption(QString,int,QString)
-setCurrentItem(QString,int)
-insertTab(QString,QString,int)
-setMaximum(QString,int)
-setPixmap(QString,QString,int)
-setRowCaption(QString,int,QString)
-setSelection(QString,QString)
-setText(QString,QString)
-setVisible(QString,bool)
-type(QString)
-setEditable(QString,bool)")
+@setGlobal(DCOP,"addUniqueItem(TQString,TQString)
+associatedText(TQString)
+cellText(TQString,int,int)
+checked(TQString)
+children(TQString,bool)
+clear(TQString)
+count(TQString)
+currentColumn(TQString)
+currentItem(TQString)
+currentRow(TQString)
+execute(TQString)
+findItem(TQString,TQString)
+insertColumn(TQString,int,int)
+insertItem(TQString,TQString,int)
+insertItems(TQString,QStringList,int)
+insertRow(TQString,int,int)
+item(TQString,int)
+itemDepth(TQString,int)
+itemPath(TQString,int)
+removeColumn(TQString,int,int)
+removeItem(TQString,int)
+removeRow(TQString,int,int)
+selection(TQString)
+setAssociatedText(TQString,TQString)
+setEnabled(TQString,bool)
+setCellText(TQString,int,int,TQString)
+setCellWidget(TQString,int,int,TQString)
+cellWidget(TQString,int,int)
+setChecked(TQString,bool)
+setColumnCaption(TQString,int,TQString)
+setCurrentItem(TQString,int)
+insertTab(TQString,TQString,int)
+setMaximum(TQString,int)
+setPixmap(TQString,TQString,int)
+setRowCaption(TQString,int,TQString)
+setSelection(TQString,TQString)
+setText(TQString,TQString)
+setVisible(TQString,bool)
+type(TQString)
+setEditable(TQString,bool)")
@proto.clear
@proto.insertItems(@global(DCOP), 0)
@@ -1888,195 +1888,195 @@ setEditable(QString,bool)")
@##### put the following in the @filteron script #########
@case(aboutdialog)
- @setGlobal(DCOP,"execute(QString)")
+ @setGlobal(DCOP,"execute(TQString)")
@case(buttongroup)
- @setGlobal(DCOP,"checked(QString)
-setChecked(QString,bool)")
+ @setGlobal(DCOP,"checked(TQString)
+setChecked(TQString,bool)")
@case(checkbox)
- @setGlobal(DCOP,"setText(QString,QString)
-checked(QString)
-setChecked(QString,bool)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+checked(TQString)
+setChecked(TQString,bool)")
@case(closebutton)
- @setGlobal(DCOP,"setText(QString,QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)")
@case(combobox)
- @setGlobal(DCOP,"selection(QString)
-setSelection(QString,QString)
-currentItem(QString)
-setCurrentItem(QString,int)
-item(QString,int)
-removeItem(QString,int)
-insertItem(QString,QString,int)
-insertItems(QString,QStringList,int)
-addUniqueItem(QString,QString)
-clear(QString)
-count(QString)
-setEditable(QString,bool)")
+ @setGlobal(DCOP,"selection(TQString)
+setSelection(TQString,TQString)
+currentItem(TQString)
+setCurrentItem(TQString,int)
+item(TQString,int)
+removeItem(TQString,int)
+insertItem(TQString,TQString,int)
+insertItems(TQString,QStringList,int)
+addUniqueItem(TQString,TQString)
+clear(TQString)
+count(TQString)
+setEditable(TQString,bool)")
@case(datepicker)
- @setGlobal(DCOP,"setText(QString,QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)")
@case(dialog)
- @setGlobal(DCOP,"setText(QString,QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)")
@case(execbutton)
- @setGlobal(DCOP,"setText(QString,QString)
-execute(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+execute(TQString)")
@case(fileselector)
- @setGlobal(DCOP,"setText(QString,QString)
-selection(QString)
-setSelection(QString,QString)
-clear(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+selection(TQString)
+setSelection(TQString,TQString)
+clear(TQString)")
@case(fontdialog)
- @setGlobal(DCOP,"execute(QString)")
+ @setGlobal(DCOP,"execute(TQString)")
@case(groupbox)
- @setGlobal(DCOP,"setText(QString,QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)")
@case(konsole)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)
-execute(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)
+execute(TQString)")
@case(label)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)")
@case(lineedit)
- @setGlobal(DCOP,"setText(QString,QString)
-selection(QString)
-setSelection(QString,QString)
-clear(QString)
-setEditable(QString,bool)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+selection(TQString)
+setSelection(TQString,TQString)
+clear(TQString)
+setEditable(TQString,bool)")
@case(listbox)
- @setGlobal(DCOP,"setText(QString,QString)
-selection(QString)
-setSelection(QString,QString)
-insertItems(QString,QStringList,int)
-insertItem(QString,QString,int)
-removeItem(QString,int)
-clear(QString)
-currentItem(QString)
-setCurrentItem(QString,int)
-item(QString,int)
-addUniqueItem(QString,QString)
-findItem(QString,QString)
-setPixmap(QString,QString,int)
-count(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+selection(TQString)
+setSelection(TQString,TQString)
+insertItems(TQString,QStringList,int)
+insertItem(TQString,TQString,int)
+removeItem(TQString,int)
+clear(TQString)
+currentItem(TQString)
+setCurrentItem(TQString,int)
+item(TQString,int)
+addUniqueItem(TQString,TQString)
+findItem(TQString,TQString)
+setPixmap(TQString,TQString,int)
+count(TQString)")
@case(pixmaplabel)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)")
@case(popupmenu)
- @setGlobal(DCOP,"clear(QString)
-execute(QString)
-item(QString,int)
-count(QString)")
+ @setGlobal(DCOP,"clear(TQString)
+execute(TQString)
+item(TQString,int)
+count(TQString)")
@case(progressbar)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)
-setMaximum(QString,int)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)
+setMaximum(TQString,int)")
@case(radiobutton)
- @setGlobal(DCOP,"setText(QString,QString)
-setChecked(QString,bool)
-checked(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+setChecked(TQString,bool)
+checked(TQString)")
@case(richtexteditor)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)
-selection(QString)
-setEditable(QString,bool)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)
+selection(TQString)
+setEditable(TQString,bool)")
@case(scriptobject)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)
-execute(QString)
-item(QString,int)
-count(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)
+execute(TQString)
+item(TQString,int)
+count(TQString)")
@case(slider)
- @setGlobal(DCOP,"setText(QString,QString)
-clear(QString)
-setMaximum(QString,int)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+clear(TQString)
+setMaximum(TQString,int)")
@case(spinboxint)
- @setGlobal(DCOP,"setText(QString,QString)
-setMaximum(QString,int)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+setMaximum(TQString,int)")
@case(statusbar)
- @setGlobal(DCOP,"setText(QString,QString)
-insertItem(QString,QString,int)
-removeItem(QString,int)
-clear(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+insertItem(TQString,TQString,int)
+removeItem(TQString,int)
+clear(TQString)")
@case(table)
- @setGlobal(DCOP,"currentColumn(QString)
-currentRow(QString)
-insertColumn(QString,int,int)
-insertRow(QString,int,int)
-cellText(QString,int,int)
-setCellText(QString,int,int,QString)
-setCellWidget(QString,int,int,QString)
-cellWidget(QString,int,int)
-removeRow(QString,int,int)
-removeColumn(QString,int,int)
-setColumnCaption(QString,int,QString)
-setRowCaption(QString,int,QString)
-setText(QString,QString)
-selection(QString)")
+ @setGlobal(DCOP,"currentColumn(TQString)
+currentRow(TQString)
+insertColumn(TQString,int,int)
+insertRow(TQString,int,int)
+cellText(TQString,int,int)
+setCellText(TQString,int,int,TQString)
+setCellWidget(TQString,int,int,TQString)
+cellWidget(TQString,int,int)
+removeRow(TQString,int,int)
+removeColumn(TQString,int,int)
+setColumnCaption(TQString,int,TQString)
+setRowCaption(TQString,int,TQString)
+setText(TQString,TQString)
+selection(TQString)")
@case(tabwidget)
- @setGlobal(DCOP,"currentItem(QString)
-setCurrentItem(QString,int)
-insertTab(QString,QString,int)")
+ @setGlobal(DCOP,"currentItem(TQString)
+setCurrentItem(TQString,int)
+insertTab(TQString,TQString,int)")
@case(textbrowser)
- @setGlobal(DCOP,"setText(QString,QString)
-selection(QString)
-clear(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+selection(TQString)
+clear(TQString)")
@case(textedit)
- @setGlobal(DCOP,"setText(QString,QString)
-selection(QString)
-setSelection(QString,QString)
-clear(QString)
-setEditable(QString,bool)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+selection(TQString)
+setSelection(TQString,TQString)
+clear(TQString)
+setEditable(TQString,bool)")
@case(timer)
- @setGlobal(DCOP,"setText(QString,QString)
-execute(QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)
+execute(TQString)")
@case(timewidget)
- @setGlobal(DCOP,"setText(QString,QString)")
+ @setGlobal(DCOP,"setText(TQString,TQString)")
@case(toolbox)
- @setGlobal(DCOP,"count(QString)")
+ @setGlobal(DCOP,"count(TQString)")
@case(treewidget)
- @setGlobal(DCOP,"insertItem(QString,QString,int)
-setText(QString,QString)
-insertItems(QString,QStringList,int)
-selection(QString)
-setSelection(QString,QString)
-clear(QString)
-removeItem(QString,int)
-currentItem(QString)
-setCurrentItem(QString,int)
-findItem(QString,QString)
-item(QString,int)
-itemPath(QString,int)
-itemDepth(QString,int)
-setPixmap(QString,QString,int)
-setColumnCaption(QString,int,QString)")
+ @setGlobal(DCOP,"insertItem(TQString,TQString,int)
+setText(TQString,TQString)
+insertItems(TQString,QStringList,int)
+selection(TQString)
+setSelection(TQString,TQString)
+clear(TQString)
+removeItem(TQString,int)
+currentItem(TQString)
+setCurrentItem(TQString,int)
+findItem(TQString,TQString)
+item(TQString,int)
+itemPath(TQString,int)
+itemDepth(TQString,int)
+setPixmap(TQString,TQString,int)
+setColumnCaption(TQString,int,TQString)")
@end
@proto.clear
@@ -2095,13 +2095,13 @@ setColumnCaption(QString,int,QString)")
<connections>
<connection>
<sender>wname</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>filterscript</receiver>
<slot>execute()</slot>
</connection>
<connection>
<sender>functiongroup</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>proto</receiver>
<slot>populate()</slot>
</connection>
diff --git a/quanta/data/dtep/html-frameset/common.tag b/quanta/data/dtep/html-frameset/common.tag
index e5adf8f7..47adb16b 100644
--- a/quanta/data/dtep/html-frameset/common.tag
+++ b/quanta/data/dtep/html-frameset/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/html-strict/common.tag b/quanta/data/dtep/html-strict/common.tag
index e5adf8f7..47adb16b 100644
--- a/quanta/data/dtep/html-strict/common.tag
+++ b/quanta/data/dtep/html-strict/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/html/common.tag b/quanta/data/dtep/html/common.tag
index e5adf8f7..47adb16b 100644
--- a/quanta/data/dtep/html/common.tag
+++ b/quanta/data/dtep/html/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/html5/common.tag b/quanta/data/dtep/html5/common.tag
index 0ff1796a..a380f05b 100644
--- a/quanta/data/dtep/html5/common.tag
+++ b/quanta/data/dtep/html5/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/wml-1-2/common.tag b/quanta/data/dtep/wml-1-2/common.tag
index 7be9453e..c59bda3c 100644
--- a/quanta/data/dtep/wml-1-2/common.tag
+++ b/quanta/data/dtep/wml-1-2/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
</tag>
diff --git a/quanta/data/dtep/xhtml-basic/common.tag b/quanta/data/dtep/xhtml-basic/common.tag
index 25baba50..b8418b20 100644
--- a/quanta/data/dtep/xhtml-basic/common.tag
+++ b/quanta/data/dtep/xhtml-basic/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="title" type="input">
</attr>
diff --git a/quanta/data/dtep/xhtml-frameset/common.tag b/quanta/data/dtep/xhtml-frameset/common.tag
index 72c0d679..e0148338 100644
--- a/quanta/data/dtep/xhtml-frameset/common.tag
+++ b/quanta/data/dtep/xhtml-frameset/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/xhtml-strict/common.tag b/quanta/data/dtep/xhtml-strict/common.tag
index e52f08ea..cb7e6e30 100644
--- a/quanta/data/dtep/xhtml-strict/common.tag
+++ b/quanta/data/dtep/xhtml-strict/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/xhtml/common.tag b/quanta/data/dtep/xhtml/common.tag
index 1fd94db2..c8f53e0b 100644
--- a/quanta/data/dtep/xhtml/common.tag
+++ b/quanta/data/dtep/xhtml/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/data/dtep/xhtml11/common.tag b/quanta/data/dtep/xhtml11/common.tag
index 0ff1796a..a380f05b 100644
--- a/quanta/data/dtep/xhtml11/common.tag
+++ b/quanta/data/dtep/xhtml11/common.tag
@@ -4,7 +4,7 @@
<tag name="Core" common="yes">
<attr name="id" type="list" source="dcop" interface="QuantaIf" method="idSelectors()" arguments="" >
</attr>
- <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(QString)" arguments="%tagname%" >
+ <attr name="class" type="list" source="dcop" interface="QuantaIf" method="selectors(TQString)" arguments="%tagname%" >
</attr>
<attr name="style" type="css-style">
</attr>
diff --git a/quanta/quanta_uml.xmi b/quanta/quanta_uml.xmi
index a381b6fb..d266e9fa 100644
--- a/quanta/quanta_uml.xmi
+++ b/quanta/quanta_uml.xmi
@@ -13,7 +13,7 @@
<umlobjects>
<UML:Class stereotype="" package="" xmi.id="74" abstract="0" documentation="This should contain a &quot;view&quot; of the document. This is not clearly implemented. The class contains a set of tabs, and each tab can hold one Document object. I think the tab (and such the MDI) handling should go to the QuantaApp class and here only the document view related things should be. Just as the Document/View model requests." name="QuantaView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="86" type="" abstract="0" documentation="" name="QuantaView" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="87" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="87" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="88" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="89" type="void" abstract="0" documentation="" name="addWrite" static="0" scope="200" >
@@ -61,8 +61,8 @@
<UML:Operation stereotype="" package="" xmi.id="205" type="" abstract="0" documentation="Some initializations goes here." name="QuantaApp" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="206" type="QDomDocument *" abstract="0" documentation="" name="actions" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="207" type="bool" abstract="0" documentation="Returns true if the current DTD does not have any toolbars, or if all of the toolbars are removed or if the &quot;Shov DTD Toolbar&quot; is unchecked." name="allToolbarsHidden" static="0" scope="202" />
- <UML:Operation stereotype="" package="" xmi.id="208" type="QWidget *" abstract="0" documentation="" name="createContainer" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="209" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="208" type="TQWidget *" abstract="0" documentation="" name="createContainer" static="0" scope="200" >
+ <UML:Parameter stereotype="" package="" xmi.id="209" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="210" value="" type="int" abstract="0" documentation="" name="index" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="211" value="" type="const QDomElement &amp;" abstract="0" documentation="" name="element" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="212" value="" type="int &amp;" abstract="0" documentation="" name="id" static="0" scope="200" />
@@ -88,7 +88,7 @@
<UML:Parameter stereotype="" package="" xmi.id="230" value="" type="TQString" abstract="0" documentation="" name="url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="231" type="void" abstract="0" documentation="" name="loadToolbarForDTD" static="0" scope="202" >
- <UML:Parameter stereotype="" package="" xmi.id="232" value="" type="const QString &amp;" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="232" value="" type="const TQString &amp;" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="233" type="TQString" abstract="0" documentation="" name="newFileType" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="234" type="KDockWidget *" abstract="0" documentation="" name="outputDockWidget" static="0" scope="200" />
@@ -100,7 +100,7 @@
<UML:Operation stereotype="" package="" xmi.id="239" type="virtual bool" abstract="0" documentation="" name="queryClose" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="240" type="void" abstract="0" documentation="" name="readOptions" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="241" type="void" abstract="0" documentation="" name="readTagDir" static="0" scope="202" >
- <UML:Parameter stereotype="" package="" xmi.id="242" value="" type="QString &amp;" abstract="0" documentation="" name="dirName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="242" value="" type="TQString &amp;" abstract="0" documentation="" name="dirName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="243" type="uint" abstract="0" documentation="" name="readTagFile" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="244" value="" type="TQString" abstract="0" documentation="" name="fileName" static="0" scope="200" />
@@ -108,13 +108,13 @@
<UML:Parameter stereotype="" package="" xmi.id="246" value="" type="QTagList *" abstract="0" documentation="" name="tagList" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="247" type="void" abstract="0" documentation="" name="removeContainer" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="248" value="" type="QWidget *" abstract="0" documentation="" name="container" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="249" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="248" value="" type="TQWidget *" abstract="0" documentation="" name="container" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="249" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="250" value="" type="QDomElement &amp;" abstract="0" documentation="" name="element" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="251" value="" type="int" abstract="0" documentation="" name="id" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="252" type="void" abstract="0" documentation="" name="removeToolbar" static="0" scope="202" >
- <UML:Parameter stereotype="" package="" xmi.id="253" value="" type="const QString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="253" value="" type="const TQString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="254" type="void" abstract="0" documentation="" name="saveAsTemplate" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="255" value="" type="bool" abstract="0" documentation="" name="projectTemplate" static="0" scope="200" />
@@ -123,7 +123,7 @@
<UML:Operation stereotype="" package="" xmi.id="257" type="void" abstract="0" documentation="" name="saveModifiedToolbars" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="258" type="void" abstract="0" documentation="" name="saveOptions" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="259" type="KURL" abstract="0" documentation="" name="saveToolBar" static="0" scope="202" >
- <UML:Parameter stereotype="" package="" xmi.id="260" value="" type="const QString &amp;" abstract="0" documentation="" name="toolbarName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="260" value="" type="const TQString &amp;" abstract="0" documentation="" name="toolbarName" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="261" value="" type="const KURL &amp;" abstract="0" documentation="" name="destFile" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="262" type="void" abstract="0" documentation="" name="setAttributes" static="0" scope="202" >
@@ -138,7 +138,7 @@
<UML:Parameter stereotype="" package="" xmi.id="269" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="270" type="QPopupMenu *" abstract="0" documentation="" name="toolbarMenu" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="271" value="" type="const QString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="271" value="" type="const TQString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="272" type="QWidgetStack *" abstract="0" documentation="" name="widgetStackOfHtmlPart" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="273" type="" abstract="0" documentation="" name="~QuantaApp" static="0" scope="200" />
@@ -238,7 +238,7 @@
<UML:Class stereotype="" package="" xmi.id="274" abstract="0" documentation="The document handling class. This is somewhat weird, as the Document class should handle all the document related things. The job is distrivute now between this the QuantaView and the QuantaApp class. This must be clearly seperated...
See the operations in order to get a picture what's here." name="QuantaDoc" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="276" type="" abstract="0" documentation="" name="QuantaDoc" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="277" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="277" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="278" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="279" type="void" abstract="0" documentation="" name="changeFileTabName" static="0" scope="200" >
@@ -283,25 +283,25 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="307" abstract="0" documentation="Common static functions used everywhere in the code. " name="QuantaCommon" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="308" type="" abstract="0" documentation="" name="QuantaCommon" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="309" type="TQString" abstract="0" documentation="" name="attrCase" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="310" value="" type="const QString" abstract="0" documentation="" name="attr" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="310" value="" type="const TQString" abstract="0" documentation="" name="attr" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="311" type="bool" abstract="0" documentation="" name="checkExactMimeType" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="312" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="313" value="" type="const QString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="313" value="" type="const TQString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="314" type="bool" abstract="0" documentation="" name="checkMimeGroup" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="315" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="316" value="" type="const QString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="316" value="" type="const TQString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="317" type="bool" abstract="0" documentation="" name="checkMimeType" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="318" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="319" value="" type="const QString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="319" value="" type="const TQString &amp;" abstract="0" documentation="" name="type" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="320" type="KURL" abstract="0" documentation="" name="convertToPath" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="321" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="322" type="void" abstract="0" documentation="" name="dirCreationError" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="323" value="" type="QWidget *" abstract="0" documentation="" name="widget" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="323" value="" type="TQWidget *" abstract="0" documentation="" name="widget" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="324" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="325" type="TQString" abstract="0" documentation="" name="getDTDNameFromNickName" static="0" scope="200" >
@@ -311,7 +311,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="328" value="" type="TQString" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="329" type="TQString" abstract="0" documentation="" name="i18n2normal" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="330" value="" type="const QString &amp;" abstract="0" documentation="" name="a_str" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="330" value="" type="const TQString &amp;" abstract="0" documentation="" name="a_str" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="331" type="int" abstract="0" documentation="" name="isBetween" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="332" value="" type="int" abstract="0" documentation="" name="line" static="0" scope="200" />
@@ -334,7 +334,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="346" value="" type="TQString" abstract="0" documentation="" name="tag" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="347" type="TQString" abstract="0" documentation="" name="makeRxCompatible" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="348" value="" type="const QString" abstract="0" documentation="" name="s" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="348" value="" type="const TQString" abstract="0" documentation="" name="s" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="349" type="TDEStandardDirs *" abstract="0" documentation="" name="pluginDirs" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="350" value="" type="const char *" abstract="0" documentation="" name="type" static="0" scope="200" />
@@ -356,7 +356,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="362" value="" type="TQString" abstract="0" documentation="" name="tag" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="363" type="TQString" abstract="0" documentation="" name="tagCase" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="364" value="" type="const QString" abstract="0" documentation="" name="tag" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="364" value="" type="const TQString" abstract="0" documentation="" name="tag" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="365" type="QTag *" abstract="0" documentation="" name="tagFromDTD" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="366" value="" type="DTDStruct *" abstract="0" documentation="" name="dtd" static="0" scope="200" />
@@ -391,7 +391,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="391" value="" type="const KURL &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="392" type="TQString" abstract="0" documentation="" name="shortName" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="393" value="" type="const QString &amp;" abstract="0" documentation="" name="fname" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="393" value="" type="const TQString &amp;" abstract="0" documentation="" name="fname" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="394" type="KURL" abstract="0" documentation="" name="toAbsolute" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="395" value="" type="const KURL &amp;" abstract="0" documentation="" name="urlToConvert" static="0" scope="200" />
@@ -420,13 +420,13 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="428" value="" type="KTextEditor :: Document *" abstract="0" documentation="" name="doc" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="429" value="" type="Project *" abstract="0" documentation="" name="project" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="430" value="" type="QuantaPluginInterface *" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="431" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="431" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="432" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="433" value="" type="WFlags" abstract="0" documentation="" name="f" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="434" type="void" abstract="0" documentation="" name="changeTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="435" value="" type="Tag *" abstract="0" documentation="" name="tag" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="436" value="" type="QDict &lt; QString > *" abstract="0" documentation="" name="dict" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="436" value="" type="QDict &lt; TQString > *" abstract="0" documentation="" name="dict" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="437" type="void" abstract="0" documentation="" name="checkDirtyStatus" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="438" type="int" abstract="0" documentation="" name="checkOverwrite" static="0" scope="200" >
@@ -443,7 +443,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="447" type="DTDStruct *" abstract="0" documentation="" name="defaultDTD" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="448" type="bool" abstract="0" documentation="" name="dirty" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="449" type="bool" abstract="0" documentation="" name="evenQuotes" static="0" scope="202" >
- <UML:Parameter stereotype="" package="" xmi.id="450" value="" type="const QString &amp;" abstract="0" documentation="" name="text" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="450" value="" type="const TQString &amp;" abstract="0" documentation="" name="text" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="451" type="TQString" abstract="0" documentation="" name="find" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="452" value="" type="const QRegExp &amp;" abstract="0" documentation="" name="rx" static="0" scope="200" />
@@ -467,7 +467,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="468" value="" type="int &amp;" abstract="0" documentation="" name="feCol" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="469" type="TQString" abstract="0" documentation="" name="findWordRev" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="470" value="" type="const QString &amp;" abstract="0" documentation="" name="textToSearch" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="470" value="" type="const TQString &amp;" abstract="0" documentation="" name="textToSearch" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="471" type="Tag *" abstract="0" documentation="" name="findXMLTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="472" value="" type="int" abstract="0" documentation="" name="line" static="0" scope="200" />
@@ -533,7 +533,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="520" value="" type="DTDStruct *" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="521" value="" type="int" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="522" value="" type="int" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="523" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="523" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="524" type="bool" abstract="0" documentation="" name="scriptCodeCompletion" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="525" value="" type="DTDStruct *" abstract="0" documentation="" name="dtd" static="0" scope="200" />
@@ -556,7 +556,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="538" value="" type="bool" abstract="0" documentation="" name="flag" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="539" type="void" abstract="0" documentation="" name="setParsingDTD" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="540" value="" type="const QString &amp;" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="540" value="" type="const TQString &amp;" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="541" type="void" abstract="0" documentation="" name="setUntitledUrl" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="542" value="" type="TQString" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -579,7 +579,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="555" value="" type="DTDStruct *" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="556" value="" type="int" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="557" value="" type="int" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="558" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="558" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="559" type="bool" abstract="0" documentation="" name="xmlCodeCompletion" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="560" value="" type="DTDStruct *" abstract="0" documentation="" name="dtd" static="0" scope="200" />
@@ -676,13 +676,13 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="631" value="" type="int &amp;" abstract="0" documentation="" name="eCol" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="632" type="bool" abstract="0" documentation="" name="hasAttribute" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="633" value="" type="const QString &amp;" abstract="0" documentation="" name="attr" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="633" value="" type="const TQString &amp;" abstract="0" documentation="" name="attr" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="634" type="bool" abstract="0" documentation="" name="isQuotedAttribute" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="635" value="" type="int" abstract="0" documentation="" name="index" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="636" type="void" abstract="0" documentation="" name="parse" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="637" value="" type="const QString &amp;" abstract="0" documentation="" name="p_tagStr" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="637" value="" type="const TQString &amp;" abstract="0" documentation="" name="p_tagStr" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="638" value="" type="Document *" abstract="0" documentation="" name="p_write" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="639" type="void" abstract="0" documentation="" name="parseAttr" static="0" scope="202" >
@@ -691,7 +691,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="642" value="" type="int &amp;" abstract="0" documentation="" name="col" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="643" type="void" abstract="0" documentation="" name="setStr" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="644" value="" type="const QString &amp;" abstract="0" documentation="" name="p_tagStr" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="644" value="" type="const TQString &amp;" abstract="0" documentation="" name="p_tagStr" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="645" type="void" abstract="0" documentation="" name="setTagPosition" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="646" value="" type="int" abstract="0" documentation="" name="bLine" static="0" scope="200" />
@@ -737,7 +737,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="675" value="" type="Attribute *" abstract="0" documentation="" name="attr" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="676" type="Attribute *" abstract="0" documentation="" name="attribute" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="677" value="" type="QString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="677" value="" type="TQString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="678" type="Attribute *" abstract="0" documentation="" name="attributeAt" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="679" value="" type="int" abstract="0" documentation="" name="index" static="0" scope="200" />
@@ -749,10 +749,10 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="684" type="bool" abstract="0" documentation="" name="isSingle" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="685" type="TQString" abstract="0" documentation="" name="name" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="686" type="void" abstract="0" documentation="" name="setFileName" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="687" value="" type="QString &amp;" abstract="0" documentation="" name="fileName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="687" value="" type="TQString &amp;" abstract="0" documentation="" name="fileName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="688" type="void" abstract="0" documentation="" name="setName" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="689" value="" type="const QString &amp;" abstract="0" documentation="" name="theName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="689" value="" type="const TQString &amp;" abstract="0" documentation="" name="theName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="690" type="void" abstract="0" documentation="" name="setOptional" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="691" value="" type="bool" abstract="0" documentation="" name="isOptional" static="0" scope="200" />
@@ -839,7 +839,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="747" abstract="0" documentation="Editor for the plugins that manages configuration" name="QuantaPluginEditor" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="749" type="" abstract="0" documentation="" name="QuantaPluginEditor" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="750" value="" type="QWidget *" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="750" value="" type="TQWidget *" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="751" value="" type="const char *" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="752" type="QDict" abstract="0" documentation="" name="plugins" static="0" scope="200" />
@@ -858,7 +858,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="762" abstract="0" documentation="Dialog to configure a plugin's options" name="QuantaPluginConfig" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="763" type="" abstract="0" documentation="" name="QuantaPluginConfig" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="764" value="" type="QWidget *" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="764" value="" type="TQWidget *" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="765" value="" type="const char *" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="766" type="" abstract="0" documentation="" name="~QuantaPluginConfig" static="0" scope="200" />
@@ -866,7 +866,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="767" abstract="0" documentation="This class handles the spellchecking. It should work with all KTextEditor's, not only Kate.
This is not a real plugin. The code is based on SpellPlugin for Kate." name="SpellChecker" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="771" type="" abstract="0" documentation="" name="SpellChecker" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="772" value="" type="QObject *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="772" value="" type="TQObject *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="773" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="774" type="void" abstract="0" documentation="" name="locatePosition" static="0" scope="202" >
@@ -900,38 +900,38 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="793" abstract="0" documentation="" name="QuantaPlugin" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="805" type="" abstract="0" documentation="" name="QuantaPlugin" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="806" type="" abstract="0" documentation="" name="QuantaPlugin" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="807" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="808" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="809" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="810" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="811" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="812" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="813" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- </UML:Operation>
- <UML:Operation stereotype="" package="" xmi.id="814" type="virtual QString" abstract="0" documentation="" name="arguments" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="815" type="virtual QString" abstract="0" documentation="" name="fileName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="807" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="808" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="809" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="810" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="811" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="812" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="813" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ </UML:Operation>
+ <UML:Operation stereotype="" package="" xmi.id="814" type="virtual TQString" abstract="0" documentation="" name="arguments" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="815" type="virtual TQString" abstract="0" documentation="" name="fileName" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="816" type="virtual bool" abstract="0" documentation="" name="isLoaded" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="817" type="virtual bool" abstract="0" documentation="" name="isRunning" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="818" type="virtual bool" abstract="0" documentation="" name="isStandard" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="819" type="virtual bool" abstract="0" documentation="" name="load" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="820" type="virtual QString" abstract="0" documentation="" name="location" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="821" type="virtual QString" abstract="0" documentation="" name="outputWindow" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="822" type="virtual QString" abstract="0" documentation="" name="pluginName" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="820" type="virtual TQString" abstract="0" documentation="" name="location" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="821" type="virtual TQString" abstract="0" documentation="" name="outputWindow" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="822" type="virtual TQString" abstract="0" documentation="" name="pluginName" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="823" type="virtual bool" abstract="0" documentation="" name="run" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="824" type="virtual void" abstract="0" documentation="" name="setArguments" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="825" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="825" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="826" type="virtual void" abstract="0" documentation="" name="setFileName" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="827" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="827" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="828" type="virtual void" abstract="0" documentation="" name="setLocation" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="829" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="829" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="830" type="virtual void" abstract="0" documentation="" name="setOutputWindow" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="831" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="831" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="832" type="virtual void" abstract="0" documentation="" name="setPluginName" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="833" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="833" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="834" type="virtual void" abstract="0" documentation="" name="setRunning" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="835" value="" type="bool" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -940,21 +940,21 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="837" value="" type="bool" abstract="0" documentation="" name="isStandard" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="838" type="virtual void" abstract="0" documentation="" name="setType" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="839" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="839" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="840" type="virtual bool" abstract="0" documentation="" name="toggle" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="841" type="virtual QString" abstract="0" documentation="" name="type" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="841" type="virtual TQString" abstract="0" documentation="" name="type" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="842" type="virtual bool" abstract="0" documentation="" name="unload" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="843" type="bool" abstract="0" documentation="" name="validatePlugin" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="844" value="" type="QuantaPlugin *" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="845" type="bool" abstract="0" documentation="" name="validatePluginInfo" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="846" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="847" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="848" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="849" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="850" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="851" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="846" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="847" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="848" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="849" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="850" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="851" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="852" type="" abstract="0" documentation="" name="~QuantaPlugin" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="794" value="" type="TDEToggleAction *" abstract="0" documentation="" name="m_action" static="0" scope="200" />
@@ -972,13 +972,13 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="853" abstract="0" documentation="Provides an interface to the installed plugins. " name="QuantaPluginInterface" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="856" type="" abstract="0" documentation="" name="QuantaPluginInterface" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="857" type="TQStringList" abstract="0" documentation="" name="outputWindows" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="858" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="858" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="859" type="virtual QuantaPlugin *" abstract="0" documentation="" name="plugin" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="860" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="860" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="861" type="bool" abstract="0" documentation="" name="pluginAvailable" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="862" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="862" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="863" type="virtual QStringList" abstract="0" documentation="" name="pluginNames" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="864" type="TQStringList" abstract="0" documentation="" name="pluginTypes" static="0" scope="200" />
@@ -1001,12 +1001,12 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="876" abstract="0" documentation="" name="Project" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="907" type="" abstract="0" documentation="" name="Project" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="908" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="908" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="909" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="910" type="bool" abstract="0" documentation="" name="createEmptyDom" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="911" type="virtual const QString &amp;" abstract="0" documentation="" name="defaultDTD" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="912" type="virtual const QString &amp;" abstract="0" documentation="" name="defaultEncoding" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="911" type="virtual const TQString &amp;" abstract="0" documentation="" name="defaultDTD" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="912" type="virtual const TQString &amp;" abstract="0" documentation="" name="defaultEncoding" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="913" type="bool" abstract="0" documentation="" name="hasProject" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="914" type="void" abstract="0" documentation="" name="insertFile" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="915" value="" type="const KURL &amp;" abstract="0" documentation="" name="nameURL" static="0" scope="200" />
@@ -1017,11 +1017,11 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="919" type="void" abstract="0" documentation="" name="insertFiles" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="920" value="" type="const KURL &amp;" abstract="0" documentation="" name="pathURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="921" value="" type="const QString &amp;" abstract="0" documentation="" name="mask" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="921" value="" type="const TQString &amp;" abstract="0" documentation="" name="mask" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="922" type="bool" abstract="0" documentation="" name="isModified" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="923" type="void" abstract="0" documentation="" name="loadProjectXML" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="924" type="virtual const QString &amp;" abstract="0" documentation="" name="newFileType" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="924" type="virtual const TQString &amp;" abstract="0" documentation="" name="newFileType" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="925" type="void" abstract="0" documentation="" name="openCurrentView" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="926" type="void" abstract="0" documentation="" name="readConfig" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="927" value="" type="TDEConfig *" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -1030,7 +1030,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="929" value="" type="TDEConfig *" abstract="0" documentation="" name="c" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="930" type="virtual void" abstract="0" documentation="" name="setDefaultDTD" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="931" value="" type="const QString &amp;" abstract="0" documentation="" name="p_defaultDTD" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="931" value="" type="const TQString &amp;" abstract="0" documentation="" name="p_defaultDTD" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="932" type="KURL" abstract="0" documentation="" name="urlWithPrefix" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="933" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
@@ -1074,10 +1074,10 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="940" type="" abstract="0" documentation="" name="FilesListView" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="941" value="" type="TQString" abstract="0" documentation="" name="dir" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="942" value="" type="TQStringList" abstract="0" documentation="" name="topList" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="943" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="943" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="944" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
- <UML:Operation stereotype="" package="" xmi.id="945" type="virtual QString" abstract="0" documentation="" name="currentFileName" static="0" scope="202" />
+ <UML:Operation stereotype="" package="" xmi.id="945" type="virtual TQString" abstract="0" documentation="" name="currentFileName" static="0" scope="202" />
<UML:Operation stereotype="" package="" xmi.id="946" type="void" abstract="0" documentation="" name="loadDir" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="947" value="" type="TQString" abstract="0" documentation="" name="path" static="0" scope="200" />
</UML:Operation>
@@ -1094,7 +1094,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="959" type="" abstract="0" documentation="" name="FilesTreeFolder" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="960" value="" type="QListView *" abstract="0" documentation="" name="parentListView" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="961" value="" type="const QString &amp;" abstract="0" documentation="" name="p_name" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="961" value="" type="const TQString &amp;" abstract="0" documentation="" name="p_name" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="962" value="" type="const KURL &amp;" abstract="0" documentation="" name="p_url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="963" type="virtual bool" abstract="0" documentation="" name="acceptDrop" static="0" scope="200" >
@@ -1103,9 +1103,9 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="965" type="virtual void" abstract="0" documentation="" name="dropped" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="966" value="" type="QDropEvent *" abstract="0" documentation="" name="e" static="0" scope="200" />
</UML:Operation>
- <UML:Operation stereotype="" package="" xmi.id="967" type="virtual QString" abstract="0" documentation="" name="fullName" static="0" scope="200" />
+ <UML:Operation stereotype="" package="" xmi.id="967" type="virtual TQString" abstract="0" documentation="" name="fullName" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="968" type="void" abstract="0" documentation="" name="init" static="0" scope="202" />
- <UML:Operation stereotype="" package="" xmi.id="969" type="virtual QString" abstract="0" documentation="" name="key" static="0" scope="200" >
+ <UML:Operation stereotype="" package="" xmi.id="969" type="virtual TQString" abstract="0" documentation="" name="key" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="970" value="" type="int" abstract="0" documentation="" name="column" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="971" value="" type="bool" abstract="0" documentation="" name="ascending" static="0" scope="200" />
</UML:Operation>
@@ -1204,7 +1204,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="1043" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1044" type="TQString" abstract="0" documentation="" name="fullName" static="0" scope="200" />
- <UML:Operation stereotype="" package="" xmi.id="1045" type="virtual QString" abstract="0" documentation="" name="key" static="0" scope="200" >
+ <UML:Operation stereotype="" package="" xmi.id="1045" type="virtual TQString" abstract="0" documentation="" name="key" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1046" value="" type="int" abstract="0" documentation="" name="column" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1047" value="" type="bool" abstract="0" documentation="" name="ascending" static="0" scope="200" />
</UML:Operation>
@@ -1228,7 +1228,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1063" type="" abstract="0" documentation="" name="ProjectTreeFolder" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1064" value="" type="QListView *" abstract="0" documentation="" name="parentListView" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1065" value="" type="const QString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1065" value="" type="const TQString &amp;" abstract="0" documentation="" name="name" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1066" value="" type="const KURL &amp;" abstract="0" documentation="" name="p_url" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1067" type="bool" abstract="0" documentation="" name="contains" static="0" scope="200" >
@@ -1265,10 +1265,10 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1089" abstract="0" documentation="" name="DocTreeView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1091" type="" abstract="0" documentation="" name="DocTreeView" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1092" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1092" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1093" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
- <UML:Operation stereotype="" package="" xmi.id="1094" type="QString *" abstract="0" documentation="" name="contextHelp" static="0" scope="200" >
+ <UML:Operation stereotype="" package="" xmi.id="1094" type="TQString *" abstract="0" documentation="" name="contextHelp" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1095" value="" type="TQString" abstract="0" documentation="" name="keyword" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1096" type="" abstract="0" documentation="" name="~DocTreeView" static="0" scope="200" />
@@ -1276,7 +1276,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1097" abstract="0" documentation="A tree view used to display a set of files/directories explicitly added to it. It is used in several dialogs, e.g in Project Upload dialog, Rescan Project dialog, add files/folders to project dialogs." name="UploadTreeView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1098" type="" abstract="0" documentation="" name="UploadTreeView" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1099" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1099" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1100" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1101" type="UploadTreeFile *" abstract="0" documentation="" name="addItem" static="0" scope="200" >
@@ -1295,10 +1295,10 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1111" type="UploadTreeFolder *" abstract="0" documentation="" name="findFolder" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="1112" value="" type="UploadTreeFolder *" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1113" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1113" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1114" type="QListViewItem *" abstract="0" documentation="" name="findItem" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1115" value="" type="const QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1115" value="" type="const TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1116" type="void" abstract="0" documentation="" name="invertAll" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1117" value="" type="QListViewItem *" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -1319,7 +1319,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="1144" type="" abstract="0" documentation="" name="StructTreeView" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1145" value="" type="Parser *" abstract="0" documentation="" name="parser" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1146" value="" type="TDEConfig *" abstract="0" documentation="" name="config" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1147" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1147" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1148" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1149" type="void" abstract="0" documentation="" name="buildTree" static="0" scope="202" >
@@ -1336,7 +1336,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="1158" value="" type="bool" abstract="0" documentation="" name="open" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1159" type="void" abstract="0" documentation="" name="setParsingDTD" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1160" value="" type="const QString" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1160" value="" type="const TQString" abstract="0" documentation="" name="dtdName" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1161" type="virtual void" abstract="0" documentation="" name="showEvent" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="1162" value="" type="QShowEvent *" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -1377,7 +1377,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="1178" value="" type="TQString" abstract="0" documentation="" name="" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1179" value="" type="TQString" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
- <UML:Operation stereotype="" package="" xmi.id="1180" type="virtual QString" abstract="0" documentation="" name="key" static="0" scope="200" >
+ <UML:Operation stereotype="" package="" xmi.id="1180" type="virtual TQString" abstract="0" documentation="" name="key" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1181" value="" type="int" abstract="0" documentation="" name="column" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1182" value="" type="bool" abstract="0" documentation="" name="ascending" static="0" scope="200" />
</UML:Operation>
@@ -1392,7 +1392,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1187" abstract="0" documentation="TreeView for templates. As the templates are standard directories, it inherits from FilesTreeView." name="TemplatesTreeView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1195" type="" abstract="0" documentation="" name="TemplatesTreeView" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1196" value="" type="const KURL &amp;" abstract="0" documentation="" name="projectBaseURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1197" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1197" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1198" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1199" type="void" abstract="0" documentation="" name="contentsDropEvent" static="0" scope="202" >
@@ -1421,24 +1421,24 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1211" abstract="0" documentation="TDEListViewItem specific for the structure tree." name="StructTreeTag" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1213" type="" abstract="0" documentation="" name="StructTreeTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1214" value="" type="QListView *" abstract="0" documentation="" name="parent" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1215" value="" type="const QString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1215" value="" type="const TQString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1216" type="" abstract="0" documentation="" name="StructTreeTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1217" value="" type="StructTreeTag *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1218" value="" type="Node *" abstract="0" documentation="" name="a_node" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1219" value="" type="const QString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1219" value="" type="const TQString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1220" value="" type="QListViewItem *" abstract="0" documentation="" name="after" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1221" type="" abstract="0" documentation="" name="StructTreeTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1222" value="" type="StructTreeTag *" abstract="0" documentation="" name="parent" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1223" value="" type="const QString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1223" value="" type="const TQString" abstract="0" documentation="" name="a_title" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1224" type="" abstract="0" documentation="" name="~StructTreeTag" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1212" value="" type="Node *" abstract="0" documentation="" name="node" static="0" scope="200" />
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1225" abstract="0" documentation="A project specific TDEListView." name="ProjectTreeView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1231" type="" abstract="0" documentation="" name="ProjectTreeView" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1232" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1232" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1233" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1234" type="virtual KURL" abstract="0" documentation="" name="currentURL" static="0" scope="202" />
@@ -1459,11 +1459,11 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1241" abstract="0" documentation="Extended FileManage to handle remote and local directory structures in a tree." name="FilesTreeView" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1242" type="" abstract="0" documentation="" name="FilesTreeView" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1243" value="" type="KURL :: List" abstract="0" documentation="" name="topList" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1244" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1244" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1245" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1246" type="" abstract="0" documentation="" name="FilesTreeView" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1247" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1247" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1248" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1249" type="void" abstract="0" documentation="" name="addFileInfoPage" static="0" scope="202" >
@@ -1494,7 +1494,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1267" abstract="0" documentation="A treeview which has some common file managing methods. It inherits from TDEListView." name="FileManage" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1272" type="" abstract="0" documentation="" name="FileManage" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="1273" type="" abstract="0" documentation="" name="FileManage" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1274" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1274" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1275" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1276" type="virtual KURL" abstract="0" documentation="" name="currentURL" static="0" scope="202" />
@@ -1537,7 +1537,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="1326" type="" abstract="0" documentation="" name="ProjectUpload" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1327" value="" type="Project *" abstract="0" documentation="" name="p" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1328" value="" type="const KURL &amp;" abstract="0" documentation="" name="url" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1329" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1329" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1330" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1331" value="" type="bool" abstract="0" documentation="" name="modal" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1332" value="" type="WFlags" abstract="0" documentation="" name="fl" static="0" scope="200" />
@@ -1561,7 +1561,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1340" abstract="0" documentation="Create a new project from tdeio accessible files and folders." name="ProjectNewLocal" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1342" type="" abstract="0" documentation="" name="ProjectNewLocal" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1343" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1343" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1344" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1345" type="virtual void" abstract="0" documentation="" name="resizeEvent" static="0" scope="200" >
@@ -1574,7 +1574,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="1351" type="" abstract="0" documentation="" name="RescanPrj" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1352" value="" type="KURL :: List" abstract="0" documentation="" name="p_prjFileList" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1353" value="" type="const KURL &amp;" abstract="0" documentation="" name="p_baseURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1354" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1354" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1355" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1356" value="" type="bool" abstract="0" documentation="" name="modal" static="0" scope="200" />
</UML:Operation>
@@ -1587,7 +1587,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1360" abstract="0" documentation="" name="ProjectNewFinal" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1361" type="" abstract="0" documentation="" name="ProjectNewFinal" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1362" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1362" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1363" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1364" type="void" abstract="0" documentation="" name="setMargin" static="0" scope="200" >
@@ -1597,7 +1597,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1367" abstract="0" documentation="Create a new project with the help of wget." name="ProjectNewWeb" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1372" type="" abstract="0" documentation="" name="ProjectNewWeb" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1373" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1373" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1374" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1375" type="virtual void" abstract="0" documentation="" name="resizeEvent" static="0" scope="200" >
@@ -1611,7 +1611,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1378" abstract="0" documentation="" name="ProjectNewGeneral" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1379" type="" abstract="0" documentation="" name="ProjectNewGeneral" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1380" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1380" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1381" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1382" type="void" abstract="0" documentation="" name="setMargin" static="0" scope="200" >
@@ -1628,16 +1628,16 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Operation stereotype="" package="" xmi.id="1391" type="" abstract="0" documentation="" name="CSSSelectorEditor" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1392" value="" type="TQString" abstract="0" documentation="" name="code" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1393" value="" type="bool" abstract="0" documentation="" name="editSelector" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1394" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1394" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1395" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1396" type="TQString" abstract="0" documentation="" name="code" static="0" scope="200" />
<UML:Operation stereotype="" package="" xmi.id="1397" type="void" abstract="0" documentation="" name="splitValueTRBL" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="1398" value="" type="TQString" abstract="0" documentation="" name="value" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1399" value="" type="QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1400" value="" type="QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1401" value="" type="QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1402" value="" type="QString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1399" value="" type="TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1400" value="" type="TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1401" value="" type="TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1402" value="" type="TQString &amp;" abstract="0" documentation="" name="" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1403" type="void" abstract="0" documentation="" name="widgetFromCode" static="0" scope="202" >
<UML:Parameter stereotype="" package="" xmi.id="1404" value="" type="TQString" abstract="0" documentation="" name="" static="0" scope="200" />
@@ -1667,8 +1667,8 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Parameter stereotype="" package="" xmi.id="1430" value="" type="KURL" abstract="0" documentation="" name="a_baseURL" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1431" type="void" abstract="0" documentation="" name="insertAttribute" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1432" value="" type="QString *" abstract="0" documentation="" name="attr" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1433" value="" type="QString *" abstract="0" documentation="" name="value" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1432" value="" type="TQString *" abstract="0" documentation="" name="attr" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1433" value="" type="TQString *" abstract="0" documentation="" name="value" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1434" type="void" abstract="0" documentation="" name="insertTag" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1435" value="" type="Document *" abstract="0" documentation="" name="w" static="0" scope="200" />
@@ -1685,12 +1685,12 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Attribute stereotype="" package="" xmi.id="1411" value="" type="QPtrList *" abstract="0" documentation="" name="extraPageList" static="0" scope="201" />
<UML:Attribute stereotype="" package="" xmi.id="1412" value="" type="KURL" abstract="0" documentation="" name="m_baseURL" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1413" value="" type="Tag *" abstract="0" documentation="" name="m_tag" static="0" scope="201" />
- <UML:Attribute stereotype="" package="" xmi.id="1414" value="" type="QWidget *" abstract="0" documentation="" name="mainDlg" static="0" scope="200" />
+ <UML:Attribute stereotype="" package="" xmi.id="1414" value="" type="TQWidget *" abstract="0" documentation="" name="mainDlg" static="0" scope="200" />
</UML:Class>
<UML:Association nameb="" stereotype="" assoctype="dependency" rolea="1407" roleb="307" multia="" multib="" package="" xmi.id="1441" abstract="0" documentation="" name="" static="0" scope="200" namea="" />
<UML:Class stereotype="" package="" xmi.id="1442" abstract="0" documentation="" name="TagImgDlg" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1465" type="" abstract="0" documentation="" name="TagImgDlg" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1466" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1466" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1467" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1468" type="void" abstract="0" documentation="" name="initDialog" static="0" scope="200" />
@@ -1707,7 +1707,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Attribute stereotype="" package="" xmi.id="1452" value="" type="QPushButton *" abstract="0" documentation="" name="buttonOk" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1453" value="" type="QPushButton *" abstract="0" documentation="" name="buttonRecalcImgSize" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1454" value="" type="QComboBox *" abstract="0" documentation="" name="comboAlign" static="0" scope="200" />
- <UML:Attribute stereotype="" package="" xmi.id="1455" value="" type="QImage *" abstract="0" documentation="" name="img" static="0" scope="201" />
+ <UML:Attribute stereotype="" package="" xmi.id="1455" value="" type="TQImage *" abstract="0" documentation="" name="img" static="0" scope="201" />
<UML:Attribute stereotype="" package="" xmi.id="1456" value="" type="QLabel *" abstract="0" documentation="" name="labelImgSource" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1457" value="" type="KLineEdit *" abstract="0" documentation="" name="lineAltText" static="0" scope="200" />
<UML:Attribute stereotype="" package="" xmi.id="1458" value="" type="KLineEdit *" abstract="0" documentation="" name="lineHSpace" static="0" scope="200" />
@@ -1721,7 +1721,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1470" abstract="0" documentation="" name="TagQuickTable" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1472" type="" abstract="0" documentation="" name="TagQuickTable" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1473" value="" type="Document *" abstract="0" documentation="" name="write" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1474" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1474" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1475" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1476" type="" abstract="0" documentation="" name="~TagQuickTable" static="0" scope="200" />
@@ -1769,7 +1769,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1512" abstract="0" documentation="" name="CopyTo" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1515" type="" abstract="0" documentation="" name="CopyTo" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1516" value="" type="const KURL &amp;" abstract="0" documentation="" name="dirURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1517" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1517" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1518" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1519" type="KURL" abstract="0" documentation="" name="copy" static="0" scope="200" >
@@ -1790,7 +1790,7 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
<UML:Class stereotype="" package="" xmi.id="1530" abstract="0" documentation="" name="TagQuickStart" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1532" type="" abstract="0" documentation="" name="TagQuickStart" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1533" value="" type="const KURL &amp;" abstract="0" documentation="" name="a_baseURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1534" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1534" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1535" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1536" type="" abstract="0" documentation="" name="~TagQuickStart" static="0" scope="200" />
@@ -1798,12 +1798,12 @@ See the operations in order to get a picture what's here." name="QuantaDoc" stat
</UML:Class>
<UML:Class stereotype="" package="" xmi.id="1537" abstract="0" documentation="" name="FileCombo" static="0" scope="200" >
<UML:Operation stereotype="" package="" xmi.id="1542" type="" abstract="0" documentation="" name="FileCombo" static="0" scope="200" >
- <UML:Parameter stereotype="" package="" xmi.id="1543" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1543" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1544" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1545" type="" abstract="0" documentation="" name="FileCombo" static="0" scope="200" >
<UML:Parameter stereotype="" package="" xmi.id="1546" value="" type="const KURL &amp;" abstract="0" documentation="" name="a_baseURL" static="0" scope="200" />
- <UML:Parameter stereotype="" package="" xmi.id="1547" value="" type="QWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
+ <UML:Parameter stereotype="" package="" xmi.id="1547" value="" type="TQWidget *" abstract="0" documentation="" name="parent" static="0" scope="200" />
<UML:Parameter stereotype="" package="" xmi.id="1548" value="" type="const char *" abstract="0" documentation="" name="name" static="0" scope="200" />
</UML:Operation>
<UML:Operation stereotype="" package="" xmi.id="1549" type="void" abstract="0" documentation="" name="setBaseURL" static="0" scope="200" >
diff --git a/quanta/scripts/tidy.kmdr b/quanta/scripts/tidy.kmdr
index 2ba267f7..e536d82a 100644
--- a/quanta/scripts/tidy.kmdr
+++ b/quanta/scripts/tidy.kmdr
@@ -1069,9 +1069,9 @@ fi
</connection>
<connection>
<sender>ExecButton2</sender>
- <signal>widgetTextChanged(const QString&amp;)</signal>
+ <signal>widgetTextChanged(const TQString&amp;)</signal>
<receiver>GtidyPath</receiver>
- <slot>setWidgetText(const QString&amp;)</slot>
+ <slot>setWidgetText(const TQString&amp;)</slot>
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>