8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import * |
11 from PyQt4.QtGui import * |
11 from PyQt4.QtGui import * |
12 |
12 |
|
13 |
13 class TemplateMultipleVariablesDialog(QDialog): |
14 class TemplateMultipleVariablesDialog(QDialog): |
14 """ |
15 """ |
15 Class implementing a dialog for entering multiple template variables. |
16 Class implementing a dialog for entering multiple template variables. |
16 """ |
17 """ |
17 def __init__(self, variables, parent = None): |
18 def __init__(self, variables, parent=None): |
18 """ |
19 """ |
19 Constructor |
20 Constructor |
20 |
21 |
21 @param variables list of template variable names (list of strings) |
22 @param variables list of template variable names (list of strings) |
22 @param parent parent widget of this dialog (QWidget) |
23 @param parent parent widget of this dialog (QWidget) |