@ -4,31 +4,31 @@ the services Kile can use from other KDE apps.
1. Kile's DCOP interface
1. Kile's DCOP interface
Open a file either by absolute or relative path:
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:
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:
Same effect as openDocument; kept for backward compatibility:
virtual void fileSelected(const QString &);
virtual void fileSelected(const TQString &);
Close the current document:
Close the current document:
virtual void closeDocument();
virtual void closeDocument();
Open a Kile project file, either by absolute or relative path:
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:
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 QString &);
virtual void setLine(const TQString &);
Raise Kile's main window; does not steal the focus:
Raise Kile's main window; does not steal the focus:
virtual void setActive();
virtual void setActive();
Run the given tool; the return values are { Running = 0, ConfigureFailed, NoLauncherInstalled, NoValidTarget, NoValidSource, TargetHasWrongPermissions, NoValidPrereqs, CouldNotLaunch, SelfCheckFailed}:
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:
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 &);