(variableName, parent)
| 150 | } |
| 151 | |
| 152 | generateCode(variableName, parent){ |
| 153 | |
| 154 | const config = convertObjectToKeyValueString(this.getConfigCode()) |
| 155 | |
| 156 | return [ |
| 157 | `${variableName} = tk.Frame(master=${parent})`, |
| 158 | `${variableName}.config(${config})`, |
| 159 | `${variableName}.${this.getLayoutCode()}`, |
| 160 | ...this.getGridLayoutConfigurationCode(variableName) |
| 161 | ] |
| 162 | } |
| 163 | |
| 164 | getToolbarAttrs(){ |
| 165 | const {layout, gridConfig, gridWeights, ...toolBarAttrs} = super.getToolbarAttrs() |
nothing calls this directly
no test coverage detected