0
import sys
from PyQt4.QtCore import SIGNAL
from PyQt4.QtGui import QDialog, QApplication, QPushButton, QLineEdit, QFormLayout

class Form(QDialog):
    def __init__(self, parent=None):
        super(Form, self).__init__(parent)

        self.le = QLineEdit()
        self.le.setText("Host")

        self.pb = QPushButton()

        self.pb.setText("Connect") 

        layout = QFormLayout()
        layout.addWidget(self.le)
        layout.addWidget(self.pb)

        self.setLayout(layout)
        self.connect(self.pb, SIGNAL("clicked()"),self.button_click)
        self.setWindowTitle("Learning")

    def button_click(self):
        # shost is a QString object
        shost = self.le.text()
        #what should I write here to access the other python file and give shost as input string to that file


app = QApplication(sys.argv)
form = Form()
form.show()
app.exec_()

lineedit にテキストを入力して接続プッシュボタンをクリックすると、以下に示す他の python ファイルへの入力としてテキストが提供されます。上記のコードの button_click(self) 関数を変更して、以下の python ファイルへの入力として lineedit のテキストを与えるようにする必要があります。

 # Requiredfile.py
Enteredstring = input('Enter string:')
print Enteredstring
4

1 に答える 1