/usr/include/kde_terminal_interface_v2.h is in kdelibs5-dev 4:4.14.16-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | /***************************************************************************
* Copyright (C) 2009 by Rahman Duran <rahman.duran@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#ifndef KDE_TERMINAL_INTERFACE_V2_H
#define KDE_TERMINAL_INTERFACE_V2_H
/**
* TerminalInterfaceV2 is an extension to TerminalInterface that implemented
* by KonsolePart to allow developers access to the KonsolePart in ways that are not
* possible through the normal KPart interface.
*
* @author Rahman Duran <rahman.duran@gmail.com>
*/
#include <kde_terminal_interface.h>
class TerminalInterfaceV2: public TerminalInterface
{
public:
virtual ~TerminalInterfaceV2(){}
/**
* Return terminal PID
*/
virtual int terminalProcessId() = 0;
/**
* Return foregound PID, If there is no foreground process running, returns -1
*/
virtual int foregroundProcessId() = 0;
/**
* Returns sub process name. If there is no sub process running, returns empty QString
*/
virtual QString foregroundProcessName() = 0;
};
Q_DECLARE_INTERFACE(TerminalInterfaceV2, "org.kde.TerminalInterfaceV2")
#endif
|