| 48 | } |
| 49 | |
| 50 | void ArrowHeaderLine::setExpand(bool value) |
| 51 | { |
| 52 | if (value) { |
| 53 | arrowButton->setIcon(DStyle::standardIcon(style(), DStyle::SP_ExpandElement)); |
| 54 | } else { |
| 55 | arrowButton->setIcon(DStyle::standardIcon(style(), DStyle::SP_ReduceElement)); |
| 56 | } |
| 57 | isExpanded = value; |
| 58 | } |
| 59 | |
| 60 | void ArrowHeaderLine::setTitle(const QString &title) |
| 61 | { |
no test coverage detected