web-dev-qa-db-ja.com

PyQtモーダルダイアログを表示し、閉じた後にコントロールからデータを取得するにはどうすればよいですか?

QInputDialogのような組み込みダイアログの場合、これを実行できることを読みました。

text, ok = QtGui.QInputDialog.getText(self, 'Input Dialog', 'Enter your name:')

Qt Designerで自分で設計したダイアログを使用して、この動作をエミュレートするにはどうすればよいですか?たとえば、私はやりたい:

my_date, my_time, ok = MyCustomDateTimeDialog.get_date_time(self)
16
Thomas Johnson

日付の入力を求めるために使用できる簡単なクラスを次に示します。

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

        layout = QVBoxLayout(self)

        # Nice widget for editing the date
        self.datetime = QDateTimeEdit(self)
        self.datetime.setCalendarPopup(True)
        self.datetime.setDateTime(QDateTime.currentDateTime())
        layout.addWidget(self.datetime)

        # OK and Cancel buttons
        buttons = QDialogButtonBox(
            QDialogButtonBox.Ok | QDialogButtonBox.Cancel,
            Qt.Horizontal, self)
        buttons.accepted.connect(self.accept)
        buttons.rejected.connect(self.reject)
        layout.addWidget(buttons)

    # get current date and time from the dialog
    def dateTime(self):
        return self.datetime.dateTime()

    # static method to create the dialog and return (date, time, accepted)
    @staticmethod
    def getDateTime(parent = None):
        dialog = DateDialog(parent)
        result = dialog.exec_()
        date = dialog.dateTime()
        return (date.date(), date.time(), result == QDialog.Accepted)

そしてそれを使用するには:

date, time, ok = DateDialog.getDateTime()
30
hluk

hluk の回答を以下の変更で編集しようとしましたが、拒否されました。明確なバグがあるため、なぜかはわかりません。

バグ修正1:self。self.layout.addWidget(self.buttons)から削除

バグ修正2:[OK]ボタンと[キャンセル]ボタンを正しいアクションに接続

拡張:インポートを含めることでコードを実行する準備を整え、実行例を改善しました

from PyQt4.QtGui import QDialog, QVBoxLayout, QDialogButtonBox, QDateTimeEdit, QApplication
from PyQt4.QtCore import Qt, QDateTime

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

        layout = QVBoxLayout(self)

        # Nice widget for editing the date
        self.datetime = QDateTimeEdit(self)
        self.datetime.setCalendarPopup(True)
        self.datetime.setDateTime(QDateTime.currentDateTime())
        layout.addWidget(self.datetime)

        # OK and Cancel buttons
        self.buttons = QDialogButtonBox(
            QDialogButtonBox.Ok | QDialogButtonBox.Cancel,
            Qt.Horizontal, self)
        layout.addWidget(self.buttons)

        self.buttons.accepted.connect(self.accept)
        self.buttons.rejected.connect(self.reject)

    # get current date and time from the dialog
    def dateTime(self):
        return self.datetime.dateTime()

    # static method to create the dialog and return (date, time, accepted)
    @staticmethod
    def getDateTime(parent = None):
        dialog = DateDialog(parent)
        result = dialog.exec_()
        date = dialog.dateTime()
        return (date.date(), date.time(), result == QDialog.Accepted)

そしてそれを使用するには:

app = QApplication([])
date, time, ok = DateDialog.getDateTime()
print("{} {} {}".format(date, time, ok))
app.exec_()
27
lou