| 2478 | { |
| 2479 | QiVarOperator varOperator; |
| 2480 | varOperator.script = ui.varOperator_textedit->toPlainText(); |
| 2481 | return varOperator; |
| 2482 | } |
| 2483 | QiVarCondition EditUi::WidgetGetVarCondition() |
| 2484 | { |
| 2485 | QiVarCondition varCondition; |
| 2486 | varCondition.script = ui.varCondition_edit->text(); |
| 2487 | return varCondition; |
| 2488 | } |
| 2489 | QiOpen EditUi::WidgetGetOpen() |
| 2490 | { |
| 2491 | QiOpen open; |
| 2492 | open.url = ui.open_edit->text().isEmpty() ? ui.open_edit->placeholderText() : ui.open_edit->text(); |
| 2493 | return open; |
| 2494 | } |
| 2495 | QiTextPad EditUi::WidgetGetTextPad() |
nothing calls this directly
no test coverage detected