ProjectFlask/FlaskCommandDialog.py

changeset 11
da6ef8ab8268
parent 9
79094fb72c18
child 15
3f5c05eb2d5f
equal deleted inserted replaced
10:506c78268b18 11:da6ef8ab8268
1 # -*- coding: utf-8 -*- 1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2020 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
2 5
3 """ 6 """
4 Module implementing a dialog to run a flask command and show its output. 7 Module implementing a dialog to run a flask command and show its output.
5 """ 8 """
6 9
131 self.__process = None 134 self.__process = None
132 135
133 @pyqtSlot(QAbstractButton) 136 @pyqtSlot(QAbstractButton)
134 def on_buttonBox_clicked(self, button): 137 def on_buttonBox_clicked(self, button):
135 """ 138 """
136 Slot handling presses of the button box buttons. 139 Private slot handling presses of the button box buttons.
137 140
138 @param button reference to the button been clicked 141 @param button reference to the button been clicked
139 @type QAbstractButton 142 @type QAbstractButton
140 """ 143 """
141 if button is self.buttonBox.button(QDialogButtonBox.Close): 144 if button is self.buttonBox.button(QDialogButtonBox.Close):

eric ide

mercurial