TerminalInterface

Search for usage in LXR

TerminalInterface Class Referenceabstract

#include <kde_terminal_interface.h>

Public Member Functions

virtual QStringList availableProfiles () const =0
 
virtual QString currentProfileName () const =0
 
virtual QString currentWorkingDirectory () const =0
 
virtual int foregroundProcessId ()=0
 
virtual QString foregroundProcessName ()=0
 
virtual QVariant profileProperty (const QString &profileProperty) const =0
 
virtual void sendInput (const QString &text)=0
 
virtual bool setCurrentProfile (const QString &profileName)=0
 
virtual void showShellInDir (const QString &dir)=0
 
virtual void startProgram (const QString &program, const QStringList &args)=0
 
virtual int terminalProcessId ()=0
 

Detailed Description

TerminalInterface is an interface implemented by KonsolePart to allow developers access to the KonsolePart in ways that are not possible through the normal KPart interface.

Note that besides the functions below here, KonsolePart also has some signals you can connect to. They aren't in this class cause we can't have signals without having a QObject, which TerminalInterface is not.

These are some signals you can connect to: void currentDirectoryChanged(const QString& dir);

See the example code below for how to connect to these.

Use it like this:

// Query the .desktop file to get service information about konsolepart
if (!service) {
QMessageBox::critical(this, tr("Konsole not installed"), tr("Please install the kde konsole and try again!"), QMessageBox::Ok);
return ;
}
// Create one instance of konsolepart
KParts::ReadOnlyPart *part = service->createInstance<KParts::ReadOnlyPart>(parent, parentWidget, QVariantList());
if (!part) {
return;
}
// Cast the konsolepart to the TerminalInterface..
TerminalInterface *terminalIface = qobject_cast<TerminalInterface *>(part);
if (!terminalIface) {
return;
}
// Now use the interface in all sorts of ways, e.g.
// terminalIface->showShellInDir(QDir::home().path());
// Or:
// QStringList list;
// list.append("python");
// terminalIface->startProgram( QString::fromUtf8( "/usr/bin/python" ), list);
// Or connect to one of the signals. Connect to the Part object,
// not to the TerminalInterface, since the latter is not a QObject,
// and as such does not have signals..:
connect(part, &KParts::ReadOnlyPart::currentDirectoryChanged, this, [this](const QString &dirPath) {
currentDirectoryChanged(dirPath);
});
// etc.
Base class for any "viewer" part.
static Ptr serviceByDesktopName(const QString &_name)
TerminalInterface is an interface implemented by KonsolePart to allow developers access to the Konsol...
StandardButton critical(QWidget *parent, const QString &title, const QString &text, StandardButtons buttons, StandardButton defaultButton)
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
Author
Dominique Devriese devri.nosp@m.ese@.nosp@m.kde.o.nosp@m.rg

Definition at line 71 of file kde_terminal_interface.h.

Constructor & Destructor Documentation

◆ ~TerminalInterface()

virtual TerminalInterface::~TerminalInterface ( )
inlinevirtual

Definition at line 74 of file kde_terminal_interface.h.

Member Function Documentation

◆ availableProfiles()

virtual QStringList TerminalInterface::availableProfiles ( ) const
pure virtual

Returns the names of available profiles.

◆ currentProfileName()

virtual QString TerminalInterface::currentProfileName ( ) const
pure virtual

Returns the name of the currently active profile.

◆ currentWorkingDirectory()

virtual QString TerminalInterface::currentWorkingDirectory ( ) const
pure virtual

Returns the current working directory.

◆ foregroundProcessId()

virtual int TerminalInterface::foregroundProcessId ( )
pure virtual

Return foregound PID, If there is no foreground process running, returns -1.

◆ foregroundProcessName()

virtual QString TerminalInterface::foregroundProcessName ( )
pure virtual

Returns sub process name.

If there is no sub process running, returns empty QString

◆ profileProperty()

virtual QVariant TerminalInterface::profileProperty ( const QString & profileProperty) const
pure virtual

Returns the property profileProperty of the currently active profile.

◆ sendInput()

virtual void TerminalInterface::sendInput ( const QString & text)
pure virtual

This sends.

Parameters
textas input to the currently running program..

◆ setCurrentProfile()

virtual bool TerminalInterface::setCurrentProfile ( const QString & profileName)
pure virtual

Changes the currently active profile to profileName.

Returns
Returns true if setting the profile was successful

◆ startProgram()

virtual void TerminalInterface::startProgram ( const QString & program,
const QStringList & args )
pure virtual

This starts program, with arguments args.

◆ terminalProcessId()

virtual int TerminalInterface::terminalProcessId ( )
pure virtual

Return terminal PID.

If no process is currently running, returns 0.


The documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:54 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.