summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 11:48:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 11:48:48 +0900
commit01795835d5c1ff258e872627652191051ecf4bfc (patch)
treea6c61477926032ff15b49e2404a3ce5a9f58bce0
parent992e8db5fd6bf4ba26c8856b63bd0f4db6daf6c6 (diff)
downloadkile-01795835.tar.gz
kile-01795835.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--kile-remote-control.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/kile-remote-control.txt b/kile-remote-control.txt
index ff90771..77d3e70 100644
--- a/kile-remote-control.txt
+++ b/kile-remote-control.txt
@@ -4,31 +4,31 @@ the services Kile can use from other KDE apps.
1. Kile's DCOP interface
Open a file either by absolute or relative path:
- virtual void openDocument(const QString &);
+ virtual void openDocument(const TQString &);
Insert text at the cursor position in the current document; this can be used to replace Lyx's pipe mechanism:
- virtual void insertText(const QString &);
+ virtual void insertText(const TQString &);
Same effect as openDocument; kept for backward compatibility:
- virtual void fileSelected(const QString &);
+ virtual void fileSelected(const TQString &);
Close the current document:
virtual void closeDocument();
Open a Kile project file, either by absolute or relative path:
- virtual void openProject(const QString &);
+ virtual void openProject(const TQString &);
-Jump to the given line in the current document; please note that the parameter is not of the type 'int' but of 'QString' instead:
- virtual void setLine(const QString &);
+Jump to the given line in the current document; please note that the parameter is not of the type 'int' but of 'TQString' instead:
+ virtual void setLine(const TQString &);
Raise Kile's main window; does not steal the focus:
virtual void setActive();
Run the given tool; the return values are { Running = 0, ConfigureFailed, NoLauncherInstalled, NoValidTarget, NoValidSource, TargetHasWrongPermissions, NoValidPrereqs, CouldNotLaunch, SelfCheckFailed}:
- virtual int run(const QString &);
+ virtual int run(const TQString &);
Run the given tool with a specific configuration as second parameter; returns the same values as the function above:
- virtual int runWith(const QString &, const QString &);
+ virtual int runWith(const TQString &, const TQString &);
2. Kile's Lyx Pipe emulation