File indexing completed on 2024-05-12 16:08:34

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 class TerminalInterface():
0007     """"""
0008     def __init__(self):
0009         '''void TerminalInterface.__init__()'''
0010     def __init__(self):
0011         '''TerminalInterface TerminalInterface.__init__()'''
0012         return TerminalInterface()
0013     def sendInput(self, text):
0014         '''abstract void TerminalInterface.sendInput(QString text)'''
0015     def showShellInDir(self, dir):
0016         '''abstract void TerminalInterface.showShellInDir(QString dir)'''
0017     def startProgram(self, program, args):
0018         '''abstract void TerminalInterface.startProgram(QString program, QStringList args)'''
0019 
0020 
0021 class TerminalInterfaceV2(TerminalInterface):
0022     """"""
0023     def __init__(self):
0024         '''void TerminalInterfaceV2.__init__()'''
0025     def __init__(self):
0026         '''TerminalInterfaceV2 TerminalInterfaceV2.__init__()'''
0027         return TerminalInterfaceV2()
0028     def foregroundProcessName(self):
0029         '''abstract QString TerminalInterfaceV2.foregroundProcessName()'''
0030         return QString()
0031     def foregroundProcessId(self):
0032         '''abstract int TerminalInterfaceV2.foregroundProcessId()'''
0033         return int()
0034     def terminalProcessId(self):
0035         '''abstract int TerminalInterfaceV2.terminalProcessId()'''
0036         return int()
0037 
0038 
0039 class KTerminal():
0040     """"""
0041     def __init__(self, part):
0042         '''void KTerminal.__init__(KParts.Part part)'''
0043     def __init__(self):
0044         '''KTerminal KTerminal.__init__()'''
0045         return KTerminal()
0046     def terminalInterfaceV2(self):
0047         '''TerminalInterfaceV2 KTerminal.terminalInterfaceV2()'''
0048         return TerminalInterfaceV2()
0049     def terminalInterface(self):
0050         '''TerminalInterface KTerminal.terminalInterface()'''
0051         return TerminalInterface()
0052 
0053